diff --git a/pom.xml b/pom.xml index 5491e4c..bd27efe 100644 --- a/pom.xml +++ b/pom.xml @@ -23,7 +23,7 @@ audit4j-core jar Audit4j - Core - 2.7.0 + 2.6.0 http://audit4j.org Audit4j - An open-source auditing framework for Java, Core @@ -83,9 +83,11 @@ - 4.13.1 - 1.10.19 - 3.4 + 4.13.2 + 4.8.0 + 3.12.0 + UTF-8 + UTF-8 @@ -109,17 +111,17 @@ commons-net commons-net - 3.4 + 3.8.0 commons-io commons-io - 2.7 + 2.11.0 com.esotericsoftware.yamlbeans yamlbeans - 1.09 + 1.15 com.thoughtworks.xstream @@ -151,7 +153,7 @@ javax.enterprise cdi-api - 1.2 + 2.0.SP1 provided @@ -162,7 +164,7 @@ javax.enterprise.concurrent javax.enterprise.concurrent-api - 1.0 + 1.1 javax.management.j2ee @@ -178,7 +180,7 @@ javax.servlet javax.servlet-api - 3.1.0 + 4.0.1 provided @@ -201,12 +203,12 @@ org.apache.maven.plugins maven-source-plugin - 2.4 + 3.2.1 attach-sources - jar + jar-no-fork @@ -214,7 +216,7 @@ org.apache.maven.plugins maven-javadoc-plugin - 2.10.3 + 3.4.1 ${file_encoding} ${file_encoding} @@ -229,9 +231,24 @@ + + org.apache.maven.plugins + maven-gpg-plugin + 1.5 + + + sign-artifacts + verify + + sign + + + + org.apache.maven.plugins maven-jar-plugin + 3.3.0 @@ -248,7 +265,7 @@ org.apache.maven.plugins maven-assembly-plugin - 2.5.3 + 3.4.2 jar-with-dependencies @@ -285,11 +302,12 @@ org.sonatype.plugins nexus-staging-maven-plugin - 1.6.5 + 1.6.7 true oss.sonatype.org https://oss.sonatype.org/ + true ${project.version} @@ -311,14 +329,6 @@ @{project.version} - - org.apache.maven.plugins - maven-eclipse-plugin - - true - true - - org.apache.maven.plugins maven-surefire-plugin @@ -327,36 +337,6 @@ - - - - release-sign-artifacts - - - performRelease - true - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - sign-artifacts - verify - - sign - - - - - - - - diff --git a/src/main/java/org/audit4j/core/dto/EventMeta.java b/src/main/java/org/audit4j/core/dto/EventMeta.java index 97814c3..2433452 100644 --- a/src/main/java/org/audit4j/core/dto/EventMeta.java +++ b/src/main/java/org/audit4j/core/dto/EventMeta.java @@ -44,7 +44,6 @@ public void setClient(String client) { * * @return the repository */ - @Deprecated public String getRepository() { return repository; } @@ -55,7 +54,6 @@ public String getRepository() { * @param repository * the new repository */ - @Deprecated public void setRepository(String repository) { this.repository = repository; } diff --git a/src/main/java/org/audit4j/core/schedule/util/CustomizableThreadCreator.java b/src/main/java/org/audit4j/core/schedule/util/CustomizableThreadCreator.java index cb3c199..77386b5 100644 --- a/src/main/java/org/audit4j/core/schedule/util/CustomizableThreadCreator.java +++ b/src/main/java/org/audit4j/core/schedule/util/CustomizableThreadCreator.java @@ -10,11 +10,9 @@ * *

* Serves as base class for thread factories such as - * {@link org.springframework.scheduling.concurrent.CustomizableThreadFactory}. - * + * * @author Juergen Hoeller * @since 2.0.3 - * @see org.springframework.scheduling.concurrent.CustomizableThreadFactory */ @SuppressWarnings("serial") public class CustomizableThreadCreator implements Serializable {