diff options
author | Stone, Avi (as206k) <as206k@att.com> | 2018-05-17 13:04:39 +0300 |
---|---|---|
committer | Stone, Avi (as206k) <as206k@att.com> | 2018-05-17 13:06:10 +0300 |
commit | c936da8efa5f13ebfc2f1218ffd9eb88dcc79023 (patch) | |
tree | d688f865f5d3684b0b17533f4ca7eb9d960b178c | |
parent | 530230e2299a1c78a79779ac03b0bbcf58260480 (diff) |
Fix pom for docker files
Fix poms for docker files so the docker job would run
Change-Id: I630106bc83f098e286f3e83913b064f507cc9294
Issue-ID: SDC-1339
Signed-off-by: Stone, Avi (as206k) <as206k@att.com>
-rw-r--r-- | dcaedt_be/pom.xml | 32 | ||||
-rw-r--r-- | dcaedt_tools/pom.xml | 51 |
2 files changed, 83 insertions, 0 deletions
diff --git a/dcaedt_be/pom.xml b/dcaedt_be/pom.xml index 0c999ad..ee6e5ab 100644 --- a/dcaedt_be/pom.xml +++ b/dcaedt_be/pom.xml @@ -154,6 +154,38 @@ </dependency> </dependencies> </profile> + <profile> + <id>docker</id> + <build> + <plugins> + <plugin> + <artifactId>maven-resources-plugin</artifactId> + <version>3.0.2</version> + <executions> + <execution> + <id>copy-dcae-be-war</id> + <phase>validate</phase> + <goals> + <goal>copy-resources</goal> + </goals> + <configuration> + <outputDirectory>${project.parent.basedir}/docker/docker_be/target</outputDirectory> + <resources> + <resource> + <directory>${project.basedir}/target</directory> + <includes> + <include>dcae.war</include> + </includes> + </resource> + </resources> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + </profiles> <build> <finalName>dcae</finalName> diff --git a/dcaedt_tools/pom.xml b/dcaedt_tools/pom.xml index 630d8aa..83993f8 100644 --- a/dcaedt_tools/pom.xml +++ b/dcaedt_tools/pom.xml @@ -10,6 +10,57 @@ <artifactId>dcae_dt_be_main</artifactId> <version>1.2.0-SNAPSHOT</version> </parent> + <profiles> + <profile> + <id>docker</id> + <build> + <plugins> + <plugin> + <artifactId>maven-resources-plugin</artifactId> + <version>3.0.2</version> + <executions> + <execution> + <id>copy-dcae-tools-jar</id> + <phase>validate</phase> + <goals> + <goal>copy-resources</goal> + </goals> + <configuration> + <outputDirectory>${project.parent.basedir}/docker/docker_tools/target</outputDirectory> + <resources> + <resource> + <directory>${project.basedir}/target</directory> + <includes> + <include>dcaedt_tools-${project.version}-jar-with-dependencies.jar</include> + </includes> + </resource> + </resources> + </configuration> + </execution> + <execution> + <id>copy-dcae-config-json</id> + <phase>validate</phase> + <goals> + <goal>copy-resources</goal> + </goals> + <configuration> + <outputDirectory>${project.parent.basedir}/docker/docker_tools/chef-solo/cookbooks/Deploy-DCAE/files/default</outputDirectory> + <resources> + <resource> + <directory>${project.basedir}/src/main/resources/conf</directory> + <includes> + <include>config.json</include> + </includes> + </resource> + </resources> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + </profiles> <build> <plugins> <plugin> |