Skip to content

Commit

Permalink
Improve readability of version properties and dependencies in pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
mhoffrog committed Mar 3, 2024
1 parent 0f39cda commit 1bc6ce9
Showing 1 changed file with 26 additions and 15 deletions.
41 changes: 26 additions & 15 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.github.mavenplugins</groupId>
<artifactId>org-parent</artifactId>
<version>2-SNAPSHOT</version>
<version>3</version>
</parent>

<artifactId>unleash-scm-provider-git</artifactId>
<version>2.3.1-SNAPSHOT</version>
<version>2.4.0-SNAPSHOT</version>

<name>Unleash SCM Provider Git</name>
<description>The Git SCM provider for the Unleash Maven Plugin.</description>
Expand Down Expand Up @@ -47,16 +49,28 @@

<properties>
<version.java>1.8</version.java>
<javadoc.doclint>none</javadoc.doclint>
<!-- UNLEASH -->
<version.unleash-scm-provider-api>2.11.0-SNAPSHOT</version.unleash-scm-provider-api>
<!-- 3rd PARTY -->
<version.jgit>5.0.2.201807311906-r</version.jgit>
<version.jsch>0.1.54</version.jsch>
<version.jsch-agentproxy>0.0.9</version.jsch-agentproxy>
<version.slf4j>1.7.2</version.slf4j>
<!-- TEST -->
<version.junit>4.12</version.junit>
<version.mockito-all>1.10.19</version.mockito-all>
<version.slf4j>1.7.2</version.slf4j>
<version.unleash-scm-provider-api>2.11.0-SNAPSHOT</version.unleash-scm-provider-api>
</properties>

<dependencies>
<!-- UNLEASH DEPENDENCIES -->
<dependency>
<groupId>${groupId.unleash-maven-plugin}</groupId>
<artifactId>unleash-scm-provider-api</artifactId>
<version>${version.unleash-scm-provider-api}</version>
</dependency>

<!-- 3rd PARTY DEPENDENCIES -->
<dependency>
<groupId>com.jcraft</groupId>
<artifactId>jsch</artifactId>
Expand All @@ -82,6 +96,13 @@
<artifactId>jsch.agentproxy.usocket-jna</artifactId>
<version>${version.jsch-agentproxy}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jgit</groupId>
<artifactId>org.eclipse.jgit</artifactId>
<version>${version.jgit}</version>
</dependency>

<!-- TEST DEPENDENCIES -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand All @@ -94,22 +115,12 @@
<version>${version.mockito-all}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jgit</groupId>
<artifactId>org.eclipse.jgit</artifactId>
<version>${version.jgit}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${version.slf4j}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${groupId.unleash-maven-plugin}</groupId>
<artifactId>unleash-scm-provider-api</artifactId>
<version>${version.unleash-scm-provider-api}</version>
</dependency>
</dependencies>

</project>

0 comments on commit 1bc6ce9

Please sign in to comment.