580188bbc4e214fb26e3ac76c3553a0e7f5107ea
[integration/distribution.git] / onap-karaf / pom.xml
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">
3
4     <parent>
5         <groupId>org.opendaylight.odlparent</groupId>
6         <artifactId>karaf4-parent</artifactId>
7         <version>13.0.11</version>
8         <relativePath/>
9     </parent>
10
11     <groupId>org.opendaylight.integration</groupId>
12     <artifactId>onap-karaf</artifactId>
13     <version>0.21.0-SNAPSHOT</version>
14     <packaging>pom</packaging>
15     <name>ODL :: integration :: ${project.artifactId}</name>
16     <modelVersion>4.0.0</modelVersion>
17
18     <description>The ONAP Karaf distribution.</description>
19     <url>https://wiki.opendaylight.org/x/ggYF</url>
20     <licenses>
21         <license>
22             <name>Eclipse Public License v1.0</name>
23             <url>http://www.eclipse.org/legal/epl-v10.html</url>
24         </license>
25     </licenses>
26
27     <properties>
28         <karaf.archiveZip>false</karaf.archiveZip>
29         <karaf.archiveTarGz>true</karaf.archiveTarGz>
30     </properties>
31
32     <dependencyManagement>
33         <dependencies>
34             <dependency>
35                 <groupId>org.opendaylight.integration</groupId>
36                 <artifactId>all-artifacts</artifactId>
37                 <version>${project.version}</version>
38                 <scope>import</scope>
39                 <type>pom</type>
40             </dependency>
41         </dependencies>
42     </dependencyManagement>
43
44     <dependencies>
45
46         <!-- AAA -->
47         <dependency>
48             <groupId>org.opendaylight.aaa</groupId>
49             <artifactId>features-aaa</artifactId>
50             <classifier>features</classifier>
51             <type>xml</type>
52             <scope>runtime</scope>
53         </dependency>
54
55         <!-- Controller -->
56         <dependency>
57             <groupId>org.opendaylight.controller</groupId>
58             <artifactId>features-controller</artifactId>
59             <classifier>features</classifier>
60             <type>xml</type>
61             <scope>runtime</scope>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.controller</groupId>
65             <artifactId>features-controller-experimental</artifactId>
66             <classifier>features</classifier>
67             <type>xml</type>
68             <scope>runtime</scope>
69         </dependency>
70
71         <!-- Daexim -->
72         <dependency>
73             <groupId>org.opendaylight.daexim</groupId>
74             <artifactId>daexim-features</artifactId>
75             <classifier>features</classifier>
76             <type>xml</type>
77             <scope>runtime</scope>
78         </dependency>
79
80         <!-- MD-SAL -->
81         <dependency>
82             <groupId>org.opendaylight.mdsal</groupId>
83             <artifactId>features-mdsal</artifactId>
84             <classifier>features</classifier>
85             <type>xml</type>
86             <scope>runtime</scope>
87         </dependency>
88
89         <!-- Netconf -->
90         <dependency>
91             <groupId>org.opendaylight.netconf</groupId>
92             <artifactId>features-netconf</artifactId>
93             <classifier>features</classifier>
94             <type>xml</type>
95             <scope>runtime</scope>
96         </dependency>
97         <dependency>
98             <groupId>org.opendaylight.netconf</groupId>
99             <artifactId>features-netconf-experimental</artifactId>
100             <classifier>features</classifier>
101             <type>xml</type>
102             <scope>runtime</scope>
103         </dependency>
104
105         <!--ODL Parent-->
106         <dependency>
107             <groupId>org.opendaylight.odlparent</groupId>
108             <artifactId>features-odlparent</artifactId>
109             <classifier>features</classifier>
110             <type>xml</type>
111             <scope>runtime</scope>
112         </dependency>
113
114         <dependency>
115             <groupId>org.opendaylight.aaa</groupId>
116             <artifactId>aaa-cli-jar</artifactId>
117             <!-- This scope test here is just a trick, so that we can use aaa-cli-jar in maven-dependency-plugin, but don't have karaf-maven-plugin choke on it -->
118             <scope>test</scope>
119         </dependency>
120         <dependency>
121             <groupId>org.opendaylight.integration</groupId>
122             <artifactId>karaf-scripts</artifactId>
123             <version>${project.version}</version>
124             <scope>test</scope>
125         </dependency>
126
127     </dependencies>
128
129     <build>
130         <plugins>
131             <plugin>
132                 <groupId>org.apache.maven.plugins</groupId>
133                 <artifactId>maven-dependency-plugin</artifactId>
134                 <executions>
135                     <execution>
136                         <id>copy-aaa-cli-jar</id>
137                         <phase>prepare-package</phase>
138                         <goals>
139                             <goal>copy-dependencies</goal>
140                         </goals>
141                         <configuration>
142                             <outputDirectory>${project.build.directory}/assembly/bin</outputDirectory>
143                             <includeArtifactIds>aaa-cli-jar</includeArtifactIds>
144                             <overWriteReleases>true</overWriteReleases>
145                             <overWriteSnapshots>true</overWriteSnapshots>
146                             <overWriteIfNewer>true</overWriteIfNewer>
147                             <excludeTransitive>true</excludeTransitive>
148                             <!-- Do not include version in JAR filename, as external scripts call this utility,
149                                  and they understandly do not want to have to adjust for every ODL release;
150                                  see e.g. https://github.com/dfarrell07/puppet-opendaylight/pull/140 -->
151                             <stripVersion>true</stripVersion>
152                         </configuration>
153                     </execution>
154                     <execution>
155                         <id>unpack-odl-karaf-resources</id>
156                         <goals>
157                             <goal>unpack-dependencies</goal>
158                         </goals>
159                         <phase>prepare-package</phase>
160                         <configuration>
161                             <outputDirectory>${project.build.directory}/assembly</outputDirectory>
162                             <groupId>org.opendaylight.integration</groupId>
163                             <includeArtifactIds>karaf-scripts</includeArtifactIds>
164                             <excludes>META-INF\/**</excludes>
165                             <excludeTransitive>true</excludeTransitive>
166                             <ignorePermissions>false</ignorePermissions>
167                         </configuration>
168                     </execution>
169                 </executions>
170             </plugin>
171         </plugins>
172     </build>
173
174 </project>
175