diff --git a/history/taskana-simplehistory-rest-spring-example/pom.xml b/history/taskana-simplehistory-rest-spring-example/pom.xml index e5c72a948..72243aba4 100644 --- a/history/taskana-simplehistory-rest-spring-example/pom.xml +++ b/history/taskana-simplehistory-rest-spring-example/pom.xml @@ -1,9 +1,10 @@ - 4.0.0 taskana-simplehistory-rest-spring-example + ${project.groupId}:${project.artifactId} Demo project for taskana-simplehistory-rest-spring @@ -13,18 +14,12 @@ 1.1.5-SNAPSHOT - - UTF-8 - UTF-8 - 1.8 - - org.springframework.boot spring-boot-dependencies - ${spring.boot.version} + ${version.spring.boot} pom import @@ -52,9 +47,10 @@ com.h2database h2 + ${version.h2} - + org.springframework.boot spring-boot-starter-test @@ -72,12 +68,9 @@ - - org.apache.maven.plugins - maven-checkstyle-plugin - maven-resources-plugin + ${version.maven.resources} copy-documentation-to-static-folder diff --git a/qa/checkstyle/checkstyle.xml b/qa/checkstyle/checkstyle.xml index b8a824ba8..d5041db43 100644 --- a/qa/checkstyle/checkstyle.xml +++ b/qa/checkstyle/checkstyle.xml @@ -121,7 +121,6 @@ - diff --git a/rest/taskana-rest-spring/src/main/java/pro/taskana/rest/AbstractPagingController.java b/rest/taskana-rest-spring/src/main/java/pro/taskana/rest/AbstractPagingController.java index 9e8a582cd..93e309468 100644 --- a/rest/taskana-rest-spring/src/main/java/pro/taskana/rest/AbstractPagingController.java +++ b/rest/taskana-rest-spring/src/main/java/pro/taskana/rest/AbstractPagingController.java @@ -77,7 +77,7 @@ public abstract class AbstractPagingController { } // This method is deprecated please remove it after updating taskana-simple-history reference to it. - @Deprecated + //TODO: @Deprecated protected PageMetadata initPageMetadata(String pagesizeParam, String pageParam, long totalElements) throws InvalidArgumentException { long pageSize; diff --git a/rest/taskana-rest-spring/src/main/java/pro/taskana/rest/resource/AbstractRessourcesAssembler.java b/rest/taskana-rest-spring/src/main/java/pro/taskana/rest/resource/AbstractRessourcesAssembler.java index 52c8869ca..ee86012b6 100644 --- a/rest/taskana-rest-spring/src/main/java/pro/taskana/rest/resource/AbstractRessourcesAssembler.java +++ b/rest/taskana-rest-spring/src/main/java/pro/taskana/rest/resource/AbstractRessourcesAssembler.java @@ -14,7 +14,7 @@ import org.springframework.web.util.UriComponentsBuilder; * Abstract resources assembler for taskana REST controller with pageable resources. This method is deprecated, it can * be removed after fixing taskana-simple-history references */ -@Deprecated +//TODO: @Deprecated public abstract class AbstractRessourcesAssembler { UriComponentsBuilder original = getBuilderForOriginalUri();