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