diff options
author | Dan Timoney <dtimoney@att.com> | 2022-01-27 20:11:39 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2022-01-27 20:11:39 +0000 |
commit | 3163302061acd65bafb5a1f9ab954e467d858186 (patch) | |
tree | de5284835e46352980aed99413ecd19601c67087 /installation/sdnc-web/pom.xml | |
parent | 68cb7f2961c043469bae158a5b735547a9de2b27 (diff) | |
parent | 38509f1fbad27de70eef1e81eaa2c5084765ca8f (diff) |
Merge "improve sdnc-web for external apps"
Former-commit-id: 9b550d34e62a057063b01141bbd56efcdac1f623
Diffstat (limited to 'installation/sdnc-web/pom.xml')
-rw-r--r-- | installation/sdnc-web/pom.xml | 31 |
1 files changed, 26 insertions, 5 deletions
diff --git a/installation/sdnc-web/pom.xml b/installation/sdnc-web/pom.xml index 8817c936..2724c7a5 100644 --- a/installation/sdnc-web/pom.xml +++ b/installation/sdnc-web/pom.xml @@ -59,7 +59,7 @@ <id>copy-dockerfile</id> <goals> <goal>copy-resources</goal> - </goals> <!-- here the phase you need --> + </goals> <phase>validate</phase> <configuration> <outputDirectory>${basedir}/target/docker-stage</outputDirectory> @@ -78,27 +78,27 @@ <id>copy-siteconf</id> <goals> <goal>copy-resources</goal> - </goals> <!-- here the phase you need --> + </goals> <phase>validate</phase> <configuration> - <outputDirectory>${basedir}/target/docker-stage</outputDirectory> + <outputDirectory>${basedir}/target/docker-stage/conf</outputDirectory> <resources> <resource> <directory>src/main/resources</directory> <includes> <include>*.conf</include> + <include>*.rules</include> </includes> <filtering>true</filtering> </resource> </resources> </configuration> </execution> - <execution> <id>copy-scripts</id> <goals> <goal>copy-resources</goal> - </goals> <!-- here the phase you need --> + </goals> <phase>validate</phase> <configuration> <outputDirectory>${basedir}/target/docker-stage/bin</outputDirectory> @@ -107,12 +107,33 @@ <directory>src/main/scripts</directory> <includes> <include>*.sh</include> + <include>*.py</include> </includes> <filtering>true</filtering> </resource> </resources> </configuration> </execution> + <execution> + <id>copy-favicon</id> + <goals> + <goal>copy-resources</goal> + </goals> + <phase>validate</phase> + <configuration> + <outputDirectory>${basedir}/target/docker-stage/html</outputDirectory> + <resources> + <resource> + <directory>src/main/resources</directory> + <includes> + <include>favicon.ico</include> + <include>odlux.application.list</include> + </includes> + <filtering>false</filtering> + </resource> + </resources> + </configuration> + </execution> </executions> </plugin> <plugin> |