summaryrefslogtreecommitdiffstats
path: root/alpine/pom.xml
diff options
context:
space:
mode:
authorMichael Dürre <michael.duerre@highstreet-technologies.com>2020-06-29 09:59:57 +0200
committerMichael Dürre <michael.duerre@highstreet-technologies.com>2020-06-29 10:00:12 +0200
commit4ddb1e9253f563fe488b0339e0d9eb02004fb2da (patch)
tree644bad141789d21e678f9e7f2fa24cf672e380bf /alpine/pom.xml
parenteebf17072956de4713848115d23263cc24be110f (diff)
add java 11 alpine image
parallel alpine image with java 11 installed Issue-ID: CCSDK-2484 Signed-off-by: Michael Dürre <michael.duerre@highstreet-technologies.com> Change-Id: Ia20a2175ee623f2400327b9fc25265c464780e65
Diffstat (limited to 'alpine/pom.xml')
-rw-r--r--alpine/pom.xml118
1 files changed, 7 insertions, 111 deletions
diff --git a/alpine/pom.xml b/alpine/pom.xml
index 38626923..dcdae7e5 100644
--- a/alpine/pom.xml
+++ b/alpine/pom.xml
@@ -8,119 +8,15 @@
<version>1.0.0-SNAPSHOT</version>
</parent>
- <artifactId>distribution-alpine</artifactId>
+ <artifactId>distribution-alpine-root</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
- <name>ccsdk-distribution :: alpine</name>
- <description>Creates base alpine Docker container</description>
- <organization>
- <name>openECOMP</name>
- </organization>
+ <name>ccsdk-distribution :: opendaylight</name>
+ <description>Creates OpenDaylight container</description>
- <properties>
- <image.name>onap/ccsdk-alpine-image</image.name>
- <ccsdk.project.version>${project.version}</ccsdk.project.version>
- <ccsdk.build.timestamp>${maven.build.timestamp}</ccsdk.build.timestamp>
- </properties>
-
- <build>
- <plugins>
-
- <plugin>
- <groupId>org.codehaus.groovy.maven</groupId>
- <artifactId>gmaven-plugin</artifactId>
- <executions>
- <execution>
- <phase>validate</phase>
- <goals>
- <goal>execute</goal>
- </goals>
- <configuration>
- <source>${basedir}/../src/main/scripts/TagVersion.groovy</source>
- </configuration>
- </execution>
- </executions>
- </plugin>
-
- <plugin>
- <artifactId>maven-resources-plugin</artifactId>
- <version>2.6</version>
- <executions>
- <execution>
- <id>copy-dockerfile</id>
- <goals>
- <goal>copy-resources</goal>
- </goals><!-- here the phase you need -->
- <phase>validate</phase>
- <configuration>
- <outputDirectory>${basedir}/target/docker-stage</outputDirectory>
- <resources>
- <resource>
- <directory>src/main/docker</directory>
- <includes>
- <include>Dockerfile</include>
- </includes>
- <filtering>true</filtering>
- </resource>
- </resources>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-
- <profiles>
- <profile>
- <id>docker</id>
- <build>
- <plugins>
- <plugin>
- <groupId>io.fabric8</groupId>
- <artifactId>docker-maven-plugin</artifactId>
- <version>0.28.0</version>
- <inherited>false</inherited>
- <configuration>
-
- <images>
- <image>
- <name>${image.name}</name>
- <build>
- <cleanup>try</cleanup>
- <dockerFileDir>${basedir}/target/docker-stage</dockerFileDir>
- <dockerFile>Dockerfile</dockerFile>
- <tags>
- <tag>${project.docker.latestminortag.version}</tag>
- <tag>${project.docker.latestfulltag.version}</tag>
- <tag>${project.docker.latesttagtimestamp.version}</tag>
- </tags>
- </build>
- </image>
- </images>
- </configuration>
- <executions>
- <execution>
- <id>generate-images</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>build</goal>
- </goals>
- </execution>
-
- <execution>
- <id>push-images</id>
- <phase>deploy</phase>
- <goals>
- <goal>build</goal>
- <goal>push</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
-
- </plugins>
- </build>
- </profile>
- </profiles>
+ <modules>
+ <module>java8</module>
+ <module>java11</module>
+ </modules>
</project>