blob: 4b445936a39dea21c571f9023ce6e87271a72f9a [file] [log] [blame]
Dan Timoney37d64682017-09-21 16:07:02 -04001<?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">
3 <modelVersion>4.0.0</modelVersion>
Dan Timoney131cb462018-02-01 16:57:00 -05004
Dan Timoney37d64682017-09-21 16:07:02 -04005 <parent>
Dan Timoney131cb462018-02-01 16:57:00 -05006 <groupId>org.onap.ccsdk.parent</groupId>
7 <artifactId>odlparent-lite</artifactId>
Timoney, Dan (dt5972)1a717792018-06-06 13:44:30 -04008 <version>1.1.0-SNAPSHOT</version>
Dan Timoney131cb462018-02-01 16:57:00 -05009 <relativePath/>
Dan Timoney37d64682017-09-21 16:07:02 -040010 </parent>
Dan Timoney131cb462018-02-01 16:57:00 -050011
12 <groupId>org.onap.ccsdk.sli.core</groupId>
Dan Timoney37d64682017-09-21 16:07:02 -040013 <artifactId>utils-installer</artifactId>
Timoney, Dan (dt5972)1a717792018-06-06 13:44:30 -040014 <version>0.3.0-SNAPSHOT</version>
Dan Timoney37d64682017-09-21 16:07:02 -040015 <packaging>pom</packaging>
16
Dan Timoney131cb462018-02-01 16:57:00 -050017 <name>ccsdk-sli-core :: utils :: ${project.artifactId}</name>
18
Dan Timoney37d64682017-09-21 16:07:02 -040019 <properties>
Dan Timoney131cb462018-02-01 16:57:00 -050020 <application.name>ccsdk-slicore-utils</application.name>
21 <features.boot>${application.name}</features.boot>
22 <features.repositories>mvn:org.onap.ccsdk.sli.core/${features.boot}/${project.version}/xml/features</features.repositories>
Dan Timoney37d64682017-09-21 16:07:02 -040023 <include.transitive.dependencies>false</include.transitive.dependencies>
24 </properties>
25
26 <dependencies>
27
28 <dependency>
29 <groupId>org.onap.ccsdk.sli.core</groupId>
Dan Timoney131cb462018-02-01 16:57:00 -050030 <artifactId>${application.name}</artifactId>
Dan Timoney37d64682017-09-21 16:07:02 -040031 <version>${project.version}</version>
Dan Timoney37d64682017-09-21 16:07:02 -040032 <type>xml</type>
Dan Timoney131cb462018-02-01 16:57:00 -050033 <classifier>features</classifier>
Dan Timoney37d64682017-09-21 16:07:02 -040034 <exclusions>
35 <exclusion>
36 <groupId>*</groupId>
37 <artifactId>*</artifactId>
38 </exclusion>
39 </exclusions>
40 </dependency>
41
42 <dependency>
43 <groupId>org.onap.ccsdk.sli.core</groupId>
44 <artifactId>utils-provider</artifactId>
45 <version>${project.version}</version>
46 </dependency>
47
48
49 </dependencies>
50
51 <build>
52 <plugins>
53 <plugin>
54 <artifactId>maven-assembly-plugin</artifactId>
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,org.apache.tomcat</includeGroupIds>
108 <excludeArtifactIds>sli-common,sli-provider</excludeArtifactIds>
109 <scope>provided</scope>
110 </configuration>
111 </execution>
112 </executions>
113 </plugin>
114 <plugin>
115 <artifactId>maven-resources-plugin</artifactId>
116 <version>2.6</version>
117 <executions>
118 <execution>
119 <id>copy-version</id>
120 <goals>
121 <goal>copy-resources</goal>
122 </goals><!-- here the phase you need -->
123 <phase>validate</phase>
124 <configuration>
125 <outputDirectory>${basedir}/target/stage</outputDirectory>
126 <resources>
127 <resource>
128 <directory>src/main/resources/scripts</directory>
129 <includes>
130 <include>install-feature.sh</include>
131 </includes>
132 <filtering>true</filtering>
133 </resource>
134 </resources>
135 </configuration>
136 </execution>
137
138 </executions>
139 </plugin>
140
141 </plugins>
142 </build>
Dan Timoney37d64682017-09-21 16:07:02 -0400143</project>