aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorPamela Dragosh <pdragosh@research.att.com>2020-04-24 17:12:14 -0400
committerPamela Dragosh <pdragosh@research.att.com>2020-04-24 17:12:19 -0400
commit3f5c5289f7a57745bbfc70298574733ce4df8a7e (patch)
tree24434978692b6eadd51c723f8eae07a50256a652 /packages
parentd323b0ac7e7b3fc2622a11002bd0a0efed1ffa61 (diff)
Bump drools-pdp 1.6.3-SNAPSHOT
Issue-ID: POLICY-2510 Change-Id: Ic6ce8069e65c9b7606ab3529ee6291bc772a4191 Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
Diffstat (limited to 'packages')
-rw-r--r--packages/base/pom.xml2
-rw-r--r--packages/docker/pom.xml2
-rw-r--r--packages/install/pom.xml2
-rw-r--r--packages/pom.xml2
4 files changed, 4 insertions, 4 deletions
diff --git a/packages/base/pom.xml b/packages/base/pom.xml
index a9f0dd81..649bca56 100644
--- a/packages/base/pom.xml
+++ b/packages/base/pom.xml
@@ -26,7 +26,7 @@
<parent>
<groupId>org.onap.policy.drools-pdp</groupId>
<artifactId>drools-packages</artifactId>
- <version>1.6.2-SNAPSHOT</version>
+ <version>1.6.3-SNAPSHOT</version>
</parent>
<artifactId>base</artifactId>
diff --git a/packages/docker/pom.xml b/packages/docker/pom.xml
index 90fbc21f..19327fde 100644
--- a/packages/docker/pom.xml
+++ b/packages/docker/pom.xml
@@ -26,7 +26,7 @@
<parent>
<groupId>org.onap.policy.drools-pdp</groupId>
<artifactId>drools-packages</artifactId>
- <version>1.6.2-SNAPSHOT</version>
+ <version>1.6.3-SNAPSHOT</version>
</parent>
<artifactId>docker</artifactId>
diff --git a/packages/install/pom.xml b/packages/install/pom.xml
index 994502aa..ab07702c 100644
--- a/packages/install/pom.xml
+++ b/packages/install/pom.xml
@@ -28,7 +28,7 @@
<parent>
<groupId>org.onap.policy.drools-pdp</groupId>
<artifactId>drools-packages</artifactId>
- <version>1.6.2-SNAPSHOT</version>
+ <version>1.6.3-SNAPSHOT</version>
</parent>
<artifactId>install-drools</artifactId>
diff --git a/packages/pom.xml b/packages/pom.xml
index 45a340f9..94ffb4b9 100644
--- a/packages/pom.xml
+++ b/packages/pom.xml
@@ -25,7 +25,7 @@
<parent>
<groupId>org.onap.policy.drools-pdp</groupId>
<artifactId>drools-pdp</artifactId>
- <version>1.6.2-SNAPSHOT</version>
+ <version>1.6.3-SNAPSHOT</version>
</parent>
<artifactId>drools-packages</artifactId>
<packaging>pom</packaging>
ass="nt"><packaging>pom</packaging> <name>ONAP :: ${project.groupId} :: ${project.artifactId}</name> <description>Root POM to be used in place of spring-boot parent for CCSDK based projects</description> <url>http://wiki.onap.org</url> <build> <plugins> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>2.6</version> <executions> <execution> <id>create-springboot1-parent-pom</id> <goals> <goal>copy-resources</goal> </goals><!-- here the phase you need --> <phase>validate</phase> <configuration> <outputDirectory>../springboot1</outputDirectory> <resources> <resource> <directory>src/main/resources</directory> <includes> <include>pom-template.xml</include> </includes> <filtering>true</filtering> </resource> </resources> <escapeString>\</escapeString> <filters> <filter>${basedir}/src/main/properties/springboot1.properties</filter> </filters> <encoding>UTF-8</encoding> </configuration> </execution> <execution> <id>create-springboot2-parent-pom</id> <goals> <goal>copy-resources</goal> </goals><!-- here the phase you need --> <phase>validate</phase> <configuration> <outputDirectory>../springboot2</outputDirectory> <resources> <resource> <directory>src/main/resources</directory> <includes> <include>pom-template.xml</include> </includes> <filtering>true</filtering> </resource> </resources> <escapeString>\</escapeString> <filters> <filter>${basedir}/src/main/properties/springboot2.properties</filter> </filters> <encoding>UTF-8</encoding> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.coderplus.maven.plugins</groupId> <artifactId>copy-rename-maven-plugin</artifactId> <version>1.0.1</version> <executions> <execution> <id>rename-springboot1-parent-pom</id> <phase>validate</phase> <goals> <goal>rename</goal> </goals> <configuration> <sourceFile>../springboot1/pom-template.xml</sourceFile> <destinationFile>../springboot1/pom.xml</destinationFile> </configuration> </execution> <execution> <id>rename-springboot2-parent-pom</id> <phase>validate</phase> <goals> <goal>rename</goal> </goals> <configuration> <sourceFile>../springboot2/pom-template.xml</sourceFile> <destinationFile>../springboot2/pom.xml</destinationFile> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>