blob: 3601a31889a47a13613fa99e1ae874a9e58727a3 [file] [log] [blame]
Timoney, Dan (dt5972)b0396822018-04-12 19:13:59 -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">
Timoney, Dan (dt5972)feb63252019-01-08 12:29:46 -05003 <modelVersion>4.0.0</modelVersion>
Timoney, Dan (dt5972)b0396822018-04-12 19:13:59 -04004
Timoney, Dan (dt5972)feb63252019-01-08 12:29:46 -05005 <parent>
6 <groupId>org.onap.ccsdk.parent</groupId>
7 <artifactId>odlparent-lite</artifactId>
Dan Timoney46c69f52020-11-25 16:07:46 -05008 <version>2.1.0</version>
Timoney, Dan (dt5972)b0396822018-04-12 19:13:59 -04009 <relativePath/>
Timoney, Dan (dt5972)feb63252019-01-08 12:29:46 -050010 </parent>
Timoney, Dan (dt5972)b0396822018-04-12 19:13:59 -040011
12 <groupId>org.onap.ccsdk.sli.northbound</groupId>
Timoney, Dan (dt5972)feb63252019-01-08 12:29:46 -050013 <artifactId>lcm-installer</artifactId>
Dan Timoney8f2fcda2020-12-02 07:48:49 -050014 <version>1.2.0-SNAPSHOT</version>
Timoney, Dan (dt5972)feb63252019-01-08 12:29:46 -050015 <packaging>pom</packaging>
Timoney, Dan (dt5972)b0396822018-04-12 19:13:59 -040016
Timoney, Dan (dt5972)feb63252019-01-08 12:29:46 -050017 <name>ccsdk-sli-northbound :: lcm :: ${project.artifactId}</name>
Timoney, Dan (dt5972)b0396822018-04-12 19:13:59 -040018
Timoney, Dan (dt5972)feb63252019-01-08 12:29:46 -050019 <properties>
20 <application.name>ccsdk-lcm</application.name>
21 <features.boot>${application.name}</features.boot>
Timoney, Dan (dt5972)b0396822018-04-12 19:13:59 -040022 <features.repositories>mvn:org.onap.ccsdk.sli.northbound/${features.boot}/${project.version}/xml/features</features.repositories>
Timoney, Dan (dt5972)feb63252019-01-08 12:29:46 -050023 <include.transitive.dependencies>false</include.transitive.dependencies>
24 </properties>
Timoney, Dan (dt5972)b0396822018-04-12 19:13:59 -040025
Timoney, Dan (dt5972)feb63252019-01-08 12:29:46 -050026 <dependencies>
Timoney, Dan (dt5972)b0396822018-04-12 19:13:59 -040027
Timoney, Dan (dt5972)feb63252019-01-08 12:29:46 -050028 <dependency>
29 <groupId>org.onap.ccsdk.sli.northbound</groupId>
Timoney, Dan (dt5972)b0396822018-04-12 19:13:59 -040030 <artifactId>lcm-model</artifactId>
31 <version>${project.version}</version>
32 </dependency>
Timoney, Dan (dt5972)feb63252019-01-08 12:29:46 -050033 <dependency>
34 <groupId>org.onap.ccsdk.sli.northbound</groupId>
35 <artifactId>lcm-provider</artifactId>
36 <version>${project.version}</version>
37 </dependency>
Timoney, Dan (dt5972)b0396822018-04-12 19:13:59 -040038
39
Timoney, Dan (dt5972)feb63252019-01-08 12:29:46 -050040 </dependencies>
Timoney, Dan (dt5972)b0396822018-04-12 19:13:59 -040041
Timoney, Dan (dt5972)feb63252019-01-08 12:29:46 -050042 <build>
43 <plugins>
44 <plugin>
45 <artifactId>maven-assembly-plugin</artifactId>
46 <version>2.6</version>
47 <executions>
48 <execution>
49 <id>maven-repo-zip</id>
50 <goals>
51 <goal>single</goal>
52 </goals>
53 <phase>package</phase>
54 <configuration>
55 <attach>true</attach>
56 <finalName>stage/${application.name}-${project.version}</finalName>
57 <descriptors>
58 <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
59 </descriptors>
60 <appendAssemblyId>true</appendAssemblyId>
61 </configuration>
62 </execution>
63 <execution>
64 <id>installer-zip</id>
65 <goals>
66 <goal>single</goal>
67 </goals>
68 <phase>package</phase>
69 <configuration>
70 <attach>true</attach>
71 <finalName>${application.name}-${project.version}-installer</finalName>
72 <descriptors>
73 <descriptor>src/assembly/assemble_installer_zip.xml</descriptor>
74 </descriptors>
75 <appendAssemblyId>false</appendAssemblyId>
76 </configuration>
77 </execution>
78 </executions>
79 </plugin>
80 <plugin>
81 <groupId>org.apache.maven.plugins</groupId>
82 <artifactId>maven-dependency-plugin</artifactId>
83 <executions>
84 <execution>
85 <id>copy-dependencies</id>
86 <goals>
87 <goal>copy-dependencies</goal>
88 </goals>
89 <phase>prepare-package</phase>
90 <configuration>
91 <transitive>false</transitive>
92 <outputDirectory>${project.build.directory}/assembly/system</outputDirectory>
93 <overWriteReleases>false</overWriteReleases>
94 <overWriteSnapshots>true</overWriteSnapshots>
95 <overWriteIfNewer>true</overWriteIfNewer>
96 <useRepositoryLayout>true</useRepositoryLayout>
97 <addParentPoms>false</addParentPoms>
98 <copyPom>false</copyPom>
99 <includeGroupIds>org.onap.ccsdk.sli.northbound</includeGroupIds>
100 <scope>provided</scope>
101 </configuration>
102 </execution>
103 </executions>
104 </plugin>
105 <plugin>
106 <artifactId>maven-resources-plugin</artifactId>
107 <version>2.6</version>
108 <executions>
109 <execution>
110 <id>copy-version</id>
111 <goals>
112 <goal>copy-resources</goal>
113 </goals><!-- here the phase you need -->
114 <phase>validate</phase>
115 <configuration>
116 <outputDirectory>${basedir}/target/stage</outputDirectory>
117 <resources>
118 <resource>
119 <directory>src/main/resources/scripts</directory>
120 <includes>
121 <include>install-feature.sh</include>
122 </includes>
123 <filtering>true</filtering>
124 </resource>
125 </resources>
126 </configuration>
127 </execution>
Timoney, Dan (dt5972)b0396822018-04-12 19:13:59 -0400128
Timoney, Dan (dt5972)feb63252019-01-08 12:29:46 -0500129 </executions>
130 </plugin>
Timoney, Dan (dt5972)b0396822018-04-12 19:13:59 -0400131
Timoney, Dan (dt5972)feb63252019-01-08 12:29:46 -0500132 </plugins>
133 </build>
Timoney, Dan (dt5972)b0396822018-04-12 19:13:59 -0400134</project>