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

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Jul 22 06:11:21 EDT 2009


Author: thomas.diesler at jboss.com
Date: 2009-07-22 06:11:20 -0400 (Wed, 22 Jul 2009)
New Revision: 27893

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

Added: maven2/org/jboss/osgi/jboss-osgi-parent/1.0.1/jboss-osgi-parent-1.0.1.pom
===================================================================
--- maven2/org/jboss/osgi/jboss-osgi-parent/1.0.1/jboss-osgi-parent-1.0.1.pom	                        (rev 0)
+++ maven2/org/jboss/osgi/jboss-osgi-parent/1.0.1/jboss-osgi-parent-1.0.1.pom	2009-07-22 10:11:20 UTC (rev 27893)
@@ -0,0 +1,466 @@
+<?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.1</version>
+
+  <!-- Properties -->
+  <properties>
+    <version.aqute.bnd>0.0.323</version.aqute.bnd>
+    <version.jboss.logging>2.0.5.GA</version.jboss.logging>
+    <version.junit>4.6</version.junit>
+  </properties>
+
+  <!-- DependencyManagement -->
+  <dependencyManagement>
+      <dependencies>
+      <dependency>
+        <groupId>biz.aQute</groupId>
+        <artifactId>bnd</artifactId>
+        <version>0.0.323</version>
+      </dependency>
+      <dependency>
+        <groupId>org.jboss.logging</groupId>
+        <artifactId>jboss-logging-log4j</artifactId>
+        <version>2.0.5.GA</version>
+      </dependency>
+      <dependency>
+        <groupId>junit</groupId>
+        <artifactId>junit</artifactId>
+        <version>4.6</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-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>
+          <dependencies>
+            <dependency>
+              <groupId>biz.aQute</groupId>
+              <artifactId>bnd</artifactId>
+              <version>0.0.323</version>
+            </dependency>
+          </dependencies>
+        </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>
+
+  <scm>
+    <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/jboss-osgi</connection>
+    <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/jboss-osgi</developerConnection>
+    <url>http://fisheye.jboss.com/qsearch/JBossOSGi</url>
+  </scm>
+
+  <!-- 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>
+    <!--
+    <site>
+      <id>jbmuc.dyndns.org</id>
+      <url>scp://jbmuc.dyndns.org/var/www/html/jboss-osgi
+      </url>
+    </site>
+    -->
+  </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: distro
+      Desc: Build the distribution
+    -->
+    <profile>
+      <id>distro</id>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <configuration>
+              <skipTests>true</skipTests>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+    
+    <!--
+      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>
+    
+    <!--
+      Name: framework-default 
+      Descr: Setup for default framework integration testing
+    -->
+    <profile>
+      <id>framework-default</id>
+      <activation>
+        <property>
+          <name>!framework</name>
+        </property>
+      </activation>
+      <properties>
+        <jboss.osgi.framework.properties>jboss-osgi-felix.properties</jboss.osgi.framework.properties>
+      </properties>
+    </profile>
+
+    <!--
+      Name: framework-felix 
+      Descr: Setup for Felix framework integration testing
+    -->
+    <profile>
+      <id>framework-felix</id>
+      <activation>
+        <property>
+          <name>framework</name>
+          <value>felix</value>
+        </property>
+      </activation>
+      <properties>
+        <jboss.osgi.framework.properties>jboss-osgi-felix.properties</jboss.osgi.framework.properties>
+      </properties>
+    </profile>
+
+    <!--
+      Name: framework-equinox
+      Descr: Setup for Equinox framework integration testing
+    -->
+    <profile>
+      <id>framework-equinox</id>
+      <activation>
+        <property>
+          <name>framework</name>
+          <value>equinox</value>
+        </property>
+      </activation>
+      <properties>
+        <jboss.osgi.framework.properties>jboss-osgi-equinox.properties</jboss.osgi.framework.properties>
+      </properties>
+    </profile>
+
+    <!--
+      Name: framework-knopflerfish
+      Descr: Setup for Knopflerfish framework integration testing
+    -->
+    <profile>
+      <id>framework-knopflerfish</id>
+      <activation>
+        <property>
+          <name>framework</name>
+          <value>knopflerfish</value>
+        </property>
+      </activation>
+      <properties>
+        <jboss.osgi.framework.properties>jboss-osgi-knopflerfish.properties</jboss.osgi.framework.properties>
+      </properties>
+    </profile>
+    
+    <!--
+      Name: embedded-testing 
+      Descr: Setup for embedded integration testing
+    -->
+    <profile>
+      <id>embedded-testing</id>
+      <activation>
+        <property>
+          <name>!target.container</name>
+        </property>
+      </activation>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <configuration>
+              <systemProperties>
+                <!--
+                  You can copy these properties in Eclipse to debug example tests
+                  
+                  -Djava.protocol.handler.pkgs=org.jboss.net.protocol|org.jboss.virtual.protocol
+                  -Djndi.server.port=1199
+                  -Dlog4j.output.dir=${workspace_loc:jboss-osgi-testsuite-example/target}
+                  -Dorg.apache.xerces.xni.parser.XMLParserConfiguration=org.apache.xerces.parsers.XIncludeAwareParserConfiguration
+                  -Djboss.osgi.framework.properties=jboss-osgi-felix.properties
+                  -Dorg.jboss.osgi.husky.Invoker=org.jboss.osgi.husky.internal.OSGiInvoker
+                  -Dtest.archive.directory=${workspace_loc:jboss-osgi-testsuite-example/target}/test-libs
+                -->
+                <property>
+                  <name>java.protocol.handler.pkgs</name>
+                  <value>org.jboss.net.protocol|org.jboss.virtual.protocol</value>
+                </property>
+                <property>
+                  <name>jndi.server.port</name>
+                  <value>1199</value>
+                </property>
+                <property>
+                  <name>log4j.output.dir</name>
+                  <value>${project.build.directory}</value>
+                </property>
+                <property>
+                  <name>jboss.osgi.framework.properties</name>
+                  <value>${jboss.osgi.framework.properties}</value>
+                </property>
+                <property>
+                  <name>org.jboss.osgi.husky.Invoker</name>
+                  <value>org.jboss.osgi.husky.internal.OSGiInvoker</value>
+                </property>
+                <property>
+                  <name>test.archive.directory</name>
+                  <value>${project.build.directory}/test-libs</value>
+                </property>
+              </systemProperties>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+    
+    <!--
+      Name: remote-testing 
+      Descr: Setup for remote integration testing
+    -->
+    <profile>
+      <id>remote-testing</id>
+      <activation>
+        <property>
+          <name>target.container</name>
+        </property>
+      </activation>
+      <dependencies>
+        <dependency>
+          <groupId>org.jboss.jbossas</groupId>
+          <artifactId>jboss-as-client</artifactId>
+          <version>5.0.1.GA</version>
+          <scope>test</scope>
+          <type>pom</type>
+        </dependency>
+      </dependencies>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <configuration>
+              <systemProperties>
+                <property>
+                  <name>java.protocol.handler.pkgs</name>
+                  <value>org.jboss.net.protocol|org.jboss.virtual.protocol</value>
+                </property>
+                <property>
+                  <name>jboss.bind.address</name>
+                  <value>${jboss.bind.address}</value>
+                </property>
+                <property>
+                  <name>jndi.server.port</name>
+                  <value>1099</value>
+                </property>
+                <property>
+                  <name>log4j.output.dir</name>
+                  <value>${project.build.directory}</value>
+                </property>
+                <property>
+                  <name>org.apache.xerces.xni.parser.XMLParserConfiguration</name>
+                  <value>org.apache.xerces.parsers.XIncludeAwareParserConfiguration</value>
+                </property>
+                <property>
+                  <name>jboss.osgi.framework.properties</name>
+                  <value>${jboss.osgi.framework.properties}</value>
+                </property>
+                <property>
+                  <name>org.jboss.osgi.husky.Invoker</name>
+                  <value>org.jboss.osgi.husky.internal.OSGiInvoker</value>
+                </property>
+                <property>
+                  <name>org.jboss.osgi.husky.runtime.connector.host</name>
+                  <value>${jboss.bind.address}</value>
+                </property>
+                <property>
+                  <name>org.jboss.osgi.husky.runtime.connector.port</name>
+                  <value>5401</value>
+                </property>
+                <property>
+                  <name>target.container</name>
+                  <value>${target.container}</value>
+                </property>
+                <property>
+                  <name>test.archive.directory</name>
+                  <value>${project.build.directory}/test-libs</value>
+                </property>
+              </systemProperties>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+    
+  </profiles>
+  
+</project>

