Timoney, Daniel (dt5972) | 324ee36 | 2017-02-15 10:37:53 -0500 | [diff] [blame] | 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.openecomp.sdnc.oam</groupId> |
| 7 | <artifactId>sdnc-oam</artifactId> |
Dan Timoney | 139e1b5 | 2017-04-26 08:13:03 -0400 | [diff] [blame^] | 8 | <version>1.1.1-SNAPSHOT</version> |
Timoney, Daniel (dt5972) | 324ee36 | 2017-02-15 10:37:53 -0500 | [diff] [blame] | 9 | </parent> |
| 10 | |
| 11 | <modelVersion>4.0.0</modelVersion> |
| 12 | <packaging>pom</packaging> |
| 13 | <groupId>org.openecomp.sdnc.oam</groupId> |
| 14 | <artifactId>admportal</artifactId> |
| 15 | |
Dan Timoney | 139e1b5 | 2017-04-26 08:13:03 -0400 | [diff] [blame^] | 16 | <version>1.1.1-SNAPSHOT</version> |
Timoney, Daniel (dt5972) | 324ee36 | 2017-02-15 10:37:53 -0500 | [diff] [blame] | 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.openecomp.sdnc.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 | </dependencies> |
| 44 | |
| 45 | <build> |
| 46 | <plugins> |
| 47 | <plugin> |
| 48 | <artifactId>maven-assembly-plugin</artifactId> |
| 49 | <executions> |
| 50 | <execution> |
| 51 | <id>create-zip</id> |
| 52 | <goals> |
| 53 | <goal>single</goal> |
| 54 | </goals> |
| 55 | <phase>package</phase> |
| 56 | <configuration> |
| 57 | <finalName>${application.name}.${project.version}</finalName> |
| 58 | <attach>true</attach> |
| 59 | <descriptors> |
| 60 | <descriptor>src/assembly/assemble_zip.xml</descriptor> |
| 61 | </descriptors> |
Gary Wu | ac88917 | 2017-04-07 12:26:14 -0700 | [diff] [blame] | 62 | <appendAssemblyId>false</appendAssemblyId> |
Timoney, Daniel (dt5972) | 324ee36 | 2017-02-15 10:37:53 -0500 | [diff] [blame] | 63 | </configuration> |
| 64 | </execution> |
| 65 | </executions> |
| 66 | </plugin> |
| 67 | <plugin> |
| 68 | <groupId>org.apache.maven.plugins</groupId> |
| 69 | <artifactId>maven-dependency-plugin</artifactId> |
| 70 | <executions> |
| 71 | <execution> |
| 72 | <id>copy-dependencies</id> |
| 73 | <goals> |
| 74 | <goal>copy-dependencies</goal> |
| 75 | </goals> |
| 76 | <phase>prepare-package</phase> |
| 77 | <configuration> |
| 78 | <transitive>false</transitive> |
| 79 | <outputDirectory>${project.build.directory}/lib</outputDirectory> |
| 80 | <overWriteReleases>false</overWriteReleases> |
| 81 | <overWriteSnapshots>true</overWriteSnapshots> |
| 82 | <overWriteIfNewer>true</overWriteIfNewer> |
| 83 | <useRepositoryLayout>false</useRepositoryLayout> |
| 84 | <addParentPoms>false</addParentPoms> |
| 85 | <copyPom>false</copyPom> |
| 86 | <scope>provided</scope> |
| 87 | </configuration> |
| 88 | </execution> |
| 89 | </executions> |
| 90 | </plugin> |
| 91 | </plugins> |
| 92 | </build> |
| 93 | |
| 94 | <organization> |
| 95 | <name>AT&T</name> |
| 96 | </organization> |
| 97 | </project> |
| 98 | |