blob: 7328c2734be3b97508ab1a76d42883905f320529 [file] [log] [blame]
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -05001<?xml version="1.0" encoding="UTF-8"?>
Timoney, Dan (dt5972)fe8d3bc2019-01-18 16:51:25 -05002<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">
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -05003 <modelVersion>4.0.0</modelVersion>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -05004
Dan Timoney33314622018-02-13 09:42:07 -05005 <parent>
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -05006 <groupId>org.onap.ccsdk.parent</groupId>
7 <artifactId>binding-parent</artifactId>
Timoney, Dan (dt5972)9cdcc402019-09-17 16:27:27 -04008 <version>1.4.3</version>
Timoney, Dan (dt5972)c84dc842018-04-24 09:06:57 -04009 <relativePath/>
Dan Timoney33314622018-02-13 09:42:07 -050010 </parent>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050011
Dan Timoney33314622018-02-13 09:42:07 -050012 <groupId>org.onap.sdnc.oam</groupId>
13 <artifactId>admportal</artifactId>
Timoney, Dan (dt5972)8d95a6e2019-10-02 08:35:50 -040014 <version>1.7.4-SNAPSHOT</version>
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -050015 <packaging>pom</packaging>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050016
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -050017 <name>sdnc-oam :: admportal</name>
Dan Timoney33314622018-02-13 09:42:07 -050018 <description>Admin Portal</description>
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -050019 <organization>
20 <name>ONAP</name>
21 </organization>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050022
Dan Timoney33314622018-02-13 09:42:07 -050023 <properties>
24 <application.name>admportal</application.name>
25 <skip.SWM>true</skip.SWM>
26 <adm.base>/opt/app/admportal</adm.base>
Jessica Wagantallebaf4ef2018-04-04 18:28:31 -070027 <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
Dan Timoney33314622018-02-13 09:42:07 -050028 <build.number>${maven.build.timestamp}</build.number>
29 <SWM_VERSION>${project.version}-${build.number}</SWM_VERSION>
30 </properties>
Timoney, Dan (dt5972)fe8d3bc2019-01-18 16:51:25 -050031 <dependencyManagement>
32 <dependencies>
33 <dependency>
34 <groupId>org.onap.ccsdk.sli.core</groupId>
35 <artifactId>sli-core-artifacts</artifactId>
36 <version>${ccsdk.sli.core.version}</version>
37 <type>pom</type>
38 <scope>import</scope>
39 </dependency>
40 </dependencies>
41 </dependencyManagement>
Dan Timoney33314622018-02-13 09:42:07 -050042 <dependencies>
43 <dependency>
44 <groupId>org.onap.ccsdk.sli.core</groupId>
45 <artifactId>sli-common</artifactId>
Dan Timoney33314622018-02-13 09:42:07 -050046 </dependency>
47 <dependency>
48 <groupId>org.mariadb.jdbc</groupId>
49 <artifactId>mariadb-java-client</artifactId>
50 <version>${mariadb.connector.version}</version>
51 </dependency>
52 <dependency>
53 <groupId>org.antlr</groupId>
54 <artifactId>antlr4</artifactId>
55 <version>${antlr.version}</version>
Dan Timoney33314622018-02-13 09:42:07 -050056 </dependency>
Dan Timoney33314622018-02-13 09:42:07 -050057 </dependencies>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050058
Dan Timoney33314622018-02-13 09:42:07 -050059 <build>
60 <plugins>
61 <plugin>
62 <artifactId>maven-assembly-plugin</artifactId>
63 <version>2.6</version>
64 <executions>
65 <execution>
66 <id>create-zip</id>
67 <goals>
68 <goal>single</goal>
69 </goals>
70 <phase>package</phase>
71 <configuration>
72 <finalName>${application.name}.${project.version}</finalName>
73 <attach>true</attach>
74 <descriptors>
75 <descriptor>src/assembly/assemble_zip.xml</descriptor>
76 </descriptors>
77 <appendAssemblyId>false</appendAssemblyId>
78 <appendAssemblyId>false</appendAssemblyId>
79 </configuration>
80 </execution>
81 </executions>
82 </plugin>
83 <plugin>
84 <groupId>org.apache.maven.plugins</groupId>
85 <artifactId>maven-dependency-plugin</artifactId>
86 <executions>
87 <execution>
88 <id>copy-dependencies</id>
89 <goals>
90 <goal>copy-dependencies</goal>
91 </goals>
92 <phase>prepare-package</phase>
93 <configuration>
94 <transitive>false</transitive>
95 <outputDirectory>${project.build.directory}/lib</outputDirectory>
96 <overWriteReleases>false</overWriteReleases>
97 <overWriteSnapshots>true</overWriteSnapshots>
98 <overWriteIfNewer>true</overWriteIfNewer>
99 <useRepositoryLayout>false</useRepositoryLayout>
100 <addParentPoms>false</addParentPoms>
101 <copyPom>false</copyPom>
102 <scope>provided</scope>
103 </configuration>
104 </execution>
105 </executions>
106 </plugin>
107 </plugins>
108 </build>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -0500109</project>