Added: maven2/org/jboss/osgi/jboss-osgi-parent/1.0.1/jboss-osgi-parent-1.0.1.pom.md5
===================================================================
--- maven2/org/jboss/osgi/jboss-osgi-parent/1.0.1/jboss-osgi-parent-1.0.1.pom.md5	                        (rev 0)
+++ maven2/org/jboss/osgi/jboss-osgi-parent/1.0.1/jboss-osgi-parent-1.0.1.pom.md5	2009-07-22 10:11:20 UTC (rev 27893)
@@ -0,0 +1 @@
+889c8ff3af616723157f76b6c91a00c8
\ No newline at end of file

Added: maven2/org/jboss/osgi/jboss-osgi-parent/1.0.1/jboss-osgi-parent-1.0.1.pom.sha1
===================================================================
--- maven2/org/jboss/osgi/jboss-osgi-parent/1.0.1/jboss-osgi-parent-1.0.1.pom.sha1	                        (rev 0)
+++ maven2/org/jboss/osgi/jboss-osgi-parent/1.0.1/jboss-osgi-parent-1.0.1.pom.sha1	2009-07-22 10:11:20 UTC (rev 27893)
@@ -0,0 +1 @@
+588e8c1fa08259a160bd8c71fc1e6562bf3818cb
\ 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-07-22 03:47:00 UTC (rev 27892)
+++ maven2/org/jboss/osgi/jboss-osgi-parent/maven-metadata.xml	2009-07-22 10:11:20 UTC (rev 27893)
@@ -7,7 +7,8 @@
   <versioning>
     <versions>
       <version>1.0.0</version>
+      <version>1.0.1</version>
     </versions>
-    <lastUpdated>20090603192657</lastUpdated>
+    <lastUpdated>20090722100952</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-07-22 03:47:00 UTC (rev 27892)
+++ maven2/org/jboss/osgi/jboss-osgi-parent/maven-metadata.xml.md5	2009-07-22 10:11:20 UTC (rev 27893)
@@ -1 +1 @@
-754eec2871afafea5efe7d036c674c28
\ No newline at end of file
+496ae1e3a14d84ae8e3c976cb268eafd
\ 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-07-22 03:47:00 UTC (rev 27892)
+++ maven2/org/jboss/osgi/jboss-osgi-parent/maven-metadata.xml.sha1	2009-07-22 10:11:20 UTC (rev 27893)
@@ -1 +1 @@
-23d0149a885e4a87f1640d8828b49eacf6415176
\ No newline at end of file
+1f7efc4996a961910d2f06652758d1bcf9dfdf0b
\ No newline at end of file




More information about the jboss-cvs-commits mailing list