Skip to content

Commit

Permalink
Build su Java 11
Browse files Browse the repository at this point in the history
  • Loading branch information
mtrycz committed Dec 11, 2019
1 parent 3d89460 commit acf3cc3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
6 changes: 5 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<repository>
<id>mavencentral</id>
<url>https://repo.maven.apache.org/maven2</url>
</repository>
</repositories>

<scm>
Expand All @@ -34,7 +38,7 @@
</scm>

<properties>
<ace-client.version>2.3.15</ace-client.version>
<ace-client.version>2.3.16</ace-client.version>
<activiti.version>5.22.0</activiti.version>
<assertj-core.version>3.5.2</assertj-core.version>
<feign.version>9.7.0</feign.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class FlowsMailService extends MailService {
private CnrgroupService cnrgroupService;
@Autowired(required = false)
private AceBridgeService aceBridgeService;
@Inject
@Autowired(required = false) //TODO
private AceService aceService;
@Inject
private FlowsUserService flowsUserService;
Expand Down
9 changes: 5 additions & 4 deletions src/main/java/it/cnr/si/service/HelpdeskService.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import org.hibernate.service.spi.ServiceException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpMethod;
import org.springframework.stereotype.Service;
import org.springframework.web.multipart.MultipartFile;
Expand All @@ -25,11 +26,11 @@ public class HelpdeskService {
private final static String REST_OIL_NEW_PROBLEM = "pest/HDSiper";
private final Logger log = LoggerFactory.getLogger(HelpdeskService.class);
@Inject
ProxyService proxyService;
private ProxyService proxyService;
@Inject
Utils utils;
@Inject
AceService aceService;
private Utils utils;
@Autowired(required = false)
private AceService aceService;


public Long newProblem(ExternalProblem hd) throws ServiceException {
Expand Down

0 comments on commit acf3cc3

Please sign in to comment.