Skip to content

Commit

Permalink
Used dummy-dependency in test project.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jardo-51 committed Apr 7, 2024
1 parent 301fd76 commit b34cc20
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 6 deletions.
31 changes: 28 additions & 3 deletions branch-version-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,36 @@
<dependencies>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.14.0-BUG-458-SNAPSHOT</version>
<groupId>com.jardoapps.maven-flow</groupId>
<artifactId>dummy-dependency</artifactId>
<version>1.0.1-BUG-458-SNAPSHOT</version>
</dependency>

</dependencies>

<profiles>

<profile>
<id>github</id>
<distributionManagement>
<repository>
<id>github</id>
<name>GitHub Apache Maven Packages</name>
<url>https://maven.pkg.github.com/maven-flow/private-repo</url>
</repository>
</distributionManagement>
<repositories>
<repository>
<id>github</id>
<name>GitHub Apache Maven Packages</name>
<url>https://maven.pkg.github.com/maven-flow/private-repo</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</profile>

</profiles>

</project>
30 changes: 27 additions & 3 deletions non-branch-version-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,35 @@
<dependencies>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.14.0</version>
<groupId>com.jardoapps.maven-flow</groupId>
<artifactId>dummy-dependency</artifactId>
<version>1.0.0</version>
</dependency>

</dependencies>

<profiles>

<profile>
<id>github</id>
<distributionManagement>
<repository>
<id>github</id>
<name>GitHub Apache Maven Packages</name>
<url>https://maven.pkg.github.com/maven-flow/private-repo</url>
</repository>
</distributionManagement>
<repositories>
<repository>
<id>github</id>
<name>GitHub Apache Maven Packages</name>
<url>https://maven.pkg.github.com/maven-flow/private-repo</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</profile>

</profiles>
</project>

0 comments on commit b34cc20

Please sign in to comment.