ARTEMIS-3689: remove various cruft and use consistent managed plugin and dep versions

This commit is contained in:
Robbie Gemmell 2022-02-17 17:17:48 +00:00 committed by Justin Bertram
parent 7cc66a8299
commit 402a8e21a1
No known key found for this signature in database
GPG Key ID: F41830B875BB8633
5 changed files with 3 additions and 35 deletions

View File

@ -121,7 +121,6 @@
<plugin> <plugin>
<artifactId>maven-antrun-plugin</artifactId> <artifactId>maven-antrun-plugin</artifactId>
<version>${maven-antrun-plugin-version}</version>
<executions> <executions>
<execution> <execution>
@ -165,7 +164,6 @@
<plugin> <plugin>
<artifactId>maven-resources-plugin</artifactId> <artifactId>maven-resources-plugin</artifactId>
<version>${maven-resources-plugin-version}</version>
<executions> <executions>
<execution> <execution>
<!-- defining this maven plugin in the same phase as the <!-- defining this maven plugin in the same phase as the
@ -187,7 +185,6 @@
<plugin> <plugin>
<groupId>org.apache.felix</groupId> <groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId> <artifactId>maven-bundle-plugin</artifactId>
<version>${maven-bundle-plugin-version}</version>
<executions> <executions>
<execution> <execution>
<id>bundle-manifest</id> <id>bundle-manifest</id>

View File

@ -28,7 +28,6 @@
<artifactId>artemis-console</artifactId> <artifactId>artemis-console</artifactId>
<name>ActiveMQ Artemis Console</name> <name>ActiveMQ Artemis Console</name>
<!-- hawtio plugins are almost always war files -->
<packaging>war</packaging> <packaging>war</packaging>
<properties> <properties>
@ -46,10 +45,6 @@
<groupId>io.hawt</groupId> <groupId>io.hawt</groupId>
<artifactId>hawtio-war</artifactId> <artifactId>hawtio-war</artifactId>
<version>${hawtio.version}</version> <version>${hawtio.version}</version>
<!--
NOTE this WAR dependency type which enables this WAR to
inherit all the plugins and content from the core hawtio-base WAR
-->
<type>war</type> <type>war</type>
</dependency> </dependency>
@ -63,7 +58,6 @@
<dependency> <dependency>
<groupId>com.google.guava</groupId> <groupId>com.google.guava</groupId>
<artifactId>guava</artifactId> <artifactId>guava</artifactId>
<version>${guava.version}</version>
<!-- License: Apache 2.0 --> <!-- License: Apache 2.0 -->
<!-- see https://github.com/google/guava/issues/3006: checker-compat-qual could be excluded --> <!-- see https://github.com/google/guava/issues/3006: checker-compat-qual could be excluded -->
<exclusions> <exclusions>
@ -106,7 +100,7 @@
<exclude>img/icons/**/*</exclude> <exclude>img/icons/**/*</exclude>
<exclude>img/**/*</exclude> <exclude>img/**/*</exclude>
<exclude>fonts/glyphicons**</exclude> <exclude>fonts/glyphicons**</exclude>
<excluse>WEB-INF/lib/guava*.jar</excluse> <exclude>WEB-INF/lib/guava*.jar</exclude>
</excludes> </excludes>
</overlay> </overlay>
</overlays> </overlays>
@ -145,7 +139,6 @@
</plugin> </plugin>
<plugin> <plugin>
<artifactId>maven-clean-plugin</artifactId> <artifactId>maven-clean-plugin</artifactId>
<version>2.5</version>
<configuration> <configuration>
<filesets> <filesets>
<fileset> <fileset>

View File

@ -62,10 +62,6 @@
<schema-outdir>${basedir}/src/main/webapp/lib</schema-outdir> <schema-outdir>${basedir}/src/main/webapp/lib</schema-outdir>
<appjs-outfile>${webapp-outdir}/app/app.js</appjs-outfile> <appjs-outfile>${webapp-outdir}/app/app.js</appjs-outfile>
<!--
<angular.version>1.7.9</angular.version>
-->
</properties> </properties>
<dependencies> <dependencies>
@ -119,7 +115,6 @@
<plugin> <plugin>
<artifactId>maven-antrun-plugin</artifactId> <artifactId>maven-antrun-plugin</artifactId>
<version>${maven-antrun-plugin-version}</version>
<executions> <executions>
<execution> <execution>
@ -160,7 +155,6 @@
<plugin> <plugin>
<artifactId>maven-resources-plugin</artifactId> <artifactId>maven-resources-plugin</artifactId>
<version>${maven-resources-plugin-version}</version>
<executions> <executions>
<execution> <execution>
<!-- defining this maven plugin in the same phase as the <!-- defining this maven plugin in the same phase as the
@ -182,7 +176,6 @@
<plugin> <plugin>
<groupId>org.apache.felix</groupId> <groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId> <artifactId>maven-bundle-plugin</artifactId>
<version>${maven-bundle-plugin-version}</version>
<executions> <executions>
<execution> <execution>
<id>bundle-manifest</id> <id>bundle-manifest</id>

View File

@ -32,25 +32,9 @@
<packaging>pom</packaging> <packaging>pom</packaging>
<properties> <properties>
<activemq.basedir>${project.basedir}/..</activemq.basedir> <activemq.basedir>${project.basedir}/..</activemq.basedir>
<hawtio.version>2.14.2</hawtio.version>
<jline.version>3.2.0</jline.version>
<junit-version>4.11</junit-version>
<log4j-version>1.2.17</log4j-version>
<maven-version>3.0.4</maven-version>
<maven-antrun-plugin-version>1.7</maven-antrun-plugin-version>
<maven-bundle-plugin-version>3.0.1</maven-bundle-plugin-version>
<maven-plugin-version>3.3</maven-plugin-version>
<maven-source-plugin-version>2.1.2</maven-source-plugin-version>
<maven-resources-plugin-version>2.6</maven-resources-plugin-version>
<geronimo.servlet.3.0.spec.version>1.0</geronimo.servlet.3.0.spec.version> <geronimo.servlet.3.0.spec.version>1.0</geronimo.servlet.3.0.spec.version>
<!-- use slf4j-api 1.6.x to be easy compatible with older Karaf/Camel releases -->
<slf4j-api-version>1.6.6</slf4j-api-version>
<slf4j-version>1.7.21</slf4j-version>
</properties> </properties>
<dependencyManagement> <dependencyManagement>
@ -76,7 +60,7 @@
<dependency> <dependency>
<groupId>org.slf4j</groupId> <groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId> <artifactId>slf4j-api</artifactId>
<version>${slf4j-version}</version> <version>${slf4j.version}</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>

View File

@ -99,6 +99,7 @@
<commons.codec.version>1.15</commons.codec.version> <commons.codec.version>1.15</commons.codec.version>
<fuse.mqtt.client.version>1.16</fuse.mqtt.client.version> <fuse.mqtt.client.version>1.16</fuse.mqtt.client.version>
<guava.version>30.1-jre</guava.version> <guava.version>30.1-jre</guava.version>
<hawtio.version>2.14.2</hawtio.version>
<jsr305.version>3.0.2</jsr305.version> <jsr305.version>3.0.2</jsr305.version>
<jboss.logging.version>3.4.2.Final</jboss.logging.version> <jboss.logging.version>3.4.2.Final</jboss.logging.version>
<jetty.version>9.4.44.v20210927</jetty.version> <jetty.version>9.4.44.v20210927</jetty.version>