Skip to content

Commit

Permalink
Fixes #378 - Start new cycle (#379)
Browse files Browse the repository at this point in the history
  • Loading branch information
mnriem authored Apr 13, 2024
1 parent 989be55 commit 2d2632e
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 6 deletions.
2 changes: 1 addition & 1 deletion azure-appconfig/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.manorrock.ocelot</groupId>
<artifactId>project</artifactId>
<version>24.3.0-SNAPSHOT</version>
<version>24.5.0-SNAPSHOT</version>
</parent>
<artifactId>ocelot-azure-appconfig</artifactId>
<packaging>war</packaging>
Expand Down
2 changes: 1 addition & 1 deletion azure-eventhubs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.manorrock.ocelot</groupId>
<artifactId>project</artifactId>
<version>24.3.0-SNAPSHOT</version>
<version>24.5.0-SNAPSHOT</version>
</parent>
<artifactId>ocelot-azure-eventhubs</artifactId>
<packaging>war</packaging>
Expand Down
2 changes: 1 addition & 1 deletion azure-keyvault/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.manorrock.ocelot</groupId>
<artifactId>project</artifactId>
<version>24.3.0-SNAPSHOT</version>
<version>24.5.0-SNAPSHOT</version>
</parent>
<artifactId>ocelot-azure-keyvault</artifactId>
<packaging>war</packaging>
Expand Down
2 changes: 1 addition & 1 deletion azure-servicebus/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.manorrock.ocelot</groupId>
<artifactId>project</artifactId>
<version>24.3.0-SNAPSHOT</version>
<version>24.5.0-SNAPSHOT</version>
</parent>
<artifactId>ocelot-azure-servicebus</artifactId>
<packaging>war</packaging>
Expand Down
28 changes: 27 additions & 1 deletion azure-storage/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@
<parent>
<groupId>com.manorrock.ocelot</groupId>
<artifactId>project</artifactId>
<version>24.3.0-SNAPSHOT</version>
<version>24.5.0-SNAPSHOT</version>
</parent>
<artifactId>ocelot-azure-storage</artifactId>
<packaging>war</packaging>
<name>Manorrock Ocelot - Azure Storage</name>
<properties>
<!-- dependencies -->
<!-- other -->
<piranha.distribution>coreprofile</piranha.distribution>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- plugins -->
</properties>
Expand Down Expand Up @@ -62,6 +63,31 @@
<build>
<finalName>ROOT</finalName>
<plugins>
<plugin>
<groupId>cloud.piranha.maven.plugins</groupId>
<artifactId>piranha-maven-plugin</artifactId>
<version>${piranha.version}</version>
<executions>
<execution>
<id>pre-integration-test</id>
<phase>pre-integration-test</phase>
<goals>
<goal>start</goal>
</goals>
</execution>
<execution>
<id>post-integration-test</id>
<phase>post-integration-test</phase>
<goals>
<goal>stop</goal>
</goals>
</execution>
</executions>
<configuration>
<distribution>${piranha.distribution}</distribution>
<httpsPort>8203</httpsPort>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.manorrock.ocelot</groupId>
<artifactId>project</artifactId>
<version>24.3.0-SNAPSHOT</version>
<version>24.5.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Manorrock Ocelot - Project</name>
<description>
Expand Down

0 comments on commit 2d2632e

Please sign in to comment.