blob: 164ae20b8b105a0839e4080005a9147f9731b1fa [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>
Dan Timoney97439c82020-09-11 13:31:12 -04008 <version>2.0.1</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>
Singal, Kapil (ks220y)eef450e2020-08-28 10:18:17 -040014 <version>2.0.1-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>
Dan Timoneyf20174d2020-08-10 14:09:14 -040031
32 <dependencyManagement>
33 <dependencies>
34 <dependency>
35 <groupId>org.onap.ccsdk.sli.core</groupId>
36 <artifactId>sli-core-artifacts</artifactId>
37 <version>${ccsdk.sli.core.version}</version>
38 <type>pom</type>
39 <scope>import</scope>
40 </dependency>
41 </dependencies>
42 </dependencyManagement>
Dan Timoney33314622018-02-13 09:42:07 -050043 <dependencies>
44 <dependency>
45 <groupId>org.onap.ccsdk.sli.core</groupId>
46 <artifactId>sli-common</artifactId>
Dan Timoney33314622018-02-13 09:42:07 -050047 </dependency>
48 <dependency>
49 <groupId>org.mariadb.jdbc</groupId>
50 <artifactId>mariadb-java-client</artifactId>
51 <version>${mariadb.connector.version}</version>
52 </dependency>
53 <dependency>
54 <groupId>org.antlr</groupId>
55 <artifactId>antlr4</artifactId>
56 <version>${antlr.version}</version>
Dan Timoney33314622018-02-13 09:42:07 -050057 </dependency>
Dan Timoney33314622018-02-13 09:42:07 -050058 </dependencies>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050059
Dan Timoney33314622018-02-13 09:42:07 -050060 <build>
61 <plugins>
62 <plugin>
63 <artifactId>maven-assembly-plugin</artifactId>
64 <version>2.6</version>
65 <executions>
66 <execution>
67 <id>create-zip</id>
68 <goals>
69 <goal>single</goal>
70 </goals>
71 <phase>package</phase>
72 <configuration>
73 <finalName>${application.name}.${project.version}</finalName>
74 <attach>true</attach>
75 <descriptors>
76 <descriptor>src/assembly/assemble_zip.xml</descriptor>
77 </descriptors>
78 <appendAssemblyId>false</appendAssemblyId>
79 <appendAssemblyId>false</appendAssemblyId>
80 </configuration>
81 </execution>
82 </executions>
83 </plugin>
84 <plugin>
85 <groupId>org.apache.maven.plugins</groupId>
86 <artifactId>maven-dependency-plugin</artifactId>
87 <executions>
88 <execution>
89 <id>copy-dependencies</id>
90 <goals>
91 <goal>copy-dependencies</goal>
92 </goals>
93 <phase>prepare-package</phase>
94 <configuration>
95 <transitive>false</transitive>
96 <outputDirectory>${project.build.directory}/lib</outputDirectory>
97 <overWriteReleases>false</overWriteReleases>
98 <overWriteSnapshots>true</overWriteSnapshots>
99 <overWriteIfNewer>true</overWriteIfNewer>
100 <useRepositoryLayout>false</useRepositoryLayout>
101 <addParentPoms>false</addParentPoms>
102 <copyPom>false</copyPom>
103 <scope>provided</scope>
104 </configuration>
105 </execution>
106 </executions>
107 </plugin>
108 </plugins>
109 </build>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -0500110</project>