Bump minor version
[sdnc/oam.git] / admportal / pom.xml
1 <?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"
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4
5         <parent>
6                 <groupId>org.onap.sdnc.oam</groupId>
7                 <artifactId>sdnc-oam</artifactId>
8                 <version>1.3.0-SNAPSHOT</version>
9         </parent>
10
11         <modelVersion>4.0.0</modelVersion>
12         <packaging>pom</packaging>
13         <groupId>org.onap.sdnc.oam</groupId>
14         <artifactId>admportal</artifactId>
15
16         <version>1.3.0-SNAPSHOT</version>
17
18         <name>Admin Portal</name>
19         <description>Admin Portal</description>
20
21         <properties>
22                 <application.name>admportal</application.name>
23                 <skip.SWM>true</skip.SWM>
24                 <adm.base>/opt/app/admportal</adm.base>
25                 <maven.build.timestamp.format>yyMMdd-HHmmss</maven.build.timestamp.format>
26                 <build.number>${maven.build.timestamp}</build.number>
27                 <SWM_VERSION>${project.version}-${build.number}</SWM_VERSION>
28         </properties>
29
30   <dependencies>
31     <dependency>
32       <groupId>org.onap.ccsdk.sli.core</groupId>
33       <artifactId>sli-common</artifactId>
34       <version>${sdnctl.sli.version}</version>
35     </dependency>
36     <dependency>
37       <groupId>mysql</groupId>
38       <artifactId>mysql-connector-java</artifactId>
39       <version>5.1.31</version>
40       <type>jar</type>
41       <scope>compile</scope>
42     </dependency>
43     <dependency>
44       <groupId>org.antlr</groupId>
45       <artifactId>antlr4</artifactId>
46       <version>${antlr.version}</version>
47       <type>jar</type>
48     </dependency>
49     <dependency>
50       <groupId>equinoxSDK381</groupId>
51       <artifactId>org.eclipse.osgi</artifactId>
52       <version>${equinox.osgi.version}</version>
53     </dependency>
54   </dependencies>
55
56         <build>
57                 <plugins>
58                         <plugin>
59                                 <artifactId>maven-assembly-plugin</artifactId>
60                                 <version>2.6</version>
61                                 <executions>
62                                         <execution>
63                                                 <id>create-zip</id>
64                                                 <goals>
65                                                         <goal>single</goal>
66                                                 </goals>
67                                                 <phase>package</phase>
68                                                 <configuration>
69                                                         <finalName>${application.name}.${project.version}</finalName>
70                                                         <attach>true</attach>
71                                                         <descriptors>
72                                                                 <descriptor>src/assembly/assemble_zip.xml</descriptor>
73                                                         </descriptors>
74                                                         <appendAssemblyId>false</appendAssemblyId>
75                                                         <appendAssemblyId>false</appendAssemblyId>
76                                                 </configuration>
77                                         </execution>
78                                 </executions>
79                         </plugin>
80                         <plugin>
81                                 <groupId>org.apache.maven.plugins</groupId>
82                                 <artifactId>maven-dependency-plugin</artifactId>
83                                 <executions>
84                                         <execution>
85                                                 <id>copy-dependencies</id>
86                                                 <goals>
87                                                         <goal>copy-dependencies</goal>
88                                                 </goals>
89                                                 <phase>prepare-package</phase>
90                                                 <configuration>
91                                                         <transitive>false</transitive>
92                                                         <outputDirectory>${project.build.directory}/lib</outputDirectory>
93                                                         <overWriteReleases>false</overWriteReleases>
94                                                         <overWriteSnapshots>true</overWriteSnapshots>
95                                                         <overWriteIfNewer>true</overWriteIfNewer>
96                                                         <useRepositoryLayout>false</useRepositoryLayout>
97                                                         <addParentPoms>false</addParentPoms>
98                                                         <copyPom>false</copyPom>
99                                                         <scope>provided</scope>
100                                                 </configuration>
101                                         </execution>
102                                 </executions>
103                         </plugin>
104                 </plugins>
105         </build>
106
107         <organization>
108                 <name>AT&amp;T</name>
109         </organization>
110 </project>
111