diff options
author | Jerry Flood <jflood@att.com> | 2018-10-19 13:27:20 -0400 |
---|---|---|
committer | Jerry Flood <jflood@att.com> | 2018-10-19 17:53:55 -0400 |
commit | 5ed3cee2f4a2d28e9c54aa3c6bc68372d339c19a (patch) | |
tree | a2dcfb2d98682f7a7ef8216ba0af40def355c8aa /cmso-database/pom.xml | |
parent | fa7128ea746f9db2e426e640401a50602683aae0 (diff) |
Added groovy step and set version 1.0.0
Issue-ID: OPTFRA-373
Change-Id: I6c024328689cee15da193a9712dd1dfd09df15ef
Signed-off-by: Jerry Flood <jflood@att.com>
Diffstat (limited to 'cmso-database/pom.xml')
-rw-r--r-- | cmso-database/pom.xml | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/cmso-database/pom.xml b/cmso-database/pom.xml index 1b4833a..1cae77e 100644 --- a/cmso-database/pom.xml +++ b/cmso-database/pom.xml @@ -41,12 +41,17 @@ <groupId>org.onap.optf.cmso</groupId>
<artifactId>liquibase</artifactId>
- <version>3.0.0-SNAPSHOT</version>
+ <version>1.0.0-SNAPSHOT</version>
<name>liquibase</name>
<description>Liquibase project for Spring Boot</description>
<properties>
+ <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
+
+ <cmso.project.version>${project.version}</cmso.project.version>
+ <cmso.build.timestamp>${maven.build.timestamp}</cmso.build.timestamp>
+
<service.name>liquibase</service.name>
<release-tag>Casablanca</release-tag>
<name.space>org.onap.optf</name.space>
@@ -131,6 +136,22 @@ </configuration>
</plugin>
<plugin>
+ <groupId>org.codehaus.groovy.maven</groupId>
+ <artifactId>gmaven-plugin</artifactId>
+ <version>1.0</version>
+ <executions>
+ <execution>
+ <phase>validate</phase>
+ <goals>
+ <goal>execute</goal>
+ </goals>
+ <configuration>
+ <source>${project.basedir}/src/main/script/TagVersion.groovy</source>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
<groupId>io.fabric8</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>0.26.0</version>
|