aboutsummaryrefslogtreecommitdiffstats
path: root/profiles/pom.xml
diff options
context:
space:
mode:
authorKanagaraj M <mkr1481@gmail.com>2019-08-02 12:53:15 +0530
committerKanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>2019-08-05 19:45:44 +0530
commit603a5a4aa9ee8c00a3ca081b98e9f19c0606b0da (patch)
tree1f9f7fcacc38b5bee4ebda4b824f1c280157972a /profiles/pom.xml
parenta352350baa50f17ead5b5d43919a68a1877a1deb (diff)
Set SNAPSHOT versioning
Issue-ID: CLI-169 Change-Id: I37930d594df46a9cf306d66db3ba212237041e0c Signed-off-by: Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>
Diffstat (limited to 'profiles/pom.xml')
-rw-r--r--profiles/pom.xml29
1 files changed, 28 insertions, 1 deletions
diff --git a/profiles/pom.xml b/profiles/pom.xml
index 20abad3f..94f71c51 100644
--- a/profiles/pom.xml
+++ b/profiles/pom.xml
@@ -24,7 +24,7 @@
<parent>
<groupId>org.onap.cli</groupId>
<artifactId>cli</artifactId>
- <version>3.0.0</version>
+ <version>4.0.0-SNAPSHOT</version>
</parent>
<artifactId>cli-profiles</artifactId>
@@ -35,6 +35,7 @@
<module>http</module>
<module>snmp</module>
<module>command</module>
+
</modules>
<dependencies>
<dependency>
@@ -53,6 +54,32 @@
<pluginManagement>
<plugins>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-resources-plugin</artifactId>
+ <version>3.1.0</version>
+ <executions>
+ <execution>
+ <id>copy-resource-conf</id>
+ <phase>install</phase>
+ <goals>
+ <goal>copy-resources</goal>
+ </goals>
+
+ <configuration>
+ <outputDirectory>../../profiles/target/conf</outputDirectory>
+ <resources>
+ <resource>
+ <directory>${project.basedir}/src/main/resources</directory>
+ <includes>
+ <include>*.properties</include>
+ </includes>
+ </resource>
+ </resources>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>