| <?xml version="1.0" encoding="UTF-8"?> |
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <parent> |
| <groupId>org.onap.ccsdk.parent</groupId> |
| <artifactId>odlparent-lite</artifactId> |
| <version>1.5.2-SNAPSHOT</version> |
| <relativePath /> |
| </parent> |
| |
| <groupId>org.o-ran-sc.oam.distribution</groupId> |
| <artifactId>nonrtric-o1-controller</artifactId> |
| <version>1.8.0-SNAPSHOT</version> |
| <packaging>pom</packaging> |
| |
| <name>sdnc-distribution :: o-ran-sc :: nonrtric-o1-controller</name> |
| |
| <description>nonrtric-o1-controller based on ONAP SDNC</description> |
| |
| <organization> |
| <name>O-RAN-SC/OAM</name> |
| </organization> |
| |
| <properties> |
| <base.image.repo>hightec/sdnc-image-wt-patch:latest</base.image.repo> |
| <!--<base.image.repo>nexus3.onap.org:10001/onap/sdnc-image:1.8.0-STAGING-20200225T124813Z</base.image.repo>--> |
| <image.name>o-ran-sc/${project.artifactId}</image.name> |
| <ccsdk.build.timestamp>${maven.build.timestamp}</ccsdk.build.timestamp> |
| <o-ran-sc.project.version>${project.version}</o-ran-sc.project.version> |
| <o-ran-sc.features.version>0.7.1-SNAPSHOT</o-ran-sc.features.version> |
| <repo-oran>mvn:org.o-ran-sc.oam.features.devicemanager/devicemanager-oran-ru-fh-feature/${o-ran-sc.features.version}/xml/features</repo-oran> |
| <repo-xran>mvn:org.o-ran-sc.oam.features.devicemanager/devicemanager-xran-ru-fh-feature/${o-ran-sc.features.version}/xml/features</repo-xran> |
| <features.repo>${repo-oran},${repo-xran}</features.repo> |
| <features.boot>sdnr-wt-feature-aggregator,devicemanager-oran-ru-fh-feature,devicemanager-xran-ru-fh-feature</features.boot> |
| <platform-logic-installer.version>${project.version}</platform-logic-installer.version> |
| <docker.buildArg.https_proxy>${https_proxy}</docker.buildArg.https_proxy> |
| <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format> |
| <opendaylight.root>opt/opendaylight</opendaylight.root> |
| <docker.push.phase>deploy</docker.push.phase> |
| <docker.verbose>true</docker.verbose> |
| |
| </properties> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.o-ran-sc.oam.features.devicemanager</groupId> |
| <artifactId>devicemanager-oran-ru-fh-installer</artifactId> |
| <version>${o-ran-sc.features.version}</version> |
| <type>zip</type> |
| <classifier>repo</classifier> |
| </dependency> |
| <dependency> |
| <groupId>org.o-ran-sc.oam.features.devicemanager</groupId> |
| <artifactId>devicemanager-xran-ru-fh-installer</artifactId> |
| <version>${o-ran-sc.features.version}</version> |
| <type>zip</type> |
| <classifier>repo</classifier> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.codehaus.groovy.maven</groupId> |
| <artifactId>gmaven-plugin</artifactId> |
| <version>1.0</version> |
| <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> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-dependency-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>unpack features</id> |
| <phase>generate-sources</phase> |
| <goals> |
| <goal>unpack-dependencies</goal> |
| </goals> |
| <configuration> |
| <outputDirectory>${basedir}/target/docker-stage</outputDirectory> |
| <excludeTransitive>true</excludeTransitive> |
| <overWriteReleases>false</overWriteReleases> |
| <overWriteSnapshots>true</overWriteSnapshots> |
| <overWriteIfNewer>true</overWriteIfNewer> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| <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> |
| <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>package</phase> |
| <goals> |
| <goal>build</goal> |
| </goals> |
| </execution> |
| <execution> |
| <id>push-images</id> |
| <phase>${docker.push.phase}</phase> |
| <goals> |
| <goal>build</goal> |
| <goal>push</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| <extensions> |
| <extension><!-- this extension is required by wagon in order to pass the proxy --> |
| <groupId>org.apache.maven.wagon</groupId> |
| <artifactId>wagon-http-lightweight</artifactId> |
| <version>2.2</version> |
| </extension> |
| </extensions> |
| </build> |
| </project> |