[jboss-maven2-commits] Repository SVN: r31464 - in maven2/org/jboss/osgi/jboss-osgi-parent: 1.0.4 and 1 other directory.

jboss-maven2-commits at lists.jboss.org jboss-maven2-commits at lists.jboss.org
Mon Nov 23 22:24:15 EST 2009


Author: thomas.diesler at jboss.com
Date: 2009-11-23 22:24:14 -0500 (Mon, 23 Nov 2009)
New Revision: 31464

Added:
   maven2/org/jboss/osgi/jboss-osgi-parent/1.0.4/
   maven2/org/jboss/osgi/jboss-osgi-parent/1.0.4/jboss-osgi-parent-1.0.4.pom
   maven2/org/jboss/osgi/jboss-osgi-parent/1.0.4/jboss-osgi-parent-1.0.4.pom.md5
   maven2/org/jboss/osgi/jboss-osgi-parent/1.0.4/jboss-osgi-parent-1.0.4.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.4

Added: maven2/org/jboss/osgi/jboss-osgi-parent/1.0.4/jboss-osgi-parent-1.0.4.pom
===================================================================
--- maven2/org/jboss/osgi/jboss-osgi-parent/1.0.4/jboss-osgi-parent-1.0.4.pom	                        (rev 0)
+++ maven2/org/jboss/osgi/jboss-osgi-parent/1.0.4/jboss-osgi-parent-1.0.4.pom	2009-11-24 03:24:14 UTC (rev 31464)
@@ -0,0 +1,261 @@
+<?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.4</version>
+
+  <!-- Properties -->
+  <properties>
+    <version.aqute.bnd>0.0.356</version.aqute.bnd>
+    <version.jboss.logging>2.1.0.GA</version.jboss.logging>
+    <version.junit>4.6</version.junit>
+    <version.slf4j>1.5.8</version.slf4j>
+  </properties>
+
+  <!-- Subversion -->
+  <scm>
+    <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/jboss-osgi/projects/parent/tags/jboss-osgi-parent-1.0.4</connection>
+    <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/jboss-osgi/projects/parent/tags/jboss-osgi-parent-1.0.4</developerConnection>
+    <url>http://fisheye.jboss.com/qsearch/JBossOSGi/tags/jboss-osgi-parent-1.0.4</url>
+  </scm>
+
+  <!-- DependencyManagement -->
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>biz.aQute</groupId>
+        <artifactId>bnd</artifactId>
+        <version>${version.aqute.bnd}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.jboss.logging</groupId>
+        <artifactId>jboss-logging-log4j</artifactId>
+        <version>${version.jboss.logging}</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>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.4/jboss-osgi-parent-1.0.4.pom.md5
===================================================================
--- maven2/org/jboss/osgi/jboss-osgi-parent/1.0.4/jboss-osgi-parent-1.0.4.pom.md5	                        (rev 0)
+++ maven2/org/jboss/osgi/jboss-osgi-parent/1.0.4/jboss-osgi-parent-1.0.4.pom.md5	2009-11-24 03:24:14 UTC (rev 31464)
@@ -0,0 +1 @@
+f77f92b4a528024b1a44996249e3ed25
\ No newline at end of file

Added: maven2/org/jboss/osgi/jboss-osgi-parent/1.0.4/jboss-osgi-parent-1.0.4.pom.sha1
===================================================================
--- maven2/org/jboss/osgi/jboss-osgi-parent/1.0.4/jboss-osgi-parent-1.0.4.pom.sha1	                        (rev 0)
+++ maven2/org/jboss/osgi/jboss-osgi-parent/1.0.4/jboss-osgi-parent-1.0.4.pom.sha1	2009-11-24 03:24:14 UTC (rev 31464)
@@ -0,0 +1 @@
+ec212a419510c36e4366bbbe989bf9ee7e4a22d1
\ 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-11-23 21:43:56 UTC (rev 31463)
+++ maven2/org/jboss/osgi/jboss-osgi-parent/maven-metadata.xml	2009-11-24 03:24:14 UTC (rev 31464)
@@ -4,13 +4,14 @@
   <artifactId>jboss-osgi-parent</artifactId>
   <version>1.0.0</version>
   <versioning>
-    <release>1.0.3</release>
+    <release>1.0.4</release>
     <versions>
       <version>1.0.0</version>
       <version>1.0.1</version>
       <version>1.0.3</version>
       <version>1.0.0.SP1</version>
+      <version>1.0.4</version>
     </versions>
-    <lastUpdated>20091110224036</lastUpdated>
+    <lastUpdated>20091124032318</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-11-23 21:43:56 UTC (rev 31463)
+++ maven2/org/jboss/osgi/jboss-osgi-parent/maven-metadata.xml.md5	2009-11-24 03:24:14 UTC (rev 31464)
@@ -1 +1 @@
-66cfd62bf690b9d6601e0c18625b1bcd
\ No newline at end of file
+51096c146c65163027ca584b05f2f840
\ 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-11-23 21:43:56 UTC (rev 31463)
+++ maven2/org/jboss/osgi/jboss-osgi-parent/maven-metadata.xml.sha1	2009-11-24 03:24:14 UTC (rev 31464)
@@ -1 +1 @@
-73259154f07b9e1b13daddc26858e8eae4873bd3
\ No newline at end of file
+e5d2a2e2b3f67d682fa0e40925eaf225551e6405
\ No newline at end of file



More information about the jboss-maven2-commits mailing list