Dan Timoney | 1b47683 | 2017-02-15 15:09:44 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Timoney, Dan (dt5972) | 131f1fa | 2018-02-28 21:13:09 -0500 | [diff] [blame] | 2 | <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"> |
Dan Timoney | 1b47683 | 2017-02-15 15:09:44 -0500 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
Timoney, Dan (dt5972) | 131f1fa | 2018-02-28 21:13:09 -0500 | [diff] [blame] | 4 | |
Dan Timoney | 1b47683 | 2017-02-15 15:09:44 -0500 | [diff] [blame] | 5 | <parent> |
Timoney, Dan (dt5972) | 131f1fa | 2018-02-28 21:13:09 -0500 | [diff] [blame] | 6 | <groupId>org.onap.ccsdk.parent</groupId> |
| 7 | <artifactId>odlparent-lite</artifactId> |
Dan Timoney | 28998d1 | 2021-01-12 14:37:57 -0500 | [diff] [blame] | 8 | <version>2.0.5</version> |
Dan Timoney | 1b47683 | 2017-02-15 15:09:44 -0500 | [diff] [blame] | 9 | </parent> |
Timoney, Dan (dt5972) | 131f1fa | 2018-02-28 21:13:09 -0500 | [diff] [blame] | 10 | |
| 11 | <groupId>org.onap.sdnc.northbound</groupId> |
Dan Timoney | 1b47683 | 2017-02-15 15:09:44 -0500 | [diff] [blame] | 12 | <artifactId>vnftools-installer</artifactId> |
Dan Timoney | 28998d1 | 2021-01-12 14:37:57 -0500 | [diff] [blame] | 13 | <version>2.0.4-SNAPSHOT</version> |
Dan Timoney | 1b47683 | 2017-02-15 15:09:44 -0500 | [diff] [blame] | 14 | <packaging>pom</packaging> |
| 15 | |
Timoney, Dan (dt5972) | 131f1fa | 2018-02-28 21:13:09 -0500 | [diff] [blame] | 16 | <name>sdnc-northbound :: vnftools :: ${project.artifactId}</name> |
| 17 | |
Dan Timoney | 1b47683 | 2017-02-15 15:09:44 -0500 | [diff] [blame] | 18 | <properties> |
| 19 | <application.name>sdnc-vnftools</application.name> |
Timoney, Dan (dt5972) | 131f1fa | 2018-02-28 21:13:09 -0500 | [diff] [blame] | 20 | <features.boot>${application.name}</features.boot> |
| 21 | <features.repositories>mvn:org.onap.sdnc.northbound/${application.name}/${project.version}/xml/features</features.repositories> |
Dan Timoney | 1b47683 | 2017-02-15 15:09:44 -0500 | [diff] [blame] | 22 | <include.transitive.dependencies>false</include.transitive.dependencies> |
| 23 | </properties> |
| 24 | |
| 25 | <dependencies> |
| 26 | |
| 27 | <dependency> |
Timoney, Dan (dt5972) | 131f1fa | 2018-02-28 21:13:09 -0500 | [diff] [blame] | 28 | <groupId>${project.groupId}</groupId> |
| 29 | <artifactId>${application.name}</artifactId> |
Dan Timoney | 1b47683 | 2017-02-15 15:09:44 -0500 | [diff] [blame] | 30 | <version>${project.version}</version> |
Dan Timoney | 1b47683 | 2017-02-15 15:09:44 -0500 | [diff] [blame] | 31 | <type>xml</type> |
Timoney, Dan (dt5972) | 131f1fa | 2018-02-28 21:13:09 -0500 | [diff] [blame] | 32 | <classifier>features</classifier> |
Dan Timoney | 1b47683 | 2017-02-15 15:09:44 -0500 | [diff] [blame] | 33 | <exclusions> |
| 34 | <exclusion> |
| 35 | <groupId>*</groupId> |
| 36 | <artifactId>*</artifactId> |
| 37 | </exclusion> |
| 38 | </exclusions> |
| 39 | </dependency> |
| 40 | |
| 41 | <dependency> |
Marcus G K Williams | eb2d402 | 2017-08-30 19:32:32 -0700 | [diff] [blame] | 42 | <groupId>org.onap.sdnc.northbound</groupId> |
Dan Timoney | 1b47683 | 2017-02-15 15:09:44 -0500 | [diff] [blame] | 43 | <artifactId>vnftools-provider</artifactId> |
| 44 | <version>${project.version}</version> |
| 45 | </dependency> |
| 46 | |
| 47 | |
| 48 | </dependencies> |
| 49 | |
| 50 | <build> |
| 51 | <plugins> |
| 52 | <plugin> |
| 53 | <artifactId>maven-assembly-plugin</artifactId> |
Guo Ruijing | 116bb85 | 2017-05-03 23:55:30 +0000 | [diff] [blame] | 54 | <version>2.6</version> |
Dan Timoney | 1b47683 | 2017-02-15 15:09:44 -0500 | [diff] [blame] | 55 | <executions> |
| 56 | <execution> |
| 57 | <id>maven-repo-zip</id> |
| 58 | <goals> |
| 59 | <goal>single</goal> |
| 60 | </goals> |
| 61 | <phase>package</phase> |
| 62 | <configuration> |
Timoney, Dan (dt5972) | c9b19bb | 2018-07-17 11:23:42 -0400 | [diff] [blame] | 63 | <attach>true</attach> |
Dan Timoney | 1b47683 | 2017-02-15 15:09:44 -0500 | [diff] [blame] | 64 | <finalName>stage/${application.name}-${project.version}</finalName> |
| 65 | <descriptors> |
| 66 | <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor> |
| 67 | </descriptors> |
| 68 | </configuration> |
| 69 | </execution> |
| 70 | <execution> |
| 71 | <id>installer-zip</id> |
| 72 | <goals> |
| 73 | <goal>single</goal> |
| 74 | </goals> |
| 75 | <phase>package</phase> |
| 76 | <configuration> |
| 77 | <attach>true</attach> |
| 78 | <finalName>${application.name}-${project.version}-installer</finalName> |
| 79 | <descriptors> |
| 80 | <descriptor>src/assembly/assemble_installer_zip.xml</descriptor> |
| 81 | </descriptors> |
Guo Ruijing | 116bb85 | 2017-05-03 23:55:30 +0000 | [diff] [blame] | 82 | <appendAssemblyId>false</appendAssemblyId> |
Dan Timoney | 1b47683 | 2017-02-15 15:09:44 -0500 | [diff] [blame] | 83 | </configuration> |
| 84 | </execution> |
| 85 | </executions> |
| 86 | </plugin> |
| 87 | <plugin> |
| 88 | <groupId>org.apache.maven.plugins</groupId> |
| 89 | <artifactId>maven-dependency-plugin</artifactId> |
| 90 | <executions> |
| 91 | <execution> |
| 92 | <id>copy-dependencies</id> |
| 93 | <goals> |
| 94 | <goal>copy-dependencies</goal> |
| 95 | </goals> |
| 96 | <phase>prepare-package</phase> |
| 97 | <configuration> |
| 98 | <transitive>false</transitive> |
| 99 | <outputDirectory>${project.build.directory}/assembly/system</outputDirectory> |
| 100 | <overWriteReleases>false</overWriteReleases> |
| 101 | <overWriteSnapshots>true</overWriteSnapshots> |
| 102 | <overWriteIfNewer>true</overWriteIfNewer> |
| 103 | <useRepositoryLayout>true</useRepositoryLayout> |
| 104 | <addParentPoms>false</addParentPoms> |
| 105 | <copyPom>false</copyPom> |
Timoney, Dan (dt5972) | 131f1fa | 2018-02-28 21:13:09 -0500 | [diff] [blame] | 106 | <includeGroupIds>org.onap.sdnc.northbound</includeGroupIds> |
Dan Timoney | 1b47683 | 2017-02-15 15:09:44 -0500 | [diff] [blame] | 107 | <scope>provided</scope> |
| 108 | </configuration> |
| 109 | </execution> |
| 110 | </executions> |
| 111 | </plugin> |
| 112 | <plugin> |
| 113 | <artifactId>maven-resources-plugin</artifactId> |
| 114 | <version>2.6</version> |
| 115 | <executions> |
| 116 | <execution> |
| 117 | <id>copy-version</id> |
| 118 | <goals> |
| 119 | <goal>copy-resources</goal> |
| 120 | </goals><!-- here the phase you need --> |
| 121 | <phase>validate</phase> |
| 122 | <configuration> |
| 123 | <outputDirectory>${basedir}/target/stage</outputDirectory> |
| 124 | <resources> |
| 125 | <resource> |
| 126 | <directory>src/main/resources/scripts</directory> |
| 127 | <includes> |
| 128 | <include>install-feature.sh</include> |
| 129 | </includes> |
| 130 | <filtering>true</filtering> |
| 131 | </resource> |
| 132 | </resources> |
| 133 | </configuration> |
| 134 | </execution> |
| 135 | |
| 136 | </executions> |
| 137 | </plugin> |
| 138 | |
| 139 | </plugins> |
| 140 | </build> |
Dan Timoney | 1b47683 | 2017-02-15 15:09:44 -0500 | [diff] [blame] | 141 | </project> |