[jboss-cvs] JBossAS SVN: r89734 - in projects/jboss-osgi: projects and 2 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Jun 3 09:40:03 EDT 2009


Author: thomas.diesler at jboss.com
Date: 2009-06-03 09:40:03 -0400 (Wed, 03 Jun 2009)
New Revision: 89734

Added:
   projects/jboss-osgi/projects/
   projects/jboss-osgi/projects/parent/
   projects/jboss-osgi/projects/parent/trunk/
   projects/jboss-osgi/projects/parent/trunk/pom.xml
Log:
Add jboss-osgi-parent

Copied: projects/jboss-osgi/projects/parent/trunk/pom.xml (from rev 89712, projects/jboss-osgi/trunk/pom.xml)
===================================================================
--- projects/jboss-osgi/projects/parent/trunk/pom.xml	                        (rev 0)
+++ projects/jboss-osgi/projects/parent/trunk/pom.xml	2009-06-03 13:40:03 UTC (rev 89734)
@@ -0,0 +1,188 @@
+<?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>
+
+  <version>1.0.0-SNAPSHOT</version>
+
+  <url>http://www.jboss.org/community/wiki/JBossOSGi</url>
+  <description>JBossOSGi</description>
+
+  <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>
+
+  <!-- Properties -->
+  <properties>
+    <version.aqute.bnd>0.0.323</version.aqute.bnd>
+  </properties>
+
+  <build>
+
+    <!-- Plugins -->
+    <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>
+    </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>${version.aqute.bnd}</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>
+
+  <!-- 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>jbpm.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>${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>jbpm.dyndns.org</id>
+      <url>scp://jbpm.dyndns.org/var/www/html/jboss-osgi
+      </url>
+    </site>
+    -->
+  </distributionManagement>
+
+  <!-- Reporting -->
+  <reporting>
+    <plugins>
+      <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <configuration>
+          <show>public</show>
+          <excludePackageNames>*.internal:*.incubator:*.test</excludePackageNames>
+        </configuration>
+      </plugin>
+    </plugins>
+  </reporting>
+
+</project>


Property changes on: projects/jboss-osgi/projects/parent/trunk/pom.xml
___________________________________________________________________
Name: svn:mergeinfo
   + 




More information about the jboss-cvs-commits mailing list