diff options
Diffstat (limited to 'version-manifest/pom.xml')
-rw-r--r-- | version-manifest/pom.xml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/version-manifest/pom.xml b/version-manifest/pom.xml index 20a7210fb..b2102d5dc 100644 --- a/version-manifest/pom.xml +++ b/version-manifest/pom.xml @@ -4,11 +4,11 @@ <parent> <groupId>org.onap.oparent</groupId> <artifactId>oparent</artifactId> - <version>0.1.1</version> + <version>1.1.0</version> </parent> <groupId>org.onap.integration</groupId> <artifactId>version-manifest</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.0.1-SNAPSHOT</version> <packaging>maven-plugin</packaging> <name>ONAP Version Manifest and Maven Plugin</name> <url>https://www.onap.org</url> @@ -92,7 +92,7 @@ <artifactId>exec-maven-plugin</artifactId> <version>1.6.0</version> <configuration> - <executable>sort</executable> + <executable>bash</executable> </configuration> <executions> <execution> @@ -103,7 +103,7 @@ </goals> <configuration> <arguments> - <argument>-c</argument> + <argument>${project.basedir}/src/main/scripts/check-sorted.sh</argument> <argument>${project.basedir}/src/main/resources/docker-manifest.csv</argument> </arguments> </configuration> @@ -116,7 +116,7 @@ </goals> <configuration> <arguments> - <argument>-c</argument> + <argument>${project.basedir}/src/main/scripts/check-sorted.sh</argument> <argument>${project.basedir}/src/main/resources/java-manifest.csv</argument> </arguments> </configuration> |