Bump versions to 7.0.2-SNAPSHOT
[odlparent.git] / karaf / opendaylight-karaf-resources / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <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">
10   <modelVersion>4.0.0</modelVersion>
11   <parent>
12     <groupId>org.opendaylight.odlparent</groupId>
13     <artifactId>odlparent</artifactId>
14     <version>7.0.2-SNAPSHOT</version>
15     <relativePath>../../odlparent</relativePath>
16   </parent>
17   <artifactId>opendaylight-karaf-resources</artifactId>
18   <description>Resources for opendaylight-karaf</description>
19   <packaging>jar</packaging>
20   <name>ODL :: odlparent :: ${project.artifactId}</name>
21   <properties>
22     <!-- There are a lot of duplicate classes in the dependencies below, but this is not a real issue,
23          because this is not a real Java artifact; it's just packaging.  (TODO: Ideally, this artifact should
24          just have odlparent-lite not odlparent as parent, and not run Java static code analysis tools.)
25       -->
26     <duplicate-finder.skip>true</duplicate-finder.skip>
27   </properties>
28   <dependencies>
29     <dependency>
30       <groupId>org.apache.karaf.features</groupId>
31       <artifactId>framework</artifactId>
32       <version>${karaf.version}</version>
33       <type>kar</type>
34     </dependency>
35     <dependency>
36       <groupId>org.apache.karaf.features</groupId>
37       <artifactId>standard</artifactId>
38       <version>${karaf.version}</version>
39       <classifier>features</classifier>
40       <type>xml</type>
41       <scope>runtime</scope>
42     </dependency>
43
44     <!-- BouncyCastle Framework Extension Bundles -->
45     <dependency>
46       <groupId>org.opendaylight.odlparent</groupId>
47       <artifactId>bcpkix-framework-ext</artifactId>
48       <scope>runtime</scope>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.odlparent</groupId>
52       <artifactId>bcprov-framework-ext</artifactId>
53       <scope>runtime</scope>
54     </dependency>
55   </dependencies>
56
57   <build>
58     <resources>
59       <resource>
60         <directory>src/main/resources</directory>
61         <filtering>false</filtering>
62       </resource>
63     </resources>
64     <plugins>
65       <plugin>
66         <artifactId>maven-antrun-plugin</artifactId>
67         <executions>
68           <execution>
69             <id>patch-karaf-scripts</id>
70             <phase>prepare-package</phase>
71             <goals>
72               <goal>run</goal>
73             </goals>
74             <configuration>
75               <target>
76                 <!-- Patches only work with LF line endings from ant -->
77                 <fixcrlf srcdir="${project.build.directory}/assembly/bin"
78                          includes="*.bat" eol="lf"/>
79                 <patch patchfile="${project.basedir}/src/main/patches/karaf-instance.patch"
80                        originalfile="${project.build.directory}/assembly/bin/instance"
81                        failonerror="true"/>
82                 <copy file="${project.build.directory}/assembly/bin/instance"
83                       tofile="${project.build.directory}/classes/bin/instance"/>
84                 <patch patchfile="${project.basedir}/src/main/patches/karaf-instance.bat.patch"
85                        originalfile="${project.build.directory}/assembly/bin/instance.bat"
86                        failonerror="true" ignorewhitespace="true"/>
87                 <copy file="${project.build.directory}/assembly/bin/instance.bat"
88                       tofile="${project.build.directory}/classes/bin/instance.bat"/>
89                 <patch patchfile="${project.basedir}/src/main/patches/karaf-inc.patch"
90                        originalfile="${project.build.directory}/assembly/bin/inc"
91                        failonerror="true"/>
92                 <copy file="${project.build.directory}/assembly/bin/inc"
93                       tofile="${project.build.directory}/classes/bin/inc"/>
94                 <patch patchfile="${project.basedir}/src/main/patches/karaf-karaf.patch"
95                        originalfile="${project.build.directory}/assembly/bin/karaf"
96                        failonerror="true"/>
97                 <copy file="${project.build.directory}/assembly/bin/karaf"
98                       tofile="${project.build.directory}/classes/bin/karaf"/>
99                 <patch patchfile="${project.basedir}/src/main/patches/karaf-karaf.bat.patch"
100                        originalfile="${project.build.directory}/assembly/bin/karaf.bat"
101                        failonerror="true"/>
102                 <copy file="${project.build.directory}/assembly/bin/karaf.bat"
103                       tofile="${project.build.directory}/classes/bin/karaf.bat"/>
104                 <patch patchfile="${project.basedir}/src/main/patches/karaf-setenv.patch"
105                        originalfile="${project.build.directory}/assembly/bin/setenv"
106                        failonerror="true"/>
107                 <copy file="${project.build.directory}/assembly/bin/setenv"
108                       tofile="${project.build.directory}/classes/bin/setenv"/>
109                 <patch patchfile="${project.basedir}/src/main/patches/karaf-setenv.bat.patch"
110                        originalfile="${project.build.directory}/assembly/bin/setenv.bat"
111                        failonerror="true"/>
112                 <copy file="${project.build.directory}/assembly/bin/setenv.bat"
113                       tofile="${project.build.directory}/classes/bin/setenv.bat"/>
114                 <patch patchfile="${project.basedir}/src/main/patches/karaf-quiesce.patch"
115                        originalfile="${project.build.directory}/assembly/system/org/apache/karaf/features/standard/${karaf.version}/standard-${karaf.version}-features.xml"
116                        failonerror="true"/>
117                 <replace file="${project.build.directory}/assembly/system/org/apache/karaf/features/standard/${karaf.version}/standard-${karaf.version}-features.xml"
118                          token="commons-codec/commons-codec/1.13" value="commons-codec/commons-codec/1.14" failOnNoReplacements="true"/>
119                 <replace file="${project.build.directory}/assembly/system/org/apache/karaf/features/standard/${karaf.version}/standard-${karaf.version}-features.xml"
120                          token="javax.annotation/javax.annotation-api/1.3&lt;" value="javax.annotation/javax.annotation-api/1.3.1&lt;" failOnNoReplacements="true"/>
121                 <replace file="${project.build.directory}/assembly/system/org/apache/karaf/features/standard/${karaf.version}/standard-${karaf.version}-features.xml"
122                          token="org.apache.commons/commons-lang3/3.9" value="org.apache.commons/commons-lang3/3.10" failOnNoReplacements="true"/>
123                 <copy file="${project.build.directory}/assembly/system/org/apache/karaf/features/standard/${karaf.version}/standard-${karaf.version}-features.xml"
124                       tofile="${project.build.directory}/classes/system/org/apache/karaf/features/standard/${karaf.version}/standard-${karaf.version}-features.xml"/>
125                 <replace file="${project.build.directory}/assembly/system/org/ops4j/pax/web/pax-web-features/7.2.14/pax-web-features-7.2.14-features.xml"
126                          token="commons-codec/commons-codec/1.11" value="commons-codec/commons-codec/1.14" failOnNoReplacements="true"/>
127                 <replace file="${project.build.directory}/assembly/system/org/ops4j/pax/web/pax-web-features/7.2.14/pax-web-features-7.2.14-features.xml"
128                          token="javax.annotation/javax.annotation-api/1.3&lt;" value="javax.annotation/javax.annotation-api/1.3.1&lt;" failOnNoReplacements="true"/>
129                 <copy file="${project.build.directory}/assembly/system/org/ops4j/pax/web/pax-web-features/7.2.14/pax-web-features-7.2.14-features.xml"
130                       tofile="${project.build.directory}/classes/system/org/ops4j/pax/web/pax-web-features/7.2.14/pax-web-features-7.2.14-features.xml"/>
131                 <!-- Add startup bundles to startup.properties — order is significant, bundles are wired in declaration order -->
132                 <echo file="${project.build.directory}/assembly/etc/startup.properties" append="true">
133 # The following are added by opendaylight-karaf-resources
134 mvn\:org.osgi/org.osgi.service.event/1.3.1 = 7
135 mvn\:org.apache.felix/org.apache.felix.metatype/1.2.2 = 8
136 mvn\:org.opendaylight.odlparent/bcprov-framework-ext/${project.version} = 14
137 mvn\:org.opendaylight.odlparent/bcpkix-framework-ext/${project.version} = 14
138 mvn\:org.apache.aries.blueprint/org.apache.aries.blueprint.core.compatibility/1.0.0 = 14
139                 </echo>
140                 <copy file="${project.build.directory}/assembly/etc/startup.properties"
141                       tofile="${project.build.directory}/classes/etc/startup.properties"/>
142                 <fixcrlf srcdir="${project.build.directory}/classes/bin"
143                          includes="*.bat" eol="crlf"/>
144               </target>
145             </configuration>
146           </execution>
147         </executions>
148       </plugin>
149       <plugin>
150         <groupId>org.apache.maven.plugins</groupId>
151         <artifactId>maven-dependency-plugin</artifactId>
152         <executions>
153           <execution>
154             <id>copy-framework-extensions</id>
155             <goals>
156               <goal>copy</goal>
157             </goals>
158             <phase>generate-resources</phase>
159             <configuration>
160               <artifactItems>
161                 <!-- Needs to be copied to lib/boot in order have it accessible to Main class -->
162                 <artifactItem>
163                     <groupId>org.bouncycastle</groupId>
164                     <artifactId>bcprov-ext-jdk15on</artifactId>
165                     <version>${bouncycastle.version}</version>
166                     <outputDirectory>target/classes/lib/boot</outputDirectory>
167                     <destFileName>bcprov-ext-jdk15on-${bouncycastle.version}.jar</destFileName>
168                 </artifactItem>
169                 <artifactItem>
170                     <groupId>org.bouncycastle</groupId>
171                     <artifactId>bcpkix-jdk15on</artifactId>
172                     <version>${bouncycastle.version}</version>
173                     <outputDirectory>target/classes/lib/boot</outputDirectory>
174                     <destFileName>bcpkix-jdk15on-${bouncycastle.version}.jar</destFileName>
175                 </artifactItem>
176               </artifactItems>
177               <silent>true</silent>
178             </configuration>
179           </execution>
180         </executions>
181       </plugin>
182       <plugin>
183         <groupId>org.codehaus.mojo</groupId>
184         <artifactId>build-helper-maven-plugin</artifactId>
185         <executions>
186           <execution>
187             <id>attach-artifacts</id>
188             <goals>
189               <goal>attach-artifact</goal>
190             </goals>
191             <phase>package</phase>
192             <configuration>
193               <artifacts>
194                 <artifact>
195                   <file>src/main/assembly/etc/org.ops4j.pax.url.mvn.cfg</file>
196                   <type>properties</type>
197                   <classifier>config</classifier>
198                 </artifact>
199               </artifacts>
200             </configuration>
201           </execution>
202         </executions>
203       </plugin>
204       <plugin>
205         <!-- We do this here only so that we can patch a few files,
206              but we then "throw away" (do not package) most of it,
207              as the karaf4-parent will do this again                -->
208         <groupId>org.apache.karaf.tooling</groupId>
209         <artifactId>karaf-maven-plugin</artifactId>
210         <version>${karaf.version}</version>
211         <executions>
212           <execution>
213             <id>process-resources</id>
214             <phase>process-resources</phase>
215             <goals>
216               <goal>assembly</goal>
217             </goals>
218           </execution>
219       </executions>
220       </plugin>
221       <!-- This needs to execute before patching, otherwise the feature will be left unpatched -->
222       <plugin>
223         <groupId>org.opendaylight.odlparent</groupId>
224         <artifactId>karaf-plugin</artifactId>
225         <version>7.0.2-SNAPSHOT</version>
226         <executions>
227           <execution>
228             <id>populate-local-repo</id>
229             <phase>prepare-package</phase>
230             <goals>
231               <goal>populate-local-repo</goal>
232             </goals>
233             <configuration>
234               <localRepo>${project.build.directory}/assembly/system</localRepo>
235             </configuration>
236           </execution>
237         </executions>
238       </plugin>
239     </plugins>
240   </build>
241 </project>