Guillaume Nodet | 5182791 | 2010-03-18 08:40:37 +0000 | [diff] [blame] | 1 | <!-- |
| 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> |
| 23 | <version>1.2.0</version> |
| 24 | </parent> |
| 25 | |
| 26 | <modelVersion>4.0.0</modelVersion> |
Guillaume Nodet | 5182791 | 2010-03-18 08:40:37 +0000 | [diff] [blame] | 27 | <name>Apache Felix Utils</name> |
| 28 | <description>Utility classes for OSGi.</description> |
Felix Meschberger | 15d5153 | 2010-03-26 12:28:16 +0000 | [diff] [blame] | 29 | <version>1.0.1-SNAPSHOT</version> |
Guillaume Nodet | 5182791 | 2010-03-18 08:40:37 +0000 | [diff] [blame] | 30 | <artifactId>org.apache.felix.utils</artifactId> |
| 31 | <dependencies> |
| 32 | <dependency> |
| 33 | <groupId>org.osgi</groupId> |
| 34 | <artifactId>org.osgi.core</artifactId> |
| 35 | <version>4.1.0</version> |
| 36 | </dependency> |
| 37 | <dependency> |
| 38 | <groupId>org.osgi</groupId> |
| 39 | <artifactId>org.osgi.compendium</artifactId> |
| 40 | <version>4.1.0</version> |
| 41 | </dependency> |
| 42 | </dependencies> |
| 43 | <build> |
| 44 | <plugins> |
| 45 | <plugin> |
| 46 | <artifactId>maven-compiler-plugin</artifactId> |
| 47 | <configuration> |
| 48 | <source>1.4</source> |
| 49 | <target>1.4</target> |
| 50 | </configuration> |
| 51 | </plugin> |
Guillaume Nodet | 5182791 | 2010-03-18 08:40:37 +0000 | [diff] [blame] | 52 | <plugin> |
| 53 | <groupId>org.codehaus.mojo</groupId> |
| 54 | <artifactId>rat-maven-plugin</artifactId> |
| 55 | <configuration> |
| 56 | <excludeSubProjects>false</excludeSubProjects> |
| 57 | <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes> |
| 58 | <useMavenDefaultExcludes>true</useMavenDefaultExcludes> |
| 59 | <excludes> |
| 60 | <param>doc/*</param> |
| 61 | <param>maven-eclipse.xml</param> |
| 62 | <param>.checkstyle</param> |
| 63 | <param>.externalToolBuilders/*</param> |
| 64 | </excludes> |
| 65 | </configuration> |
| 66 | </plugin> |
| 67 | </plugins> |
| 68 | </build> |
Guillaume Nodet | 5182791 | 2010-03-18 08:40:37 +0000 | [diff] [blame] | 69 | </project> |