Clement Escoffier | 317d2dc | 2009-06-30 07:47:47 +0000 | [diff] [blame] | 1 | <!-- |
Clement Escoffier | c20221f | 2009-07-07 07:22:28 +0000 | [diff] [blame^] | 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 |
Clement Escoffier | 317d2dc | 2009-06-30 07:47:47 +0000 | [diff] [blame] | 9 | |
Clement Escoffier | c20221f | 2009-07-07 07:22:28 +0000 | [diff] [blame^] | 10 | http://www.apache.org/licenses/LICENSE-2.0 |
Clement Escoffier | 317d2dc | 2009-06-30 07:47:47 +0000 | [diff] [blame] | 11 | |
Clement Escoffier | c20221f | 2009-07-07 07:22:28 +0000 | [diff] [blame^] | 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. |
Clement Escoffier | 317d2dc | 2009-06-30 07:47:47 +0000 | [diff] [blame] | 18 | --> |
| 19 | <project> |
Clement Escoffier | c20221f | 2009-07-07 07:22:28 +0000 | [diff] [blame^] | 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | <packaging>bundle</packaging> |
| 22 | <groupId>org.apache.felix</groupId> |
| 23 | <artifactId>org.apache.felix.ipojo.webconsole</artifactId> |
| 24 | <version>1.3.0-SNAPSHOT</version> |
| 25 | <name>Apche Felix iPOJO WebConsole Plugins</name> |
Clement Escoffier | 317d2dc | 2009-06-30 07:47:47 +0000 | [diff] [blame] | 26 | |
Clement Escoffier | c20221f | 2009-07-07 07:22:28 +0000 | [diff] [blame^] | 27 | <build> |
| 28 | <plugins> |
| 29 | <plugin> |
| 30 | <groupId>org.apache.maven.plugins</groupId> |
| 31 | <artifactId>maven-compiler-plugin</artifactId> |
| 32 | <configuration> |
| 33 | <source>1.5</source> |
| 34 | <target>1.5</target> |
| 35 | </configuration> |
| 36 | </plugin> |
| 37 | <plugin> |
| 38 | <groupId>org.apache.felix</groupId> |
| 39 | <artifactId>maven-bundle-plugin</artifactId> |
| 40 | <version>1.4.3</version> |
| 41 | <extensions>true</extensions> |
| 42 | <configuration> |
| 43 | <instructions> |
| 44 | <Bundle-SymbolicName>${pom.artifactId} |
| 45 | </Bundle-SymbolicName> |
| 46 | <Private-Package> |
| 47 | org.apache.felix.org.apache.felix.ipojo.webconsole |
| 48 | </Private-Package> |
| 49 | <Import-Package>*</Import-Package> |
| 50 | </instructions> |
| 51 | </configuration> |
| 52 | </plugin> |
| 53 | <plugin> |
| 54 | <groupId>org.apache.felix</groupId> |
| 55 | <artifactId>maven-ipojo-plugin</artifactId> |
| 56 | <executions> |
| 57 | <execution> |
| 58 | <goals> |
| 59 | <goal>ipojo-bundle</goal> |
| 60 | </goals> |
| 61 | </execution> |
| 62 | </executions> |
| 63 | </plugin> |
| 64 | <plugin> |
| 65 | <groupId>org.codehaus.mojo</groupId> |
| 66 | <artifactId>rat-maven-plugin</artifactId> |
| 67 | <configuration> |
| 68 | <excludeSubProjects>false</excludeSubProjects> |
| 69 | <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes> |
| 70 | <useMavenDefaultExcludes>true</useMavenDefaultExcludes> |
| 71 | <excludes> |
| 72 | <param>doc/*</param> |
| 73 | <param>maven-eclipse.xml</param> |
| 74 | <param>.checkstyle</param> |
| 75 | <param>.externalToolBuilders/*</param> |
| 76 | <param>LICENSE.asm</param> |
| 77 | </excludes> |
| 78 | </configuration> |
| 79 | </plugin> |
| 80 | <plugin> |
| 81 | <groupId>org.apache.maven.plugins</groupId> |
| 82 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 83 | <configuration> |
| 84 | <enableRulesSummary>false</enableRulesSummary> |
| 85 | <violationSeverity>warning</violationSeverity> |
| 86 | <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation> |
| 87 | </configuration> |
| 88 | </plugin> |
| 89 | </plugins> |
| 90 | </build> |
| 91 | <dependencies> |
| 92 | <dependency> |
| 93 | <groupId>org.apache.felix</groupId> |
| 94 | <artifactId>org.apache.felix.webconsole</artifactId> |
| 95 | <version>1.2.11-SNAPSHOT</version> |
| 96 | </dependency> |
| 97 | <dependency> |
| 98 | <groupId>org.apache.felix</groupId> |
| 99 | <artifactId>org.apache.felix.ipojo</artifactId> |
| 100 | <version>${pom.version}</version> |
| 101 | </dependency> |
| 102 | <dependency> |
| 103 | <groupId>org.apache.felix</groupId> |
| 104 | <artifactId>org.apache.felix.ipojo.annotations</artifactId> |
| 105 | <version>${pom.version}</version> |
| 106 | </dependency> |
| 107 | </dependencies> |
Clement Escoffier | 317d2dc | 2009-06-30 07:47:47 +0000 | [diff] [blame] | 108 | </project> |