blob: c06489c9a6433637006db9820fade3f37bb92e60 [file] [log] [blame]
Guillaume Nodet51827912010-03-18 08:40:37 +00001<!--
2 Licensed to the Apache Software Foundation (ASF) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The ASF licenses this file
6 to you under the Apache License, Version 2.0 (the
7 "License"); you may not use this file except in compliance
8 with the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing,
13 software distributed under the License is distributed on an
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 KIND, either express or implied. See the License for the
16 specific language governing permissions and limitations
17 under the License.
18-->
19<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/maven-v4_0_0.xsd">
20 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix-parent</artifactId>
Guillaume Nodet6ca83ac2012-02-14 14:20:50 +000023 <version>2.1</version>
Guillaume Nodet51827912010-03-18 08:40:37 +000024 </parent>
25
26 <modelVersion>4.0.0</modelVersion>
Guillaume Nodet51827912010-03-18 08:40:37 +000027 <name>Apache Felix Utils</name>
28 <description>Utility classes for OSGi.</description>
Guillaume Nodet537efeb2014-02-26 11:01:20 +000029 <version>1.6.1-SNAPSHOT</version>
Guillaume Nodet51827912010-03-18 08:40:37 +000030 <artifactId>org.apache.felix.utils</artifactId>
Guillaume Nodetc4399d02012-06-12 06:54:34 +000031 <scm>
Guillaume Nodet537efeb2014-02-26 11:01:20 +000032 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/utils</connection>
33 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/utils</developerConnection>
34 <url>http://svn.apache.org/repos/asf/felix/utils</url>
Guillaume Nodetc4399d02012-06-12 06:54:34 +000035 </scm>
Guillaume Nodet51827912010-03-18 08:40:37 +000036 <dependencies>
37 <dependency>
38 <groupId>org.osgi</groupId>
39 <artifactId>org.osgi.core</artifactId>
40 <version>4.1.0</version>
41 </dependency>
42 <dependency>
43 <groupId>org.osgi</groupId>
44 <artifactId>org.osgi.compendium</artifactId>
Guillaume Nodet8b16ebb2013-03-26 09:08:27 +000045 <version>4.2.0</version>
Guillaume Nodet51827912010-03-18 08:40:37 +000046 </dependency>
47 </dependencies>
48 <build>
49 <plugins>
50 <plugin>
Guillaume Nodet79a6ec12013-12-05 23:11:27 +000051 <groupId>org.apache.maven.plugins</groupId>
52 <artifactId>maven-source-plugin</artifactId>
53 <version>2.2.1</version>
54 <executions>
55 <execution>
56 <id>attach-sources</id>
57 <phase>prepare-package</phase>
58 <goals>
59 <goal>jar-no-fork</goal>
60 </goals>
61 </execution>
62 </executions>
63 </plugin>
64 <plugin>
Guillaume Nodet51827912010-03-18 08:40:37 +000065 <artifactId>maven-compiler-plugin</artifactId>
66 <configuration>
Guillaume Nodet3d144cd2010-10-25 20:19:04 +000067 <source>1.5</source>
Guillaume Nodet47db7052014-02-21 15:10:25 +000068 <target>1.5</target>
Guillaume Nodet51827912010-03-18 08:40:37 +000069 </configuration>
70 </plugin>
Guillaume Nodet51827912010-03-18 08:40:37 +000071 <plugin>
72 <groupId>org.codehaus.mojo</groupId>
73 <artifactId>rat-maven-plugin</artifactId>
74 <configuration>
75 <excludeSubProjects>false</excludeSubProjects>
76 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
77 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
78 <excludes>
79 <param>doc/*</param>
80 <param>maven-eclipse.xml</param>
81 <param>.checkstyle</param>
82 <param>.externalToolBuilders/*</param>
83 </excludes>
84 </configuration>
85 </plugin>
86 </plugins>
87 </build>
Guillaume Nodet51827912010-03-18 08:40:37 +000088</project>