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