Skip to content

Commit

Permalink
Fix Maven build warnings
Browse files Browse the repository at this point in the history
Maven produces several warnings due to outdated constructs and other problems; we can fix them.
  • Loading branch information
dmlloyd committed Feb 13, 2024
1 parent 072650c commit 005e847
Showing 1 changed file with 16 additions and 32 deletions.
48 changes: 16 additions & 32 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@

<scm>
<url>https://github.com/jbossas/jboss-threads</url>
<connection>https://github.com/jbossas/jboss-threads.git</connection>
<connection>scm:git:git@github.com:jbossas/jboss-threads.git</connection>
<developerConnection>scm:git:[email protected]:jbossas/jboss-threads.git</developerConnection>
<tag>HEAD</tag>
</scm>
Expand Down Expand Up @@ -148,49 +148,33 @@
</resources>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<additionalDependencies>
<additionalDependency>
<groupId>org.jboss</groupId>
<artifactId>jdk-misc</artifactId>
<version>2.Final</version>
</additionalDependency>
</additionalDependencies>
<propertiesEncoding>UTF-8</propertiesEncoding>
</configuration>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<proc>full</proc>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemProperties>
<property>
<name>test.level</name>
<value>${test.level}</value>
</property>
<property>
<name>java.util.logging.manager</name>
<value>org.jboss.logmanager.LogManager</value>
</property>
<property>
<name>jboss.threads.eqe.statistics</name>
<value>${jboss.threads.eqe.statistics}</value>
</property>
<property>
<name>jboss.threads.eqe.unlimited-queue</name>
<value>${jboss.threads.eqe.unlimited-queue}</value>
</property>
<property>
<name>jboss.threads.eqe.register-mbean</name>
<value>${jboss.threads.eqe.register-mbean}</value>
</property>
</systemProperties>
<forkMode>always</forkMode>
<systemPropertyVariables>
<test.level>${test.level}</test.level>
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
<jboss.threads.eqe.statistics>${jboss.threads.eqe.statistics}</jboss.threads.eqe.statistics>
<jboss.threads.eqe.unlimited-queue>${jboss.threads.eqe.unlimited-queue}</jboss.threads.eqe.unlimited-queue>
<jboss.threads.eqe.register-mbean>${jboss.threads.eqe.register-mbean}</jboss.threads.eqe.register-mbean>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
Expand Down

0 comments on commit 005e847

Please sign in to comment.