blob: 31e888669e815e31191002cf5060019c4764f3c7 [file] [log] [blame]
Carsten Ziegeler46892482007-12-28 15:44:49 +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-->
Carsten Ziegelerbdf1a002007-12-28 15:31:02 +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/maven-v4_0_0.xsd">
Felix Meschbergerc8fed482011-02-04 23:09:15 +000020 <modelVersion>4.0.0</modelVersion>
Michael E. Rodriguez406386d2007-03-20 02:56:45 +000021
Felix Meschbergerc8fed482011-02-04 23:09:15 +000022 <parent>
23 <groupId>org.apache</groupId>
24 <artifactId>apache</artifactId>
Felix Meschberger3609a582011-02-04 23:09:51 +000025 <version>8</version>
Felix Meschbergerc8fed482011-02-04 23:09:15 +000026 </parent>
Michael E. Rodriguez406386d2007-03-20 02:56:45 +000027
Felix Meschbergerc8fed482011-02-04 23:09:15 +000028 <groupId>org.apache.felix</groupId>
29 <artifactId>felix-parent</artifactId>
30 <packaging>pom</packaging>
31 <name>Apache Felix</name>
32 <version>2-SNAPSHOT</version>
33 <url>http://felix.apache.org/</url>
34 <inceptionYear>2006</inceptionYear>
35 <description>Apache Felix is an OSGi implementation.</description>
Marcel Offermans0ed87292006-08-17 19:10:30 +000036
Felix Meschbergerc8fed482011-02-04 23:09:15 +000037 <issueManagement>
38 <system>Jira</system>
39 <url>http://issues.apache.org/jira/browse/FELIX</url>
40 </issueManagement>
Marcel Offermans0ed87292006-08-17 19:10:30 +000041
Felix Meschbergerc8fed482011-02-04 23:09:15 +000042 <mailingLists>
43 <mailingList>
44 <name>Felix Dev</name>
45 <subscribe>dev-subscribe@felix.apache.org</subscribe>
46 <unsubscribe>dev-unsubscribe@felix.apache.org</unsubscribe>
47 <post>-</post>
48 <archive>http://www.mail-archive.com/dev%40felix.apache.org/</archive>
49 </mailingList>
50 <mailingList>
51 <name>Felix Commits</name>
52 <subscribe>commits-subscribe@felix.apache.org</subscribe>
53 <unsubscribe>commits-unsubscribe@felix.apache.org</unsubscribe>
54 <post>-</post>
55 <archive>http://www.mail-archive.com/commits%40felix.apache.org/</archive>
56 </mailingList>
57 </mailingLists>
Marcel Offermans0ed87292006-08-17 19:10:30 +000058
Felix Meschbergerc8fed482011-02-04 23:09:15 +000059 <scm>
60 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk</connection>
61 <developerConnection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk</developerConnection>
62 <url>http://svn.apache.org/viewvc/felix/trunk/?root=Apache-SVN</url>
63 </scm>
Karl Paulsd69e8af2006-08-12 09:51:20 +000064
Felix Meschbergerc8fed482011-02-04 23:09:15 +000065 <distributionManagement>
66 <site>
67 <id>felix website</id>
68 <url>file:///${user.dir}/target/site-deployed/</url>
69 </site>
70 </distributionManagement>
71
72 <pluginRepositories>
73 <pluginRepository>
74 <id>apache.snapshots</id>
75 <name>snapshot plugins</name>
76 <url>http://repository.apache.org/snapshots</url>
77 <releases>
78 <enabled>false</enabled>
79 </releases>
80 <snapshots>
81 <enabled>true</enabled>
82 </snapshots>
83 </pluginRepository>
84 </pluginRepositories>
85
86 <!-- definitions for testing -->
87 <dependencies>
88 <dependency>
89 <groupId>junit</groupId>
90 <artifactId>junit</artifactId>
91 <version>4.0</version>
92 <scope>test</scope>
93 </dependency>
94 <dependency>
95 <groupId>org.easymock</groupId>
96 <artifactId>easymock</artifactId>
97 <version>2.4</version>
98 <scope>test</scope>
99 </dependency>
100 <dependency>
101 <groupId>org.mockito</groupId>
102 <artifactId>mockito-all</artifactId>
103 <version>1.7</version>
104 <scope>test</scope>
105 </dependency>
106 </dependencies>
107 <build>
108 <pluginManagement>
109 <plugins>
110 <plugin>
111 <groupId>org.apache.maven.plugins</groupId>
112 <artifactId>maven-project-info-reports-plugin</artifactId>
113 <version>2.1</version>
114 </plugin>
115 <plugin>
116 <groupId>org.apache.maven.plugins</groupId>
117 <artifactId>maven-jxr-plugin</artifactId>
118 <version>2.1</version>
119 </plugin>
120 <plugin>
121 <groupId>org.apache.maven.plugins</groupId>
122 <artifactId>maven-surefire-report-plugin</artifactId>
123 <version>2.4.3</version>
124 </plugin>
125 <plugin>
126 <groupId>org.codehaus.mojo</groupId>
127 <artifactId>ianal-maven-plugin</artifactId>
128 <version>1.0-alpha-1</version>
129 </plugin>
130 <plugin>
131 <groupId>org.apache.rat</groupId>
132 <artifactId>apache-rat-plugin</artifactId>
133 <version>0.7</version>
134 </plugin>
135 </plugins>
136 </pluginManagement>
Carsten Ziegeler00eaded2007-12-14 17:22:20 +0000137 <plugins>
Felix Meschbergerc8fed482011-02-04 23:09:15 +0000138 <plugin>
139 <groupId>org.apache.maven.plugins</groupId>
140 <artifactId>maven-compiler-plugin</artifactId>
Stuart McCulloch133524b2009-04-20 19:08:02 +0000141 <configuration>
Felix Meschbergerc8fed482011-02-04 23:09:15 +0000142 <source>1.3</source>
143 <target>1.3</target>
Stuart McCulloch133524b2009-04-20 19:08:02 +0000144 </configuration>
Felix Meschbergerc8fed482011-02-04 23:09:15 +0000145 </plugin>
146 <plugin>
147 <groupId>org.apache.rat</groupId>
148 <artifactId>apache-rat-plugin</artifactId>
149 <executions>
150 <execution>
151 <phase>verify</phase>
152 <goals>
153 <goal>check</goal>
154 </goals>
155 </execution>
156 </executions>
Stuart McCullochf71c1ba2009-04-21 06:51:00 +0000157 <configuration>
Felix Meschbergerc8fed482011-02-04 23:09:15 +0000158 <!-- check src only (except remote resources additions) -->
159 <includes>
160 <include>src/**</include>
161 </includes>
162 <excludes>
163 <exclude>src/main/appended-resources/**</exclude>
164 </excludes>
Stuart McCullochf71c1ba2009-04-21 06:51:00 +0000165 </configuration>
Felix Meschbergerc8fed482011-02-04 23:09:15 +0000166 </plugin>
167 <plugin>
168 <groupId>org.codehaus.mojo</groupId>
169 <artifactId>ianal-maven-plugin</artifactId>
170 <executions>
171 <execution>
172 <goals>
173 <goal>verify-legal-files</goal>
174 </goals>
175 <configuration>
176 <strict>true</strict>
177 </configuration>
178 </execution>
179 </executions>
180 </plugin>
Carsten Ziegeler00eaded2007-12-14 17:22:20 +0000181 </plugins>
Felix Meschbergerc8fed482011-02-04 23:09:15 +0000182 <resources>
183 <resource>
184 <directory>src/main/resources</directory>
185 </resource>
186 <resource>
187 <directory>.</directory>
188 <targetPath>META-INF</targetPath>
189 <includes>
190 <include>changelog.txt</include>
191 </includes>
192 </resource>
193 </resources>
Clement Escoffierd7ab9592011-02-05 14:27:25 +0000194 <extensions>
195 <extension>
196 <groupId>org.apache.maven.wagon</groupId>
197 <artifactId>wagon-ssh</artifactId>
198 <version>1.0-beta-6</version>
199 </extension>
200 </extensions>
Felix Meschbergerc8fed482011-02-04 23:09:15 +0000201 </build>
202 <reporting>
203 <plugins>
204 <plugin>
205 <groupId>org.apache.maven.plugins</groupId>
206 <artifactId>maven-site-plugin</artifactId>
207 <configuration>
208 <templateDirectory>${user.dir}/src/site/</templateDirectory>
209 <template>maven-site.vm</template>
210 </configuration>
211 </plugin>
212 <plugin>
213 <groupId>org.apache.maven.plugins</groupId>
214 <artifactId>maven-surefire-report-plugin</artifactId>
215 </plugin>
216 <plugin>
217 <groupId>org.apache.maven.plugins</groupId>
218 <artifactId>maven-jxr-plugin</artifactId>
219 </plugin>
220 <plugin>
221 <groupId>org.apache.maven.plugins</groupId>
222 <artifactId>maven-project-info-reports-plugin</artifactId>
223 <reportSets>
224 <reportSet>
225 <reports>
226 <report>index</report>
227 <report>dependencies</report>
228 <report>project-team</report>
229 <report>mailing-list</report>
230 <report>issue-tracking</report>
231 <report>license</report>
232 <report>scm</report>
233 </reports>
234 </reportSet>
235 </reportSets>
236 </plugin>
237 </plugins>
238 </reporting>
Stuart McCulloch756832e2008-02-10 17:37:50 +0000239</project>