Skip to content

Commit

Permalink
Merge pull request #149 from dmlloyd/warn
Browse files Browse the repository at this point in the history
Fix Maven build warnings
  • Loading branch information
dmlloyd authored Feb 14, 2024
2 parents 7f0dd06 + 005e847 commit dcaa107
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 dcaa107

Please sign in to comment.