[jboss-cvs] Repository SVN: r29604 - in maven2/org/jboss/osgi/jboss-osgi-parent: 1.0.3 and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Oct 13 02:26:55 EDT 2009


Author: thomas.diesler at jboss.com
Date: 2009-10-13 02:26:55 -0400 (Tue, 13 Oct 2009)
New Revision: 29604

Added:
   maven2/org/jboss/osgi/jboss-osgi-parent/1.0.3/
   maven2/org/jboss/osgi/jboss-osgi-parent/1.0.3/jboss-osgi-parent-1.0.3.pom
   maven2/org/jboss/osgi/jboss-osgi-parent/1.0.3/jboss-osgi-parent-1.0.3.pom.md5
   maven2/org/jboss/osgi/jboss-osgi-parent/1.0.3/jboss-osgi-parent-1.0.3.pom.sha1
Modified:
   maven2/org/jboss/osgi/jboss-osgi-parent/maven-metadata.xml
   maven2/org/jboss/osgi/jboss-osgi-parent/maven-metadata.xml.md5
   maven2/org/jboss/osgi/jboss-osgi-parent/maven-metadata.xml.sha1
Log:
Release jboss-osgi-parent-1.0.3

Added: maven2/org/jboss/osgi/jboss-osgi-parent/1.0.3/jboss-osgi-parent-1.0.3.pom
===================================================================
--- maven2/org/jboss/osgi/jboss-osgi-parent/1.0.3/jboss-osgi-parent-1.0.3.pom	                        (rev 0)
+++ maven2/org/jboss/osgi/jboss-osgi-parent/1.0.3/jboss-osgi-parent-1.0.3.pom	2009-10-13 06:26:55 UTC (rev 29604)
@@ -0,0 +1,243 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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</name>
+  <groupId>org.jboss.osgi</groupId>
+  <artifactId>jboss-osgi-parent</artifactId>
+  <packaging>pom</packaging>
+
+  <url>http://www.jboss.org/community/wiki/JBossOSGi</url>
+  <description>JBossOSGi</description>
+
+  <version>1.0.3</version>
+
+  <scm>
+    <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/jboss-osgi/projects/parent/tags/jboss-osgi-parent-1.0.3</connection>
+    <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/jboss-osgi/projects/parent/tags/jboss-osgi-parent-1.0.3</developerConnection>
+    <url>http://fisheye.jboss.com/qsearch/JBossOSGi/tags/jboss-osgi-parent-1.0.3</url>
+  </scm>
+
+  <!-- Properties -->
+  <properties>
+    <version.jboss.logging>2.0.5.GA</version.jboss.logging>
+    <version.junit>4.6</version.junit>
+  </properties>
+
+  <!-- DependencyManagement -->
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>org.jboss.logging</groupId>
+        <artifactId>jboss-logging-log4j</artifactId>
+        <version>${version.jboss.logging}</version>
+      </dependency>
+      <dependency>
+        <groupId>junit</groupId>
+        <artifactId>junit</artifactId>
+        <version>${version.junit}</version>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+  
+  <!-- Build -->
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.5</source>
+          <target>1.5</target>
+          <showDeprecation>true</showDeprecation>
+          <showWarnings>true</showWarnings>
+          <optimize>true</optimize>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-jar-plugin</artifactId>
+        <configuration>
+          <archive>
+            <manifest>
+              <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
+              <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+            </manifest>
+            <manifestEntries>
+              <Implementation-URL>${url}</Implementation-URL>
+            </manifestEntries>
+          </archive>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-release-plugin</artifactId>
+        <configuration>
+          <goals>deploy</goals>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-source-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>attach-sources</id>
+            <goals>
+              <goal>jar</goal>
+            </goals>
+          </execution>
+        </executions>
+        <inherited>true</inherited>
+      </plugin>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <redirectTestOutputToFile>false</redirectTestOutputToFile>
+          <failIfNoTests>false</failIfNoTests>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <configuration>
+          <quiet>true</quiet>
+          <excludePackageNames>*.internal</excludePackageNames>
+        </configuration>
+        <executions>
+          <execution>
+            <goals>
+              <goal>jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+
+    <!-- PluginManagement -->
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.felix</groupId>
+          <artifactId>maven-bundle-plugin</artifactId>
+          <extensions>true</extensions>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+  </build>
+
+  <!-- Repositories -->
+  <repositories>
+    <repository>
+      <id>repository.jboss.org</id>
+      <name>JBoss Repository</name>
+      <url>http://repository.jboss.org/maven2/</url>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+    </repository>
+    <repository>
+      <id>snapshots.jboss.org</id>
+      <name>JBoss Snapshots Repository</name>
+      <url>http://snapshots.jboss.org/maven2/</url>
+      <releases>
+        <enabled>false</enabled>
+      </releases>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+    </repository>
+    <repository>
+      <id>aQute</id>
+      <url>http://www.aQute.biz/repo</url>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+    </repository>
+  </repositories>
+
+  <!-- PluginRepositories -->
+  <pluginRepositories>
+    <pluginRepository>
+      <id>repository.jboss.org</id>
+      <url>http://repository.jboss.org/maven2</url>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+    </pluginRepository>
+  </pluginRepositories>
+
+  <!-- Licenses -->
+  <licenses>
+    <license>
+      <name>lgpl</name>
+      <url>http://repository.jboss.com/licenses/lgpl.txt
+      </url>
+    </license>
+  </licenses>
+
+  <!-- DistributionManagement -->
+  <distributionManagement>
+    <!--
+      Add this to your ~/.m2/settings.xml 
+      <servers> 
+        <server> 
+          <id>jbmuc.dyndns.org</id> 
+          <username>yourname</username> 
+          <privateKey>/home/yourname/.ssh/id_rsa</privateKey>
+          <passphrase>yourpass</passphrase> 
+        </server> 
+      </servers>
+    -->
+    <repository>
+      <id>repository.jboss.org</id>
+      <url>file://${maven.repository.root}</url>
+    </repository>
+    <snapshotRepository>
+      <id>snapshots.jboss.org</id>
+      <name>JBoss Snapshot Repository</name>
+      <url>dav:https://snapshots.jboss.org/maven2</url>
+    </snapshotRepository>
+    <!--
+      To do a site deploy run:
+      mvn -Dversion.jboss.osgi=1.0.x site-deploy
+     -->
+    <site>
+      <id>jbmuc.dyndns.org</id>
+      <url>scp://jbmuc.dyndns.org/var/www/html/jboss-osgi-${version.jboss.osgi}</url>
+    </site>
+    <!--
+      To copy the userguide run:
+      scp -r docbook/target/docbook/publish/en-US/* jbmuc.dyndns.org:/var/www/html/jboss-osgi-${version.jboss.osgi}/userguide/ 
+     -->
+  </distributionManagement>
+
+  <!-- Reporting -->
+  <reporting>
+    <plugins>
+      <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <configuration>
+          <show>protected</show>
+          <excludePackageNames>*.internal:*.incubator</excludePackageNames>
+        </configuration>
+      </plugin>
+    </plugins>
+  </reporting>
+
+  <!-- Profiles -->
+  <profiles>
+  
+    <!--
+      Name: no-jboss-bind-address
+      Desc: Set the default jboss.bind.address
+    -->
+    <profile>
+      <id>no-jboss-bind-address</id>
+      <activation>
+        <property>
+          <name>!jboss.bind.address</name>
+        </property>
+      </activation>
+      <properties>
+        <jboss.bind.address>localhost</jboss.bind.address>
+      </properties>
+    </profile>
+    
+  </profiles>
+  
+</project>

Added: maven2/org/jboss/osgi/jboss-osgi-parent/1.0.3/jboss-osgi-parent-1.0.3.pom.md5
===================================================================
--- maven2/org/jboss/osgi/jboss-osgi-parent/1.0.3/jboss-osgi-parent-1.0.3.pom.md5	                        (rev 0)
+++ maven2/org/jboss/osgi/jboss-osgi-parent/1.0.3/jboss-osgi-parent-1.0.3.pom.md5	2009-10-13 06:26:55 UTC (rev 29604)
@@ -0,0 +1 @@
+3d3d15fa3a0ac7f9519f1a16799a68bc
\ No newline at end of file

Added: maven2/org/jboss/osgi/jboss-osgi-parent/1.0.3/jboss-osgi-parent-1.0.3.pom.sha1
===================================================================
--- maven2/org/jboss/osgi/jboss-osgi-parent/1.0.3/jboss-osgi-parent-1.0.3.pom.sha1	                        (rev 0)
+++ maven2/org/jboss/osgi/jboss-osgi-parent/1.0.3/jboss-osgi-parent-1.0.3.pom.sha1	2009-10-13 06:26:55 UTC (rev 29604)
@@ -0,0 +1 @@
+39bb85ea89a4dd96bd4c68f201efdb30bede5a9b
\ No newline at end of file

Modified: maven2/org/jboss/osgi/jboss-osgi-parent/maven-metadata.xml
===================================================================
--- maven2/org/jboss/osgi/jboss-osgi-parent/maven-metadata.xml	2009-10-13 02:03:25 UTC (rev 29603)
+++ maven2/org/jboss/osgi/jboss-osgi-parent/maven-metadata.xml	2009-10-13 06:26:55 UTC (rev 29604)
@@ -4,11 +4,12 @@
   <artifactId>jboss-osgi-parent</artifactId>
   <version>1.0.0</version>
   <versioning>
+    <release>1.0.3</release>
     <versions>
       <version>1.0.0</version>
       <version>1.0.1</version>
-      <version>1.0.2</version>
+      <version>1.0.3</version>
     </versions>
-    <lastUpdated>20090921212046</lastUpdated>
+    <lastUpdated>20091013062523</lastUpdated>
   </versioning>
 </metadata>

Modified: maven2/org/jboss/osgi/jboss-osgi-parent/maven-metadata.xml.md5
===================================================================
--- maven2/org/jboss/osgi/jboss-osgi-parent/maven-metadata.xml.md5	2009-10-13 02:03:25 UTC (rev 29603)
+++ maven2/org/jboss/osgi/jboss-osgi-parent/maven-metadata.xml.md5	2009-10-13 06:26:55 UTC (rev 29604)
@@ -1 +1 @@
-c3c3b98dfa5e07fbc88c1c2a1908c4d0
\ No newline at end of file
+d1c5303a2f874311f0fd16056f315e9a
\ No newline at end of file

Modified: maven2/org/jboss/osgi/jboss-osgi-parent/maven-metadata.xml.sha1
===================================================================
--- maven2/org/jboss/osgi/jboss-osgi-parent/maven-metadata.xml.sha1	2009-10-13 02:03:25 UTC (rev 29603)
+++ maven2/org/jboss/osgi/jboss-osgi-parent/maven-metadata.xml.sha1	2009-10-13 06:26:55 UTC (rev 29604)
@@ -1 +1 @@
-83260274f77879277f624ad7e4088d3022d047b8
\ No newline at end of file
+2b44f6c9c8e006ab4368eef0579a8dec899639ae
\ No newline at end of file




More information about the jboss-cvs-commits mailing list