blob: e0b96ca4518e8d09ed2d89d67d8847e84285de86 [file] [log] [blame]
Smokowski, Kevin (ks6305)37500142019-08-06 19:36:13 +00001<?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">
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -05003 <modelVersion>4.0.0</modelVersion>
Smokowski, Kevin (ks6305)37500142019-08-06 19:36:13 +00004
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -05005 <parent>
6 <groupId>org.onap.ccsdk.parent</groupId>
7 <artifactId>odlparent-lite</artifactId>
Dan Timoney21625332023-11-08 09:29:37 -05008 <version>2.6.1</version>
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -05009 <relativePath/>
10 </parent>
Smokowski, Kevin (ks6305)37500142019-08-06 19:36:13 +000011
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050012 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
13 <artifactId>base-http-installer</artifactId>
Dan Timoney79cddca2024-04-18 09:40:56 -040014 <version>1.7.3-SNAPSHOT</version>
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050015 <packaging>pom</packaging>
Smokowski, Kevin (ks6305)37500142019-08-06 19:36:13 +000016
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050017 <name>ccsdk-sli-adaptors :: ${project.artifactId}</name>
Smokowski, Kevin (ks6305)37500142019-08-06 19:36:13 +000018
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050019 <properties>
20 <application.name>ccsdk-base-http</application.name>
21 <features.boot>${application.name}</features.boot>
Smokowski, Kevin (ks6305)37500142019-08-06 19:36:13 +000022 <features.repositories>mvn:org.onap.ccsdk.sli.adaptors/${features.boot}/${project.version}/xml/features</features.repositories>
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050023 <include.transitive.dependencies>false</include.transitive.dependencies>
24 </properties>
Smokowski, Kevin (ks6305)37500142019-08-06 19:36:13 +000025
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050026 <dependencies>
Smokowski, Kevin (ks6305)37500142019-08-06 19:36:13 +000027
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050028 <dependency>
29 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
30 <artifactId>base-http-provider</artifactId>
31 <version>${project.version}</version>
32 </dependency>
33 </dependencies>
Smokowski, Kevin (ks6305)37500142019-08-06 19:36:13 +000034
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050035 <build>
36 <plugins>
37 <plugin>
38 <artifactId>maven-assembly-plugin</artifactId>
39 <version>2.6</version>
40 <executions>
41 <execution>
42 <id>maven-repo-zip</id>
43 <goals>
44 <goal>single</goal>
45 </goals>
46 <phase>package</phase>
47 <configuration>
48 <attach>true</attach>
49 <finalName>stage/${application.name}-${project.version}</finalName>
50 <descriptors>
51 <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
52 </descriptors>
53 <appendAssemblyId>true</appendAssemblyId>
54 </configuration>
55 </execution>
56 <execution>
57 <id>installer-zip</id>
58 <goals>
59 <goal>single</goal>
60 </goals>
61 <phase>package</phase>
62 <configuration>
63 <attach>true</attach>
64 <finalName>${application.name}-${project.version}-installer</finalName>
65 <descriptors>
66 <descriptor>src/assembly/assemble_installer_zip.xml</descriptor>
67 </descriptors>
68 <appendAssemblyId>false</appendAssemblyId>
69 </configuration>
70 </execution>
71 </executions>
72 </plugin>
73 <plugin>
74 <groupId>org.apache.maven.plugins</groupId>
75 <artifactId>maven-dependency-plugin</artifactId>
76 <executions>
77 <execution>
78 <id>copy-dependencies</id>
79 <goals>
80 <goal>copy-dependencies</goal>
81 </goals>
82 <phase>prepare-package</phase>
83 <configuration>
84 <transitive>false</transitive>
85 <outputDirectory>${project.build.directory}/assembly/system</outputDirectory>
86 <overWriteReleases>false</overWriteReleases>
87 <overWriteSnapshots>true</overWriteSnapshots>
88 <overWriteIfNewer>true</overWriteIfNewer>
89 <useRepositoryLayout>true</useRepositoryLayout>
90 <addParentPoms>false</addParentPoms>
91 <copyPom>false</copyPom>
92 <includeArtifactIds>ccsdk-base-http,base-http-provider</includeArtifactIds>
93 <scope>provided</scope>
94 </configuration>
95 </execution>
96 </executions>
97 </plugin>
98 <plugin>
99 <artifactId>maven-resources-plugin</artifactId>
100 <version>2.6</version>
101 <executions>
102 <execution>
103 <id>copy-version</id>
104 <goals>
105 <goal>copy-resources</goal>
106 </goals><!-- here the phase you need -->
107 <phase>validate</phase>
108 <configuration>
109 <outputDirectory>${basedir}/target/stage</outputDirectory>
110 <resources>
111 <resource>
112 <directory>src/main/resources/scripts</directory>
113 <includes>
114 <include>install-feature.sh</include>
115 </includes>
116 <filtering>true</filtering>
117 </resource>
118 </resources>
119 </configuration>
120 </execution>
Smokowski, Kevin (ks6305)37500142019-08-06 19:36:13 +0000121
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -0500122 </executions>
123 </plugin>
Smokowski, Kevin (ks6305)37500142019-08-06 19:36:13 +0000124
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -0500125 </plugins>
126 </build>
Smokowski, Kevin (ks6305)37500142019-08-06 19:36:13 +0000127</project>