| <?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>binding-parent</artifactId> |
| <version>1.5.6-SNAPSHOT</version> |
| <relativePath/> |
| </parent> |
| |
| <groupId>org.onap.sdnc.oam</groupId> |
| <artifactId>admportal</artifactId> |
| <version>1.8.3-SNAPSHOT</version> |
| <packaging>pom</packaging> |
| |
| <name>sdnc-oam :: admportal</name> |
| <description>Admin Portal</description> |
| <organization> |
| <name>ONAP</name> |
| </organization> |
| |
| <properties> |
| <application.name>admportal</application.name> |
| <skip.SWM>true</skip.SWM> |
| <adm.base>/opt/app/admportal</adm.base> |
| <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format> |
| <build.number>${maven.build.timestamp}</build.number> |
| <SWM_VERSION>${project.version}-${build.number}</SWM_VERSION> |
| </properties> |
| <dependencyManagement> |
| <dependencies> |
| <dependency> |
| <groupId>org.onap.ccsdk.sli.core</groupId> |
| <artifactId>sli-core-artifacts</artifactId> |
| <version>${ccsdk.sli.core.version}</version> |
| <type>pom</type> |
| <scope>import</scope> |
| </dependency> |
| </dependencies> |
| </dependencyManagement> |
| <dependencies> |
| <dependency> |
| <groupId>org.onap.ccsdk.sli.core</groupId> |
| <artifactId>sli-common</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.mariadb.jdbc</groupId> |
| <artifactId>mariadb-java-client</artifactId> |
| <version>${mariadb.connector.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.antlr</groupId> |
| <artifactId>antlr4</artifactId> |
| <version>${antlr.version}</version> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <artifactId>maven-assembly-plugin</artifactId> |
| <version>2.6</version> |
| <executions> |
| <execution> |
| <id>create-zip</id> |
| <goals> |
| <goal>single</goal> |
| </goals> |
| <phase>package</phase> |
| <configuration> |
| <finalName>${application.name}.${project.version}</finalName> |
| <attach>true</attach> |
| <descriptors> |
| <descriptor>src/assembly/assemble_zip.xml</descriptor> |
| </descriptors> |
| <appendAssemblyId>false</appendAssemblyId> |
| <appendAssemblyId>false</appendAssemblyId> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-dependency-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>copy-dependencies</id> |
| <goals> |
| <goal>copy-dependencies</goal> |
| </goals> |
| <phase>prepare-package</phase> |
| <configuration> |
| <transitive>false</transitive> |
| <outputDirectory>${project.build.directory}/lib</outputDirectory> |
| <overWriteReleases>false</overWriteReleases> |
| <overWriteSnapshots>true</overWriteSnapshots> |
| <overWriteIfNewer>true</overWriteIfNewer> |
| <useRepositoryLayout>false</useRepositoryLayout> |
| <addParentPoms>false</addParentPoms> |
| <copyPom>false</copyPom> |
| <scope>provided</scope> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |