blob: c2735a78252e3791b5be804c74310b503bf2b0af [file] [log] [blame]
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -05001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -05003 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -05005
Dan Timoney33314622018-02-13 09:42:07 -05006 <parent>
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -05007 <groupId>org.onap.ccsdk.parent</groupId>
8 <artifactId>binding-parent</artifactId>
Timoney, Dan (dt5972)48a2eaf2018-06-06 14:35:30 -04009 <version>1.1.0-SNAPSHOT</version>
Timoney, Dan (dt5972)c84dc842018-04-24 09:06:57 -040010 <relativePath/>
Dan Timoney33314622018-02-13 09:42:07 -050011 </parent>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050012
Dan Timoney33314622018-02-13 09:42:07 -050013 <groupId>org.onap.sdnc.oam</groupId>
14 <artifactId>admportal</artifactId>
Timoney, Dan (dt5972)48a2eaf2018-06-06 14:35:30 -040015 <version>1.4.0-SNAPSHOT</version>
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -050016 <packaging>pom</packaging>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050017
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -050018 <name>sdnc-oam :: admportal</name>
Dan Timoney33314622018-02-13 09:42:07 -050019 <description>Admin Portal</description>
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -050020 <organization>
21 <name>ONAP</name>
22 </organization>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050023
Dan Timoney33314622018-02-13 09:42:07 -050024 <properties>
25 <application.name>admportal</application.name>
26 <skip.SWM>true</skip.SWM>
27 <adm.base>/opt/app/admportal</adm.base>
Jessica Wagantallebaf4ef2018-04-04 18:28:31 -070028 <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
Dan Timoney33314622018-02-13 09:42:07 -050029 <build.number>${maven.build.timestamp}</build.number>
30 <SWM_VERSION>${project.version}-${build.number}</SWM_VERSION>
31 </properties>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050032
Dan Timoney33314622018-02-13 09:42:07 -050033 <dependencies>
34 <dependency>
35 <groupId>org.onap.ccsdk.sli.core</groupId>
36 <artifactId>sli-common</artifactId>
Dan Timoney33314622018-02-13 09:42:07 -050037 </dependency>
38 <dependency>
39 <groupId>org.mariadb.jdbc</groupId>
40 <artifactId>mariadb-java-client</artifactId>
41 <version>${mariadb.connector.version}</version>
42 </dependency>
43 <dependency>
44 <groupId>org.antlr</groupId>
45 <artifactId>antlr4</artifactId>
46 <version>${antlr.version}</version>
Dan Timoney33314622018-02-13 09:42:07 -050047 </dependency>
48 <dependency>
49 <groupId>equinoxSDK381</groupId>
50 <artifactId>org.eclipse.osgi</artifactId>
51 <version>${equinox.osgi.version}</version>
52 </dependency>
53 </dependencies>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050054
Dan Timoney33314622018-02-13 09:42:07 -050055 <build>
56 <plugins>
57 <plugin>
58 <artifactId>maven-assembly-plugin</artifactId>
59 <version>2.6</version>
60 <executions>
61 <execution>
62 <id>create-zip</id>
63 <goals>
64 <goal>single</goal>
65 </goals>
66 <phase>package</phase>
67 <configuration>
68 <finalName>${application.name}.${project.version}</finalName>
69 <attach>true</attach>
70 <descriptors>
71 <descriptor>src/assembly/assemble_zip.xml</descriptor>
72 </descriptors>
73 <appendAssemblyId>false</appendAssemblyId>
74 <appendAssemblyId>false</appendAssemblyId>
75 </configuration>
76 </execution>
77 </executions>
78 </plugin>
79 <plugin>
80 <groupId>org.apache.maven.plugins</groupId>
81 <artifactId>maven-dependency-plugin</artifactId>
82 <executions>
83 <execution>
84 <id>copy-dependencies</id>
85 <goals>
86 <goal>copy-dependencies</goal>
87 </goals>
88 <phase>prepare-package</phase>
89 <configuration>
90 <transitive>false</transitive>
91 <outputDirectory>${project.build.directory}/lib</outputDirectory>
92 <overWriteReleases>false</overWriteReleases>
93 <overWriteSnapshots>true</overWriteSnapshots>
94 <overWriteIfNewer>true</overWriteIfNewer>
95 <useRepositoryLayout>false</useRepositoryLayout>
96 <addParentPoms>false</addParentPoms>
97 <copyPom>false</copyPom>
98 <scope>provided</scope>
99 </configuration>
100 </execution>
101 </executions>
102 </plugin>
103 </plugins>
104 </build>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -0500105</project>