Modified: felix/sandbox/clement/ipojo/white.board.pattern.handler/pom.xml URL: http://svn.apache.org/viewvc/felix/sandbox/clement/ipojo/white.board.pattern.handler/pom.xml?rev=614707&r1=614706&r2=614707&view=diff ============================================================================== --- felix/sandbox/clement/ipojo/white.board.pattern.handler/pom.xml (original) +++ felix/sandbox/clement/ipojo/white.board.pattern.handler/pom.xml Wed Jan 23 14:18:11 2008 @@ -1,74 +1,86 @@ <project> - <modelVersion>4.0.0</modelVersion> - <packaging>bundle</packaging> - <name>Apache Felix iPOJO White Board Pattern Handler</name> - <groupId>org.apache.felix</groupId> - <version>0.7.6-SNAPSHOT</version> - <artifactId>org.apache.felix.ipojo.handler.white.board.pattern</artifactId> - - <dependencies> - <dependency> - <groupId>org.apache.felix</groupId> - <artifactId>org.apache.felix.ipojo</artifactId> - <version>0.7.6-SNAPSHOT</version> - </dependency> - <dependency> - <groupId>org.apache.felix</groupId> - <artifactId>org.apache.felix.ipojo.metadata</artifactId> - <version>0.7.6-SNAPSHOT</version> - </dependency> - <dependency> - <groupId>org.apache.felix</groupId> - <artifactId>org.osgi.core</artifactId> - <version>1.1.0-SNAPSHOT</version> - </dependency> - <dependency> - <groupId>org.apache.felix</groupId> - <artifactId>org.osgi.compendium</artifactId> - <version>0.9.0-SNAPSHOT</version> - </dependency> - </dependencies> - - <build> - <plugins> - <plugin> - <groupId>org.apache.felix</groupId> - <artifactId>maven-bundle-plugin</artifactId> - <extensions>true</extensions> - <configuration> - <instructions> - <Private-Package>org.apache.felix.ipojo.handler.wbp</Private-Package> - <Bundle-Name>${pom.name}</Bundle-Name> - <Bundle-SymbolicName>ipojo.event.admin.handler.wbp</Bundle-SymbolicName> - </instructions> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.felix</groupId> - <artifactId>maven-ipojo-plugin</artifactId> - <version>${pom.version}</version> - <executions> - <execution> - <goals> - <goal>ipojo-bundle</goal> - </goals> - <configuration> - <metadata>metadata.xml</metadata> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> - <reporting> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-checkstyle-plugin</artifactId> - <configuration> - <configLocation>http://people.apache.org/~clement/styles/checkstyle_ipojo.xml</configLocation> - </configuration> - </plugin> - </plugins> - </reporting> + <parent> + <artifactId>iPOJO</artifactId> + <groupId>org.apache.felix</groupId> + <version>0.7.6-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> + </parent> + <modelVersion>4.0.0</modelVersion> + <packaging>bundle</packaging> + <name>Apache Felix iPOJO White Board Pattern Handler</name> + <artifactId> + org.apache.felix.ipojo.handler.white.board.pattern + </artifactId> + + <dependencies> + <dependency> + <groupId>org.apache.felix</groupId> + <artifactId>org.apache.felix.ipojo</artifactId> + <version>${pom.version}</version> + </dependency> + <dependency> + <groupId>org.apache.felix</groupId> + <artifactId>org.apache.felix.ipojo.metadata</artifactId> + <version>${pom.version}</version> + </dependency> + <dependency> + <groupId>org.apache.felix</groupId> + <artifactId>org.osgi.core</artifactId> + <version>1.0.0</version> + </dependency> + <dependency> + <groupId>org.apache.felix</groupId> + <artifactId>org.osgi.compendium</artifactId> + <version>0.9.0-SNAPSHOT</version> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + <extensions>true</extensions> + <configuration> + <instructions> + <Private-Package> + org.apache.felix.ipojo.handler.wbp + </Private-Package> + <Bundle-Name>${pom.name}</Bundle-Name> + <Bundle-SymbolicName> + ipojo.event.admin.handler.wbp + </Bundle-SymbolicName> + </instructions> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.felix</groupId> + <artifactId>maven-ipojo-plugin</artifactId> + <version>${pom.version}</version> + <executions> + <execution> + <goals> + <goal>ipojo-bundle</goal> + </goals> + <configuration> + <metadata>metadata.xml</metadata> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + <reporting> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + <configuration> + <configLocation> + http://people.apache.org/~clement/styles/checkstyle_ipojo.xml + </configLocation> + </configuration> + </plugin> + </plugins> + </reporting> </project>
