[jboss-cvs] JBossAS SVN: r94738 - in projects/jboss-osgi/projects/bundles/common/tags: jboss-osgi-common-1.0.2 and 1 other directory.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Tue Oct 13 02:38:03 EDT 2009
Author: thomas.diesler at jboss.com
Date: 2009-10-13 02:38:03 -0400 (Tue, 13 Oct 2009)
New Revision: 94738
Added:
projects/jboss-osgi/projects/bundles/common/tags/jboss-osgi-common-1.0.2/
projects/jboss-osgi/projects/bundles/common/tags/jboss-osgi-common-1.0.2/pom.xml
Removed:
projects/jboss-osgi/projects/bundles/common/tags/jboss-osgi-common-1.0.2/pom.xml
Log:
[maven-release-plugin] copy for tag jboss-osgi-common-1.0.2
Copied: projects/jboss-osgi/projects/bundles/common/tags/jboss-osgi-common-1.0.2 (from rev 94736, projects/jboss-osgi/projects/bundles/common/trunk)
Property changes on: projects/jboss-osgi/projects/bundles/common/tags/jboss-osgi-common-1.0.2
___________________________________________________________________
Name: svn:ignore
+ target
Name: svn:mergeinfo
+
Deleted: projects/jboss-osgi/projects/bundles/common/tags/jboss-osgi-common-1.0.2/pom.xml
===================================================================
--- projects/jboss-osgi/projects/bundles/common/trunk/pom.xml 2009-10-13 06:29:34 UTC (rev 94736)
+++ projects/jboss-osgi/projects/bundles/common/tags/jboss-osgi-common-1.0.2/pom.xml 2009-10-13 06:38:03 UTC (rev 94738)
@@ -1,140 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
- <!-- ====================================================================== -->
- <!-- -->
- <!-- JBoss, the OpenSource J2EE webOS -->
- <!-- -->
- <!-- Distributable under LGPL license. -->
- <!-- See terms of license at http://www.gnu.org. -->
- <!-- -->
- <!-- ====================================================================== -->
-
- <!-- $Id$ -->
-
-<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>
-
- <name>JBossOSGi Bundles - Common</name>
- <description>The JBossOSGi common services</description>
-
- <groupId>org.jboss.osgi.bundles</groupId>
- <artifactId>jboss-osgi-common</artifactId>
- <packaging>bundle</packaging>
-
- <version>1.0.2-SNAPSHOT</version>
-
- <!-- Parent -->
- <parent>
- <groupId>org.jboss.osgi</groupId>
- <artifactId>jboss-osgi-parent</artifactId>
- <version>1.0.3-SNAPSHOT</version>
- </parent>
-
- <properties>
- <version.jboss.osgi.spi>1.0.2-SNAPSHOT</version.jboss.osgi.spi>
- <version.slf4j>1.5.8</version.slf4j>
- <version.osgi>r4v42</version.osgi>
- </properties>
-
- <!-- Dependencies -->
- <dependencies>
- <dependency>
- <groupId>org.jboss.osgi</groupId>
- <artifactId>jboss-osgi-spi</artifactId>
- <version>${version.jboss.osgi.spi}</version>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- <version>${version.slf4j}</version>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-log4j12</artifactId>
- <version>${version.slf4j}</version>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>jcl-over-slf4j</artifactId>
- <version>${version.slf4j}</version>
- </dependency>
-
- <!-- Provided Dependencies -->
- <dependency>
- <groupId>org.osgi</groupId>
- <artifactId>org.osgi.core</artifactId>
- <version>${version.osgi}</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.osgi</groupId>
- <artifactId>org.osgi.compendium</artifactId>
- <version>${version.osgi}</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.felix</groupId>
- <artifactId>maven-bundle-plugin</artifactId>
- <extensions>true</extensions>
- <configuration>
- <instructions>
- <Bundle-SymbolicName>${artifactId}</Bundle-SymbolicName>
- <Bundle-Activator>org.jboss.osgi.common.internal.CommonServicesActivator</Bundle-Activator>
- <Export-Package>
- org.jboss.osgi.common.log;version=${version}
- </Export-Package>
- <Import-Package>
- javax.management,
- org.apache.log4j;version="1.2";resolution:=optional,
- org.jboss.osgi.spi.management;version="1.0",
- org.jboss.osgi.spi.logging;version="1.0",
- org.jboss.osgi.spi.service;version="1.0",
- org.jboss.osgi.spi.util;version="1.0",
- org.osgi.framework;version=1.4,
- org.osgi.service.log;version=1.3,
- org.osgi.service.packageadmin;version=1.2,
- org.osgi.service.startlevel;version=1.1,
- org.osgi.util.tracker
- </Import-Package>
- <Embed-Dependency>
- jcl-over-slf4j;inline=false,
- slf4j-api;inline=false,
- slf4j-log4j12;inline=false,
- </Embed-Dependency>
- <_exportcontents>
- org.apache.commons.logging;version=1.1.1,
- org.slf4j;version=1.5.8,
- </_exportcontents>
- </instructions>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>build-helper-maven-plugin</artifactId>
- <executions>
- <execution>
- <id>attach-artifacts</id>
- <phase>package</phase>
- <goals>
- <goal>attach-artifact</goal>
- </goals>
- <configuration>
- <artifacts>
- <artifact>
- <!-- For some reason the distribution javadoc module needs this -->
- <file>target/${artifactId}-${version}-sources.jar</file>
- <classifier>sources</classifier>
- <type>jar</type>
- </artifact>
- </artifacts>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-</project>
Copied: projects/jboss-osgi/projects/bundles/common/tags/jboss-osgi-common-1.0.2/pom.xml (from rev 94737, projects/jboss-osgi/projects/bundles/common/trunk/pom.xml)
===================================================================
--- projects/jboss-osgi/projects/bundles/common/tags/jboss-osgi-common-1.0.2/pom.xml (rev 0)
+++ projects/jboss-osgi/projects/bundles/common/tags/jboss-osgi-common-1.0.2/pom.xml 2009-10-13 06:38:03 UTC (rev 94738)
@@ -0,0 +1,148 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+ <!-- ====================================================================== -->
+ <!-- -->
+ <!-- JBoss, the OpenSource J2EE webOS -->
+ <!-- -->
+ <!-- Distributable under LGPL license. -->
+ <!-- See terms of license at http://www.gnu.org. -->
+ <!-- -->
+ <!-- ====================================================================== -->
+
+ <!-- $Id$ -->
+
+<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>
+
+ <name>JBossOSGi Bundles - Common</name>
+ <description>The JBossOSGi common services</description>
+
+ <groupId>org.jboss.osgi.bundles</groupId>
+ <artifactId>jboss-osgi-common</artifactId>
+ <packaging>bundle</packaging>
+
+ <version>1.0.2</version>
+
+ <!-- Parent -->
+ <parent>
+ <groupId>org.jboss.osgi</groupId>
+ <artifactId>jboss-osgi-parent</artifactId>
+ <version>1.0.3</version>
+ </parent>
+
+ <!-- SCM -->
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/jboss-osgi/projects/bundles/common/tags/jboss-osgi-common-1.0.2</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/jboss-osgi/projects/bundles/common/tags/jboss-osgi-common-1.0.2</developerConnection>
+ <url>http://fisheye.jboss.com/qsearch/JBossOSGi/tags/jboss-osgi-common-1.0.2</url>
+ </scm>
+
+ <!-- Properties -->
+ <properties>
+ <version.jboss.osgi.spi>1.0.2</version.jboss.osgi.spi>
+ <version.slf4j>1.5.8</version.slf4j>
+ <version.osgi>r4v42</version.osgi>
+ </properties>
+
+ <!-- Dependencies -->
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss.osgi</groupId>
+ <artifactId>jboss-osgi-spi</artifactId>
+ <version>${version.jboss.osgi.spi}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ <version>${version.slf4j}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-log4j12</artifactId>
+ <version>${version.slf4j}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>jcl-over-slf4j</artifactId>
+ <version>${version.slf4j}</version>
+ </dependency>
+
+ <!-- Provided Dependencies -->
+ <dependency>
+ <groupId>org.osgi</groupId>
+ <artifactId>org.osgi.core</artifactId>
+ <version>${version.osgi}</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.osgi</groupId>
+ <artifactId>org.osgi.compendium</artifactId>
+ <version>${version.osgi}</version>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <extensions>true</extensions>
+ <configuration>
+ <instructions>
+ <Bundle-SymbolicName>${artifactId}</Bundle-SymbolicName>
+ <Bundle-Activator>org.jboss.osgi.common.internal.CommonServicesActivator</Bundle-Activator>
+ <Export-Package>
+ org.jboss.osgi.common.log;version=${version}
+ </Export-Package>
+ <Import-Package>
+ javax.management,
+ org.apache.log4j;version="1.2";resolution:=optional,
+ org.jboss.osgi.spi.management;version="1.0",
+ org.jboss.osgi.spi.logging;version="1.0",
+ org.jboss.osgi.spi.service;version="1.0",
+ org.jboss.osgi.spi.util;version="1.0",
+ org.osgi.framework;version=1.4,
+ org.osgi.service.log;version=1.3,
+ org.osgi.service.packageadmin;version=1.2,
+ org.osgi.service.startlevel;version=1.1,
+ org.osgi.util.tracker
+ </Import-Package>
+ <Embed-Dependency>
+ jcl-over-slf4j;inline=false,
+ slf4j-api;inline=false,
+ slf4j-log4j12;inline=false,
+ </Embed-Dependency>
+ <_exportcontents>
+ org.apache.commons.logging;version=1.1.1,
+ org.slf4j;version=1.5.8,
+ </_exportcontents>
+ </instructions>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>build-helper-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>attach-artifacts</id>
+ <phase>package</phase>
+ <goals>
+ <goal>attach-artifact</goal>
+ </goals>
+ <configuration>
+ <artifacts>
+ <artifact>
+ <!-- For some reason the distribution javadoc module needs this -->
+ <file>target/${artifactId}-${version}-sources.jar</file>
+ <classifier>sources</classifier>
+ <type>jar</type>
+ </artifact>
+ </artifacts>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
More information about the jboss-cvs-commits
mailing list