diff options
author | Thomas <> | 2021-04-07 15:16:26 +0200 |
---|---|---|
committer | Thomas <> | 2021-04-07 15:16:26 +0200 |
commit | b28e12c77d655ec0d9c6c879025426c594bef7f2 (patch) | |
tree | 0aa8c7eafbbc32f1ce6765e8de18f588bdb5c0a3 /pom.xml | |
parent | e89b787f7ce726180424d1ea775a225ea532a187 (diff) | |
download | EAAF-Components-b28e12c77d655ec0d9c6c879025426c594bef7f2.tar.gz EAAF-Components-b28e12c77d655ec0d9c6c879025426c594bef7f2.tar.bz2 EAAF-Components-b28e12c77d655ec0d9c6c879025426c594bef7f2.zip |
add properties for maven-pluin versions
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 24 |
1 files changed, 16 insertions, 8 deletions
@@ -99,6 +99,14 @@ <findsecbugs-plugin.version>1.11.0</findsecbugs-plugin.version> <dependency-check-maven.version>6.0.3</dependency-check-maven.version> + <!-- Compile and deploy plugins --> + <versions-maven-plugin.version>2.8.1</versions-maven-plugin.version> + <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version> + <maven-jar-plugin.version>3.2.0</maven-jar-plugin.version> + <maven-source-plugin.version>3.2.1</maven-source-plugin.version> + <maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version> + <wagon-ssh.version>3.4.3</wagon-ssh.version> + <license.outputDirectory>${project.build.directory}/thirdparty_licenses</license.outputDirectory> <pmw_rules_location>https://apps.egiz.gv.at/checkstyle/egiz_pmd_checks.xml</pmw_rules_location> @@ -167,7 +175,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> - <version>2.8.2</version> + <version>${maven-deploy-plugin.version}</version> <configuration> <deployAtEnd>true</deployAtEnd> </configuration> @@ -655,21 +663,21 @@ <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh</artifactId> - <version>3.3.3</version> + <version>${wagon-ssh.version}</version> </extension> </extensions> - + <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> - <version>2.7</version> + <version>${versions-maven-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> - <version>3.7.0</version> + <version>${maven-compiler-plugin.version}</version> <configuration> <source>1.8</source> <target>1.8</target> @@ -685,8 +693,8 @@ </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-jar-plugin</artifactId> - <version>3.1.0</version> + <artifactId>maven-jar-plugin</artifactId> + <version>${maven-jar-plugin.version}</version> <executions> <execution> <goals> @@ -699,7 +707,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> - <version>3.2.1</version> + <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> |