Skip to content

Commit

Permalink
chore: refactor POM
Browse files Browse the repository at this point in the history
  • Loading branch information
pihme committed Mar 4, 2022
1 parent 78ab05f commit 26135f4
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,15 @@
<version.java>8</version.java>
<maven.version>3.6.2</maven.version>
<surefire.version>3.0.0-M5</surefire.version>
<assertj.version>3.22.0</assertj.version>
<junit.version>4.13.2</junit.version>

<nexus.snapshot.repository>https://app.camunda.com/nexus/content/repositories/zeebe-io-snapshots/</nexus.snapshot.repository>
<nexus.release.repository>https://app.camunda.com/nexus/content/repositories/zeebe-io/</nexus.release.repository>

<plugin.version.jacoco>0.8.7</plugin.version.jacoco>
<plugin.version.spotless>2.20.1</plugin.version.spotless>
<plugin.version.enforcer>3.0.0</plugin.version.enforcer>
</properties>

<dependencies>
Expand Down Expand Up @@ -102,12 +106,12 @@
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-shared-utils</artifactId>
<version>3.0.0-M5</version>
<version>${surefire.version}</version>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.22.0</version>
<version>${assertj.version}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -137,13 +141,13 @@
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.6.2</version>
<version>${maven.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down Expand Up @@ -179,7 +183,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.6.2</version>
<version>${maven.version}</version>
<configuration>
<!-- <goalPrefix>maven-archetype-plugin</goalPrefix> -->
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
Expand All @@ -202,7 +206,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.0.0</version>
<version>${plugin.version.enforcer}</version>
<configuration>
<rules>
<dependencyConvergence></dependencyConvergence>
Expand Down

0 comments on commit 26135f4

Please sign in to comment.