[Ipojo-toolbox-commits] SF.net SVN: ipojo-toolbox:[62] trunk
Brought to you by:
bourretp
|
From: <bou...@us...> - 2009-04-15 07:36:25
|
Revision: 62
http://ipojo-toolbox.svn.sourceforge.net/ipojo-toolbox/?rev=62&view=rev
Author: bourretp
Date: 2009-04-15 07:36:23 +0000 (Wed, 15 Apr 2009)
Log Message:
-----------
* Modified equinox arch command pom to use iPOJO 1.2.0.
Modified Paths:
--------------
trunk/runtime/felix/pom.xml
trunk/utils/arch-equinox/pom.xml
Property Changed:
----------------
trunk/utils/arch-equinox/
Modified: trunk/runtime/felix/pom.xml
===================================================================
--- trunk/runtime/felix/pom.xml 2009-04-10 02:26:40 UTC (rev 61)
+++ trunk/runtime/felix/pom.xml 2009-04-15 07:36:23 UTC (rev 62)
@@ -35,7 +35,7 @@
<packaging>pom</packaging>
<!-- Project's informations -->
- <name>iPOJO-Toolbox : Felix runtime environment pack</name>
+ <name>iPOJO Toolbox : Felix runtime environment pack</name>
<description>Collection of Apache Felix and iPOJO bundles, grouped in a single archive, that provides a basic environment to run and manage iPOJO components.</description>
<url>http://ipojo-toolbox.wiki.sourceforge.net/iPOJO-runtime</url>
<inceptionYear>2009</inceptionYear>
Property changes on: trunk/utils/arch-equinox
___________________________________________________________________
Added: svn:ignore
+ target
Modified: trunk/utils/arch-equinox/pom.xml
===================================================================
--- trunk/utils/arch-equinox/pom.xml 2009-04-10 02:26:40 UTC (rev 61)
+++ trunk/utils/arch-equinox/pom.xml 2009-04-15 07:36:23 UTC (rev 62)
@@ -1,3 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
@@ -17,67 +18,83 @@
under the License.
-->
<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">
+ <modelVersion>4.0.0</modelVersion>
+
+ <!-- Project parent -->
<parent>
- <groupId>org.apache.felix</groupId>
- <artifactId>felix</artifactId>
- <version>1.0.2</version>
+ <groupId>net.sourceforge.ipojo-toolbox</groupId>
+ <artifactId>ipojo-toolbox</artifactId>
+ <version>1.0.1-SNAPSHOT</version>
<relativePath>../../pom/pom.xml</relativePath>
</parent>
- <modelVersion>4.0.0</modelVersion>
+
+ <!-- Project coordinates -->
+ <groupId>net.sourceforge.ipojo-toolbox</groupId>
+ <artifactId>equinox-arch-command</artifactId>
+ <version>0.9.0-SNAPSHOT</version>
<packaging>bundle</packaging>
- <name>Apache iPOJO Arch Command for Eclipse Equinox</name>
- <artifactId>org.apache.felix.ipojo.arch.equinox</artifactId>
- <groupId>org.apache.felix</groupId>
- <version>0.9.0-SNAPSHOT</version>
+
+ <!-- Project's informations -->
+ <name>iPOJO Toolbox : iPOJO Arch command for Equinox</name>
+ <description>The Equinox version of the Apache Felix iPOJO Arch command.</description>
+ <url>http://ipojo-toolbox.wiki.sourceforge.net/Equinox</url>
+ <inceptionYear>2009</inceptionYear>
+
+ <!-- Give access to Eclipse artifacts -->
+ <repositories>
+ <repository>
+ <id>eclipse</id>
+ <url>http://repo1.maven.org/eclipse</url>
+ </repository>
+ </repositories>
+
+ <!-- Project dependencies -->
<dependencies>
+
+ <!-- iPOJO bundles -->
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.ipojo</artifactId>
- <version>0.9.0-SNAPSHOT</version>
+ <version>1.2.0</version>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.ipojo.metadata</artifactId>
- <version>0.9.0-SNAPSHOT</version>
+ <version>1.2.0</version>
</dependency>
+
+ <!-- Equinox -->
<dependency>
<groupId>org.eclipse.osgi</groupId>
<artifactId>org.eclipse.osgi</artifactId>
<version>3.2.1</version>
</dependency>
</dependencies>
+
+ <!-- Build configuration -->
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
- <version>1.4.0</version>
+ <!-- TODO : add plugin management section to avoid to specify plugin version here. -->
+ <version>2.0.0</version>
<extensions>true</extensions>
<configuration>
<instructions>
- <Bundle-Name>
- iPOJO Arch Equinox Command
- </Bundle-Name>
- <Bundle-SymbolicName>
- ${pom.artifactId}
- </Bundle-SymbolicName>
- <Bundle-Vendor>
- The Apache Software Foundation
- </Bundle-Vendor>
- <Private-Package>
- org.apache.felix.ipojo.arch.equinox
- </Private-Package>
- <Include-Resource>
- META-INF/LICENCE=LICENSE,
- META-INF/NOTICE=NOTICE
- </Include-Resource>
+ <Bundle-Name>iPOJO Arch Equinox Command</Bundle-Name>
+ <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
+ <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
+ <Private-Package>org.apache.felix.ipojo.arch.equinox</Private-Package>
+ <Include-Resource>META-INF/LICENCE=LICENSE, META-INF/NOTICE=NOTICE</Include-Resource>
</instructions>
</configuration>
</plugin>
+
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-ipojo-plugin</artifactId>
- <version>0.9.0-SNAPSHOT</version>
+ <version>1.2.0</version>
<executions>
<execution>
<goals>
@@ -91,12 +108,4 @@
</plugin>
</plugins>
</build>
- <repositories>
- <!-- Give access to Eclipse artifacts -->
- <repository>
- <id>eclipse</id>
- <url>http://repo1.maven.org/eclipse</url>
- </repository>
- </repositories>
-
</project>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|