Create tasks to create release bundles

This commit is contained in:
Ryan Baxter
2024-05-31 16:41:13 -04:00
parent af14a8abba
commit a3dff9d7b4
12 changed files with 484 additions and 8 deletions

14
pom.xml
View File

@@ -12,7 +12,7 @@
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-build</artifactId>
<version>4.0.3</version>
<version>4.0.6</version>
<relativePath/>
<!-- lookup parent from repository -->
</parent>
@@ -47,6 +47,8 @@
<fliptables.version>1.1.0</fliptables.version>
<zt.exec.version>1.12</zt.exec.version>
<okhttp.version>4.11.0</okhttp.version>
<artifactory-client.version>2.17.0</artifactory-client.version>
<groovy.version>4.0.6</groovy.version>
</properties>
<dependencyManagement>
@@ -145,6 +147,16 @@
<artifactId>awaitility</artifactId>
<version>${awaitility.version}</version>
</dependency>
<dependency>
<groupId>org.jfrog.artifactory.client</groupId>
<artifactId>artifactory-java-client-services</artifactId>
<version>${artifactory-client.version}</version>
</dependency>
<dependency>
<groupId>org.apache.groovy</groupId>
<artifactId>groovy</artifactId>
<version>${groovy.version}</version>
</dependency>
</dependencies>
</dependencyManagement>