blob: 9dbc71efe7ef50fbd3d76d81d4a3df996f6ef377 [file] [log] [blame]
Clement Escoffiera3bf81a2008-10-14 11:13:50 +00001<!--
Clement Escoffier0630c6b2009-07-19 16:25:18 +00002 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
Clement Escoffier035daba2009-06-21 12:25:22 +00009
Clement Escoffier0630c6b2009-07-19 16:25:18 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffier035daba2009-06-21 12:25:22 +000011
Clement Escoffier0630c6b2009-07-19 16:25:18 +000012 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.
Clement Escoffiera3bf81a2008-10-14 11:13:50 +000018-->
Clement Escoffierc59f6c62009-01-19 14:25:57 +000019<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">
Clement Escoffier0630c6b2009-07-19 16:25:18 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix-parent</artifactId>
Clement Escoffier5ab0b442010-04-16 13:54:16 +000023 <version>1.2.1</version>
Clement Escoffier9944de22012-04-15 19:14:20 +000024 <relativePath>../../../pom/pom.xml</relativePath>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000025 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
28 <groupId>org.apache.felix</groupId>
Clement Escoffier7dfce0f2012-04-21 16:06:42 +000029 <version>1.9.0-SNAPSHOT</version>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000030 <packaging>bundle</packaging>
31 <name>Apache Felix iPOJO Annotations</name>
Clement Escoffier8563afc2010-08-29 09:05:18 +000032
Clement Escoffier0630c6b2009-07-19 16:25:18 +000033 <description>
Clement Escoffierfc2b6dd2009-09-04 05:56:14 +000034 iPOJO Annotation pack. contained annotations are used to define iPOJO component type.
Clement Escoffier0630c6b2009-07-19 16:25:18 +000035 </description>
36 <url>
37 http://felix.apache.org/site/how-to-use-ipojo-annotations.html
38 </url>
Clement Escoffier8563afc2010-08-29 09:05:18 +000039
40
Clement Escoffier0630c6b2009-07-19 16:25:18 +000041 <build>
42 <plugins>
43 <plugin>
44 <groupId>org.apache.maven.plugins</groupId>
45 <artifactId>maven-compiler-plugin</artifactId>
46 <configuration>
47 <source>1.5</source>
48 <target>1.5</target>
49 </configuration>
50 </plugin>
51 <plugin>
52 <groupId>org.apache.felix</groupId>
53 <artifactId>maven-bundle-plugin</artifactId>
54 <version>1.4.3</version>
55 <extensions>true</extensions>
56 <configuration>
57 <instructions>
Clement Escoffierfc2b6dd2009-09-04 05:56:14 +000058 <Bundle-Name>Apache Felix iPOJO Annotations</Bundle-Name>
Clement Escoffierfe606902010-05-01 10:46:02 +000059 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000060 <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor>
61 <Bundle-Description> iPOJO Annotations </Bundle-Description>
62 <Bundle-DocURL>http://felix.apache.org/site/how-to-use-ipojo-annotations.html</Bundle-DocURL>
63 <Export-Package> org.apache.felix.ipojo.annotations,
64 org.apache.felix.ipojo.handler.temporal,
65 org.apache.felix.ipojo.handlers.jmx,
66 org.apache.felix.ipojo.extender,
67 org.apache.felix.ipojo.whiteboard,
68 org.apache.felix.ipojo.handlers.event,
69 org.apache.felix.ipojo.transaction
70 </Export-Package>
Clement Escoffier8563afc2010-08-29 09:05:18 +000071 <Include-Resource>
Clement Escoffierdd7c1152010-07-14 18:31:13 +000072 META-INF/LICENSE=LICENSE,
73 META-INF/NOTICE=NOTICE,
74 META-INF/DEPENDENCIES=DEPENDENCIES
75 </Include-Resource>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000076 </instructions>
77 <obrRepository>NONE</obrRepository>
78 </configuration>
79 </plugin>
80 <plugin>
81 <groupId>org.codehaus.mojo</groupId>
82 <artifactId>rat-maven-plugin</artifactId>
83 <configuration>
84 <excludeSubProjects>false</excludeSubProjects>
85 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
86 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
87 <excludes>
88 <param>doc/**/*</param>
89 <param>maven-eclipse.xml</param>
90 <param>.checkstyle</param>
91 <param>.externalToolBuilders/*</param>
92 <param>LICENSE.asm</param>
Clement Escoffier8563afc2010-08-29 09:05:18 +000093 <param>DEPENDENCIES</param>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000094 </excludes>
95 </configuration>
96 </plugin>
97 <plugin>
98 <groupId>org.apache.maven.plugins</groupId>
99 <artifactId>maven-checkstyle-plugin</artifactId>
100 <configuration>
101 <skip>true</skip>
102 </configuration>
103 </plugin>
104 </plugins>
Clement Escoffier8563afc2010-08-29 09:05:18 +0000105
106 <resources>
107 <resource>
108 <directory>src/main/resources</directory>
109 </resource>
110 <resource>
111 <directory>.</directory>
112 <targetPath>META-INF</targetPath>
113 <includes>
114 <include>LICENSE*</include>
115 <include>NOTICE*</include>
116 <include>DEPENDENCIES*</include>
117 </includes>
118 </resource>
119 </resources>
120
Clement Escoffier0630c6b2009-07-19 16:25:18 +0000121 </build>
122</project>