Integrate logging-markers
[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>5.0.7-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
56     <!-- SLF4J logging markers -->
57     <dependency>
58       <groupId>org.opendaylight.odlparent</groupId>
59       <artifactId>logging-markers</artifactId>
60       <scope>runtime</scope>
61     </dependency>
62   </dependencies>
63
64   <build>
65     <resources>
66       <resource>
67         <directory>src/main/resources</directory>
68         <filtering>false</filtering>
69       </resource>
70     </resources>
71     <plugins>
72       <plugin>
73         <artifactId>maven-antrun-plugin</artifactId>
74         <executions>
75           <execution>
76             <id>patch-karaf-scripts</id>
77             <phase>prepare-package</phase>
78             <goals>
79               <goal>run</goal>
80             </goals>
81             <configuration>
82               <target>
83                 <!-- Patches only work with LF line endings from ant -->
84                 <fixcrlf srcdir="${project.build.directory}/assembly/bin"
85                          includes="*.bat" eol="lf"/>
86                 <patch patchfile="${project.basedir}/src/main/patches/karaf-instance.patch"
87                        originalfile="${project.build.directory}/assembly/bin/instance"
88                        failonerror="true"/>
89                 <replace file="${project.build.directory}/assembly/bin/instance"
90                          token="1.10.2" value="1.10.1" failOnNoReplacements="true"/>
91                 <copy file="${project.build.directory}/assembly/bin/instance"
92                       tofile="${project.build.directory}/classes/bin/instance"/>
93                 <patch patchfile="${project.basedir}/src/main/patches/karaf-instance.bat.patch"
94                        originalfile="${project.build.directory}/assembly/bin/instance.bat"
95                        failonerror="true" ignorewhitespace="true"/>
96                 <replace file="${project.build.directory}/assembly/bin/instance.bat"
97                          token="1.10.2" value="1.10.1" failOnNoReplacements="true"/>
98                 <copy file="${project.build.directory}/assembly/bin/instance.bat"
99                       tofile="${project.build.directory}/classes/bin/instance.bat"/>
100                 <patch patchfile="${project.basedir}/src/main/patches/karaf-inc.patch"
101                        originalfile="${project.build.directory}/assembly/bin/inc"
102                        failonerror="true"/>
103                 <copy file="${project.build.directory}/assembly/bin/inc"
104                       tofile="${project.build.directory}/classes/bin/inc"/>
105                 <patch patchfile="${project.basedir}/src/main/patches/karaf-karaf.patch"
106                        originalfile="${project.build.directory}/assembly/bin/karaf"
107                        failonerror="true"/>
108                 <copy file="${project.build.directory}/assembly/bin/karaf"
109                       tofile="${project.build.directory}/classes/bin/karaf"/>
110                 <patch patchfile="${project.basedir}/src/main/patches/karaf-karaf.bat.patch"
111                        originalfile="${project.build.directory}/assembly/bin/karaf.bat"
112                        failonerror="true"/>
113                 <copy file="${project.build.directory}/assembly/bin/karaf.bat"
114                       tofile="${project.build.directory}/classes/bin/karaf.bat"/>
115                 <replace file="${project.build.directory}/assembly/bin/shell"
116                          token="1.10.2" value="1.10.1" failOnNoReplacements="true"/>
117                 <copy file="${project.build.directory}/assembly/bin/shell"
118                       tofile="${project.build.directory}/classes/bin/shell"/>
119                 <replace file="${project.build.directory}/assembly/bin/shell.bat"
120                          token="1.10.2" value="1.10.1" failOnNoReplacements="true"/>
121                 <copy file="${project.build.directory}/assembly/bin/shell.bat"
122                       tofile="${project.build.directory}/classes/bin/shell.bat"/>
123                 <patch patchfile="${project.basedir}/src/main/patches/karaf-setenv.patch"
124                        originalfile="${project.build.directory}/assembly/bin/setenv"
125                        failonerror="true"/>
126                 <copy file="${project.build.directory}/assembly/bin/setenv"
127                       tofile="${project.build.directory}/classes/bin/setenv"/>
128                 <patch patchfile="${project.basedir}/src/main/patches/karaf-setenv.bat.patch"
129                        originalfile="${project.build.directory}/assembly/bin/setenv.bat"
130                        failonerror="true"/>
131                 <copy file="${project.build.directory}/assembly/bin/setenv.bat"
132                       tofile="${project.build.directory}/classes/bin/setenv.bat"/>
133                 <replace file="${project.build.directory}/assembly/system/org/apache/karaf/features/framework/${karaf.version}/framework-${karaf.version}-features.xml"
134                          token="/1.10.2" value="/1.10.1" failOnNoReplacements="true"/>
135                 <copy file="${project.build.directory}/assembly/system/org/apache/karaf/features/framework/${karaf.version}/framework-${karaf.version}-features.xml"
136                       tofile="${project.build.directory}/classes/system/org/apache/karaf/features/framework/${karaf.version}/framework-${karaf.version}-features.xml"/>
137                 <patch patchfile="${project.basedir}/src/main/patches/karaf-quiesce.patch"
138                        originalfile="${project.build.directory}/assembly/system/org/apache/karaf/features/standard/${karaf.version}/standard-${karaf.version}-features.xml"
139                        failonerror="true"/>
140                 <replace file="${project.build.directory}/assembly/system/org/apache/karaf/features/standard/${karaf.version}/standard-${karaf.version}-features.xml"
141                          token="commons-codec/commons-codec/1.12" value="commons-codec/commons-codec/1.14" failOnNoReplacements="true"/>
142                 <!-- fixes https://issues.apache.org/jira/browse/ARIES-1923 -->
143                 <replace file="${project.build.directory}/assembly/system/org/apache/karaf/features/standard/${karaf.version}/standard-${karaf.version}-features.xml"
144                          token="org.apache.aries.proxy/org.apache.aries.proxy/1.1.4" value="org.apache.aries.proxy/org.apache.aries.proxy/1.1.6" failOnNoReplacements="true"/>
145                 <replace file="${project.build.directory}/assembly/system/org/apache/karaf/features/standard/${karaf.version}/standard-${karaf.version}-features.xml"
146                          token="org.jolokia/jolokia-osgi/1.6.1" value="org.jolokia/jolokia-osgi/1.6.2" failOnNoReplacements="true"/>
147                 <copy file="${project.build.directory}/assembly/system/org/apache/karaf/features/standard/${karaf.version}/standard-${karaf.version}-features.xml"
148                       tofile="${project.build.directory}/classes/system/org/apache/karaf/features/standard/${karaf.version}/standard-${karaf.version}-features.xml"/>
149                 <replace file="${project.build.directory}/assembly/system/org/ops4j/pax/web/pax-web-features/7.2.10/pax-web-features-7.2.10-features.xml"
150                          token="commons-beanutils/commons-beanutils/1.8.3" value="commons-beanutils/commons-beanutils/1.9.4" failOnNoReplacements="true"/>
151                 <replace file="${project.build.directory}/assembly/system/org/ops4j/pax/web/pax-web-features/7.2.10/pax-web-features-7.2.10-features.xml"
152                          token="commons-codec/commons-codec/1.11" value="commons-codec/commons-codec/1.14" failOnNoReplacements="true"/>
153                 <copy file="${project.build.directory}/assembly/system/org/ops4j/pax/web/pax-web-features/7.2.10/pax-web-features-7.2.10-features.xml"
154                       tofile="${project.build.directory}/classes/system/org/ops4j/pax/web/pax-web-features/7.2.10/pax-web-features-7.2.10-features.xml"/>
155                 <replace file="${project.build.directory}/assembly/etc/startup.properties"
156                          token="/1.10.2" value="/1.10.1" failOnNoReplacements="true"/>
157                 <!-- Add startup bundles to startup.properties — order is significant, bundles are wired in declaration order -->
158                 <echo file="${project.build.directory}/assembly/etc/startup.properties" append="true">
159 # The following are added by opendaylight-karaf-resources
160 mvn\:org.osgi/org.osgi.service.event/1.3.1 = 7
161 mvn\:org.apache.felix/org.apache.felix.metatype/1.2.2 = 8
162 mvn\:org.opendaylight.odlparent/bcprov-framework-ext/${project.version} = 14
163 mvn\:org.opendaylight.odlparent/bcpkix-framework-ext/${project.version} = 14
164 mvn\:org.opendaylight.odlparent/logging-markers/${project.version} = 14
165 mvn\:org.apache.aries.blueprint/org.apache.aries.blueprint.core.compatibility/1.0.0 = 14
166                 </echo>
167                 <copy file="${project.build.directory}/assembly/etc/startup.properties"
168                       tofile="${project.build.directory}/classes/etc/startup.properties"/>
169                 <fixcrlf srcdir="${project.build.directory}/classes/bin"
170                          includes="*.bat" eol="crlf"/>
171               </target>
172             </configuration>
173           </execution>
174         </executions>
175       </plugin>
176       <plugin>
177         <groupId>org.apache.maven.plugins</groupId>
178         <artifactId>maven-dependency-plugin</artifactId>
179         <executions>
180           <execution>
181             <id>copy</id>
182             <goals>
183               <goal>copy</goal>
184             </goals>
185             <phase>generate-resources</phase>
186             <configuration>
187               <artifactItems>
188                 <!-- Needs to be copied to lib/boot in order have it accessible to Main class -->
189                 <artifactItem>
190                     <groupId>org.bouncycastle</groupId>
191                     <artifactId>bcprov-ext-jdk15on</artifactId>
192                     <version>${bouncycastle.version}</version>
193                     <outputDirectory>target/classes/lib/boot</outputDirectory>
194                     <destFileName>bcprov-ext-jdk15on-${bouncycastle.version}.jar</destFileName>
195                 </artifactItem>
196                 <artifactItem>
197                     <groupId>org.bouncycastle</groupId>
198                     <artifactId>bcpkix-jdk15on</artifactId>
199                     <version>${bouncycastle.version}</version>
200                     <outputDirectory>target/classes/lib/boot</outputDirectory>
201                     <destFileName>bcpkix-jdk15on-${bouncycastle.version}.jar</destFileName>
202                 </artifactItem>
203               </artifactItems>
204             </configuration>
205           </execution>
206         </executions>
207       </plugin>
208       <plugin>
209         <groupId>org.codehaus.mojo</groupId>
210         <artifactId>build-helper-maven-plugin</artifactId>
211         <executions>
212           <execution>
213             <id>attach-artifacts</id>
214             <goals>
215               <goal>attach-artifact</goal>
216             </goals>
217             <phase>package</phase>
218             <configuration>
219               <artifacts>
220                 <artifact>
221                   <file>src/main/assembly/etc/org.ops4j.pax.url.mvn.cfg</file>
222                   <type>properties</type>
223                   <classifier>config</classifier>
224                 </artifact>
225               </artifacts>
226             </configuration>
227           </execution>
228         </executions>
229       </plugin>
230       <plugin>
231         <!-- We do this here only so that we can patch a few files,
232              but we then "throw away" (do not package) most of it,
233              as the karaf4-parent will do this again                -->
234         <groupId>org.apache.karaf.tooling</groupId>
235         <artifactId>karaf-maven-plugin</artifactId>
236         <version>${karaf.version}</version>
237         <executions>
238           <execution>
239             <id>process-resources</id>
240             <phase>process-resources</phase>
241             <goals>
242               <goal>assembly</goal>
243             </goals>
244           </execution>
245       </executions>
246       </plugin>
247       <!-- This needs to execute before patching, otherwise the feature will be left unpatched -->
248       <plugin>
249         <groupId>org.opendaylight.odlparent</groupId>
250         <artifactId>karaf-plugin</artifactId>
251         <version>5.0.7-SNAPSHOT</version>
252         <executions>
253           <execution>
254             <id>populate-local-repo</id>
255             <phase>prepare-package</phase>
256             <goals>
257               <goal>populate-local-repo</goal>
258             </goals>
259             <configuration>
260               <localRepo>${project.build.directory}/assembly/system</localRepo>
261             </configuration>
262           </execution>
263         </executions>
264       </plugin>
265     </plugins>
266   </build>
267 </project>