Bump commons-io to 2.10.0
[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>9.0.3-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     <!-- jacoco:report bombs out on BouncyCastle's JDK15 classes, it has not point anyway -->
28     <jacoco.skip>true</jacoco.skip>
29   </properties>
30   <dependencies>
31     <dependency>
32       <groupId>org.apache.karaf.features</groupId>
33       <artifactId>framework</artifactId>
34       <version>${karaf.version}</version>
35       <type>kar</type>
36     </dependency>
37     <dependency>
38       <groupId>org.apache.karaf.features</groupId>
39       <artifactId>standard</artifactId>
40       <version>${karaf.version}</version>
41       <classifier>features</classifier>
42       <type>xml</type>
43       <scope>runtime</scope>
44     </dependency>
45
46     <!-- BouncyCastle Framework Extension Bundles -->
47     <dependency>
48       <groupId>org.opendaylight.odlparent</groupId>
49       <artifactId>bcpkix-framework-ext</artifactId>
50       <scope>runtime</scope>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.odlparent</groupId>
54       <artifactId>bcprov-framework-ext</artifactId>
55       <scope>runtime</scope>
56     </dependency>
57
58     <!-- SLF4J logging markers -->
59     <dependency>
60       <groupId>org.opendaylight.odlparent</groupId>
61       <artifactId>logging-markers</artifactId>
62       <scope>runtime</scope>
63     </dependency>
64   </dependencies>
65
66   <build>
67     <resources>
68       <resource>
69         <directory>src/main/resources</directory>
70         <filtering>false</filtering>
71       </resource>
72     </resources>
73     <plugins>
74       <plugin>
75         <artifactId>maven-antrun-plugin</artifactId>
76         <executions>
77           <execution>
78             <id>patch-karaf-scripts</id>
79             <phase>prepare-package</phase>
80             <goals>
81               <goal>run</goal>
82             </goals>
83             <configuration>
84               <target>
85                 <!-- Patches only work with LF line endings from ant -->
86                 <fixcrlf srcdir="${project.build.directory}/assembly/bin"
87                          includes="*.bat" eol="lf"/>
88                 <patch patchfile="${project.basedir}/src/main/patches/karaf-instance.patch"
89                        originalfile="${project.build.directory}/assembly/bin/instance"
90                        failonerror="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                 <copy file="${project.build.directory}/assembly/bin/instance.bat"
97                       tofile="${project.build.directory}/classes/bin/instance.bat"/>
98                 <patch patchfile="${project.basedir}/src/main/patches/karaf-inc.patch"
99                        originalfile="${project.build.directory}/assembly/bin/inc"
100                        failonerror="true"/>
101                 <copy file="${project.build.directory}/assembly/bin/inc"
102                       tofile="${project.build.directory}/classes/bin/inc"/>
103                 <patch patchfile="${project.basedir}/src/main/patches/karaf-karaf.patch"
104                        originalfile="${project.build.directory}/assembly/bin/karaf"
105                        failonerror="true"/>
106                 <copy file="${project.build.directory}/assembly/bin/karaf"
107                       tofile="${project.build.directory}/classes/bin/karaf"/>
108                 <patch patchfile="${project.basedir}/src/main/patches/karaf-karaf.bat.patch"
109                        originalfile="${project.build.directory}/assembly/bin/karaf.bat"
110                        failonerror="true"/>
111                 <copy file="${project.build.directory}/assembly/bin/karaf.bat"
112                       tofile="${project.build.directory}/classes/bin/karaf.bat"/>
113                 <patch patchfile="${project.basedir}/src/main/patches/karaf-setenv.patch"
114                        originalfile="${project.build.directory}/assembly/bin/setenv"
115                        failonerror="true"/>
116                 <copy file="${project.build.directory}/assembly/bin/setenv"
117                       tofile="${project.build.directory}/classes/bin/setenv"/>
118                 <patch patchfile="${project.basedir}/src/main/patches/karaf-setenv.bat.patch"
119                        originalfile="${project.build.directory}/assembly/bin/setenv.bat"
120                        failonerror="true"/>
121                 <copy file="${project.build.directory}/assembly/bin/setenv.bat"
122                       tofile="${project.build.directory}/classes/bin/setenv.bat"/>
123                 <patch patchfile="${project.basedir}/src/main/patches/karaf-quiesce.patch"
124                        originalfile="${project.build.directory}/assembly/system/org/apache/karaf/features/standard/${karaf.version}/standard-${karaf.version}-features.xml"
125                        failonerror="true"/>
126                 <replace file="${project.build.directory}/assembly/system/org/apache/karaf/features/standard/${karaf.version}/standard-${karaf.version}-features.xml"
127                          token="commons-io/commons-io/2.8.0" value="commons-io/commons-io/2.10.0" failOnNoReplacements="true"/>
128                 <copy file="${project.build.directory}/assembly/system/org/apache/karaf/features/standard/${karaf.version}/standard-${karaf.version}-features.xml"
129                       tofile="${project.build.directory}/classes/system/org/apache/karaf/features/standard/${karaf.version}/standard-${karaf.version}-features.xml"/>
130                 <copy file="${project.build.directory}/assembly/system/org/apache/karaf/features/framework/${karaf.version}/framework-${karaf.version}-features.xml"
131                       tofile="${project.build.directory}/classes/system/org/apache/karaf/features/framework/${karaf.version}/framework-${karaf.version}-features.xml"/>
132                 <replace file="${project.build.directory}/assembly/system/org/ops4j/pax/web/pax-web-features/7.3.16/pax-web-features-7.3.16-features.xml"
133                          token="javax.annotation/javax.annotation-api/1.3&lt;" value="javax.annotation/javax.annotation-api/1.3.1&lt;" failOnNoReplacements="true"/>
134                 <copy file="${project.build.directory}/assembly/system/org/ops4j/pax/web/pax-web-features/7.3.16/pax-web-features-7.3.16-features.xml"
135                       tofile="${project.build.directory}/classes/system/org/ops4j/pax/web/pax-web-features/7.3.16/pax-web-features-7.3.16-features.xml"/>
136                 <!-- Add startup bundles to startup.properties — order is significant, bundles are wired in declaration order -->
137                 <echo file="${project.build.directory}/assembly/etc/startup.properties" append="true">
138 # The following are added by opendaylight-karaf-resources
139 mvn\:org.osgi/org.osgi.service.event/1.4.0 = 7
140 mvn\:org.apache.felix/org.apache.felix.metatype/1.2.4 = 8
141 mvn\:org.opendaylight.odlparent/bcprov-framework-ext/${project.version} = 14
142 mvn\:org.opendaylight.odlparent/bcpkix-framework-ext/${project.version} = 14
143 mvn\:org.opendaylight.odlparent/logging-markers/${project.version} = 14
144 mvn\:org.apache.aries.blueprint/org.apache.aries.blueprint.core.compatibility/1.0.0 = 14
145                 </echo>
146                 <copy file="${project.build.directory}/assembly/etc/startup.properties"
147                       tofile="${project.build.directory}/classes/etc/startup.properties"/>
148                 <replace file="${project.build.directory}/assembly/etc/users.properties"
149                          token="#karaf" value="karaf" failOnNoReplacements="true"/>
150                 <replace file="${project.build.directory}/assembly/etc/users.properties"
151                          token="#_g_" value="_g_" failOnNoReplacements="true"/>
152                 <copy file="${project.build.directory}/assembly/etc/users.properties"
153                       tofile="${project.build.directory}/classes/etc/users.properties"/>
154                 <fixcrlf srcdir="${project.build.directory}/classes/bin"
155                          includes="*.bat" eol="crlf"/>
156               </target>
157             </configuration>
158           </execution>
159         </executions>
160       </plugin>
161       <plugin>
162         <groupId>org.apache.maven.plugins</groupId>
163         <artifactId>maven-dependency-plugin</artifactId>
164         <executions>
165           <execution>
166             <id>copy-framework-extensions</id>
167             <goals>
168               <goal>copy</goal>
169             </goals>
170             <phase>generate-resources</phase>
171             <configuration>
172               <artifactItems>
173                 <!-- Needs to be copied to lib/boot in order have it accessible to Main class -->
174                 <artifactItem>
175                     <groupId>org.bouncycastle</groupId>
176                     <artifactId>bcprov-ext-jdk15on</artifactId>
177                     <version>${bouncycastle.version}</version>
178                     <outputDirectory>target/classes/lib/boot</outputDirectory>
179                     <destFileName>bcprov-ext-jdk15on-${bouncycastle.version}.jar</destFileName>
180                 </artifactItem>
181                 <artifactItem>
182                     <groupId>org.bouncycastle</groupId>
183                     <artifactId>bcpkix-jdk15on</artifactId>
184                     <version>${bouncycastle.version}</version>
185                     <outputDirectory>target/classes/lib/boot</outputDirectory>
186                     <destFileName>bcpkix-jdk15on-${bouncycastle.version}.jar</destFileName>
187                 </artifactItem>
188               </artifactItems>
189               <silent>true</silent>
190             </configuration>
191           </execution>
192         </executions>
193       </plugin>
194       <plugin>
195         <groupId>org.codehaus.mojo</groupId>
196         <artifactId>build-helper-maven-plugin</artifactId>
197         <executions>
198           <execution>
199             <id>attach-artifacts</id>
200             <goals>
201               <goal>attach-artifact</goal>
202             </goals>
203             <phase>package</phase>
204             <configuration>
205               <artifacts>
206                 <artifact>
207                   <file>src/main/assembly/etc/org.ops4j.pax.url.mvn.cfg</file>
208                   <type>properties</type>
209                   <classifier>config</classifier>
210                 </artifact>
211               </artifacts>
212             </configuration>
213           </execution>
214         </executions>
215       </plugin>
216       <plugin>
217         <!-- We do this here only so that we can patch a few files,
218              but we then "throw away" (do not package) most of it,
219              as the karaf4-parent will do this again                -->
220         <groupId>org.apache.karaf.tooling</groupId>
221         <artifactId>karaf-maven-plugin</artifactId>
222         <version>${karaf.version}</version>
223         <executions>
224           <execution>
225             <id>process-resources</id>
226             <phase>process-resources</phase>
227             <goals>
228               <goal>assembly</goal>
229             </goals>
230           </execution>
231       </executions>
232       </plugin>
233       <!-- This needs to execute before patching, otherwise the feature will be left unpatched -->
234       <plugin>
235         <groupId>org.opendaylight.odlparent</groupId>
236         <artifactId>karaf-plugin</artifactId>
237         <version>9.0.3-SNAPSHOT</version>
238         <executions>
239           <execution>
240             <id>populate-local-repo</id>
241             <phase>prepare-package</phase>
242             <goals>
243               <goal>populate-local-repo</goal>
244             </goals>
245             <configuration>
246               <localRepo>${project.build.directory}/assembly/system</localRepo>
247             </configuration>
248           </execution>
249         </executions>
250       </plugin>
251     </plugins>
252   </build>
253 </project>