Author: fchrist
Date: Fri Jun  1 12:19:24 2012
New Revision: 1345106

URL: http://svn.apache.org/viewvc?rev=1345106&view=rev
Log:
STANBOL-643 Fixed missing version in commons.jobs.api

Modified:
    incubator/stanbol/trunk/commons/jobs/api/pom.xml

Modified: incubator/stanbol/trunk/commons/jobs/api/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/stanbol/trunk/commons/jobs/api/pom.xml?rev=1345106&r1=1345105&r2=1345106&view=diff
==============================================================================
--- incubator/stanbol/trunk/commons/jobs/api/pom.xml (original)
+++ incubator/stanbol/trunk/commons/jobs/api/pom.xml Fri Jun  1 12:19:24 2012
@@ -16,89 +16,95 @@
   limitations under the License.
 -->
 <project
-       xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";
-       xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
-       <parent>
-               <artifactId>stanbol-parent</artifactId>
-               <groupId>org.apache.stanbol</groupId>
-               <version>2-incubating-SNAPSHOT</version>
-               <relativePath>../../../parent</relativePath>
-       </parent>
-       <modelVersion>4.0.0</modelVersion>
-       <artifactId>org.apache.stanbol.commons.jobs.api</artifactId>
-       <packaging>bundle</packaging>
-       <name>Apache Stanbol Commons Jobs API</name>
-
-       <description>Background jobs, API and Manager </description>
-       <build>
-               <!-- make it an OSGi bundle -->
-               <plugins>
-                       <plugin>
-                               <groupId>org.apache.felix</groupId>
-                               <artifactId>maven-scr-plugin</artifactId>
-                       </plugin>
-                       <plugin>
-                               <groupId>org.apache.felix</groupId>
-                               <artifactId>maven-bundle-plugin</artifactId>
-                               <extensions>true</extensions>
-                               <configuration>
-                                       <instructions>
-                                               <Import-Package>
-                                               org.apache.commons.codec.*,
-                                               org.slf4j.*
-                                               </Import-Package>
-                                               <Export-Package>
-                                               
org.apache.stanbol.commons.jobs.api.*,
-                                               
org.apache.stanbol.commons.jobs.impl.*
-                                               </Export-Package>
-                                       </instructions>
-                               </configuration>
-                       </plugin>
-               </plugins>
-       </build>
-
-       <dependencies>
-
-               <!-- Diagnostic dependencies -->
-               <dependency>
-                       <groupId>org.slf4j</groupId>
-                       <artifactId>slf4j-log4j12</artifactId>
-                       <scope>runtime</scope>
-               </dependency>
-               <dependency>
-                       <groupId>log4j</groupId>
-                       <artifactId>log4j</artifactId>
-                       <scope>runtime</scope>
-               </dependency>
-
-               <!-- Dependencise for testing -->
-               <dependency>
-                       <groupId>junit</groupId>
-                       <artifactId>junit</artifactId>
-                       <scope>test</scope>
-               </dependency>
-
-               <dependency>
-                       <groupId>org.osgi</groupId>
-                       <artifactId>org.osgi.core</artifactId>
-                       <scope>provided</scope>
-               </dependency>
-               <dependency>
-                       <groupId>org.apache.felix</groupId>
-                       
<artifactId>org.apache.felix.scr.annotations</artifactId>
-                       <scope>provided</scope>
-               </dependency>
-               <dependency>
-                       <groupId>org.osgi</groupId>
-                       <artifactId>org.osgi.compendium</artifactId>
-                       <scope>provided</scope>
-               </dependency>
-
-               <!-- Stanbol dependencies -->
-               <dependency>
-                       <groupId>commons-codec</groupId>
-                       <artifactId>commons-codec</artifactId>
-                       <scope>provided</scope>
-               </dependency>
-       </dependencies>
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";
+  xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
+
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.stanbol</groupId>
+    <artifactId>stanbol-parent</artifactId>
+    <version>2-incubating-SNAPSHOT</version>
+    <relativePath>../../../parent</relativePath>
+  </parent>
+
+  <groupId>org.apache.stanbol</groupId>
+  <artifactId>org.apache.stanbol.commons.jobs.api</artifactId>
+  <version>0.10.0-incubating-SNAPSHOT</version>
+  <packaging>bundle</packaging>
+  
+  <name>Apache Stanbol Commons Jobs API</name>
+
+  <description>Background jobs, API and Manager </description>
+  <build>
+    <!-- make it an OSGi bundle -->
+    <plugins>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-scr-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <extensions>true</extensions>
+        <configuration>
+          <instructions>
+            <Import-Package>
+            org.apache.commons.codec.*,
+            org.slf4j.*
+            </Import-Package>
+            <Export-Package>
+            org.apache.stanbol.commons.jobs.api.*,
+            org.apache.stanbol.commons.jobs.impl.*
+            </Export-Package>
+          </instructions>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <dependencies>
+
+    <!-- Diagnostic dependencies -->
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-log4j12</artifactId>
+      <scope>runtime</scope>
+    </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+      <scope>runtime</scope>
+    </dependency>
+
+    <!-- Dependencise for testing -->
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.osgi</groupId>
+      <artifactId>org.osgi.core</artifactId>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.felix</groupId>
+      <artifactId>org.apache.felix.scr.annotations</artifactId>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.osgi</groupId>
+      <artifactId>org.osgi.compendium</artifactId>
+      <scope>provided</scope>
+    </dependency>
+
+    <!-- Stanbol dependencies -->
+    <dependency>
+      <groupId>commons-codec</groupId>
+      <artifactId>commons-codec</artifactId>
+      <scope>provided</scope>
+    </dependency>
+  </dependencies>
 </project>


Reply via email to