[jbpm-commits] JBoss JBPM SVN: r6510 - in projects/parent/tags: jbpm-parent-1.0.4 and 1 other directory.

do-not-reply at jboss.org do-not-reply at jboss.org
Sun Jul 18 03:30:28 EDT 2010


Author: alex.guizar at jboss.com
Date: 2010-07-18 03:30:27 -0400 (Sun, 18 Jul 2010)
New Revision: 6510

Added:
   projects/parent/tags/jbpm-parent-1.0.4/
   projects/parent/tags/jbpm-parent-1.0.4/.project
   projects/parent/tags/jbpm-parent-1.0.4/pom.xml
Removed:
   projects/parent/tags/jbpm-parent-1.0.4/.classpath
   projects/parent/tags/jbpm-parent-1.0.4/.project
   projects/parent/tags/jbpm-parent-1.0.4/pom.xml
Log:
[maven-release-plugin]  copy for tag jbpm-parent-1.0.4

Copied: projects/parent/tags/jbpm-parent-1.0.4 (from rev 6192, projects/parent/trunk)

Deleted: projects/parent/tags/jbpm-parent-1.0.4/.classpath
===================================================================
--- projects/parent/trunk/.classpath	2010-02-23 08:47:50 UTC (rev 6192)
+++ projects/parent/tags/jbpm-parent-1.0.4/.classpath	2010-07-18 07:30:27 UTC (rev 6510)
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<classpath>
-	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
-	<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
-	<classpathentry kind="output" path="target/classes"/>
-</classpath>

Deleted: projects/parent/tags/jbpm-parent-1.0.4/.project
===================================================================
--- projects/parent/trunk/.project	2010-02-23 08:47:50 UTC (rev 6192)
+++ projects/parent/tags/jbpm-parent-1.0.4/.project	2010-07-18 07:30:27 UTC (rev 6510)
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
-	<name>jbpm-parent</name>
-	<comment></comment>
-	<projects>
-	</projects>
-	<buildSpec>
-		<buildCommand>
-			<name>org.eclipse.jdt.core.javabuilder</name>
-			<arguments>
-			</arguments>
-		</buildCommand>
-		<buildCommand>
-			<name>org.maven.ide.eclipse.maven2Builder</name>
-			<arguments>
-			</arguments>
-		</buildCommand>
-	</buildSpec>
-	<natures>
-		<nature>org.eclipse.jdt.core.javanature</nature>
-		<nature>org.maven.ide.eclipse.maven2Nature</nature>
-	</natures>
-</projectDescription>

Copied: projects/parent/tags/jbpm-parent-1.0.4/.project (from rev 6194, projects/parent/trunk/.project)
===================================================================
--- projects/parent/tags/jbpm-parent-1.0.4/.project	                        (rev 0)
+++ projects/parent/tags/jbpm-parent-1.0.4/.project	2010-07-18 07:30:27 UTC (rev 6510)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>jbpm-parent</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.maven.ide.eclipse.maven2Builder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.maven.ide.eclipse.maven2Nature</nature>
+	</natures>
+</projectDescription>

Deleted: projects/parent/tags/jbpm-parent-1.0.4/pom.xml
===================================================================
--- projects/parent/trunk/pom.xml	2010-02-23 08:47:50 UTC (rev 6192)
+++ projects/parent/tags/jbpm-parent-1.0.4/pom.xml	2010-07-18 07:30:27 UTC (rev 6510)
@@ -1,229 +0,0 @@
-<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>JBossBPM - Parent</name>
-  <groupId>org.jbpm</groupId>
-  <artifactId>jbpm-parent</artifactId>
-  <packaging>pom</packaging>
-  <version>1.0.2-SNAPSHOT</version>
-
-  <organization>
-    <name>JBoss, a division of Red Hat</name>
-    <url>http://www.jboss.org</url>
-  </organization>
-  
-  <!-- Properties -->
-  <properties>
-    <junit.version>3.8.1</junit.version>
-    <log4j.version>1.2.14</log4j.version>
-  </properties>
-  
-  <!-- DependencyManagement -->
-  <dependencyManagement>
-    <dependencies>
-      <dependency>
-        <groupId>junit</groupId>
-        <artifactId>junit</artifactId>
-        <version>${junit.version}</version>
-      </dependency>
-      <dependency>
-        <groupId>log4j</groupId>
-        <artifactId>log4j</artifactId>
-        <version>${log4j.version}</version>
-      </dependency>
-    </dependencies>
-  </dependencyManagement>
-  
-  <!-- IssueManagement -->
-  <issueManagement>
-    <system>jira</system>
-    <url>http://jira.jboss.org/jira/browse/JBPM</url>
-  </issueManagement>
-  
-  <!-- licenses -->
-  <licenses>
-    <license>
-      <name>lgpl</name>
-      <url>http://repository.jboss.com/licenses/lgpl.txt</url>
-    </license>
-  </licenses>
-  
-  <!-- Plugins -->
-  <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>
-              <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
-            </manifest>
-          </archive>
-        </configuration>
-      </plugin>
-      <plugin>
-        <artifactId>maven-source-plugin</artifactId>
-        <executions>
-          <execution>
-            <id>attach-sources</id>
-            <goals>
-              <goal>jar</goal>
-            </goals>
-          </execution>
-        </executions>
-      </plugin>
-      <plugin>
-        <artifactId>maven-surefire-plugin</artifactId>
-        <configuration>
-          <failIfNoTests>false</failIfNoTests>
-          <trimStackTrace>false</trimStackTrace>
-          <testFailureIgnore>${testFailureIgnore}</testFailureIgnore>
-          <systemProperties>
-            <property>
-              <name>log4j.output.dir</name>
-              <value>${project.build.directory}</value>
-            </property>
-          </systemProperties>
-        </configuration>
-      </plugin>
-    </plugins>
-    
-    <!-- PluginManagement -->
-    <pluginManagement>
-      <plugins>
-        <plugin>
-          <groupId>com.sun.tools.jxc.maven2</groupId>
-          <artifactId>maven-jaxb-schemagen-plugin</artifactId>
-          <version>1.2</version>
-          <dependencies>
-            <dependency>
-              <groupId>com.sun.xml.bind</groupId>
-              <artifactId>jaxb-impl</artifactId>
-              <version>2.1.7</version>
-            </dependency>
-            <dependency>
-              <groupId>com.sun.xml.bind</groupId>
-              <artifactId>jaxb-xjc</artifactId>
-              <version>2.1.7</version>
-            </dependency>
-          </dependencies>
-        </plugin>
-        <plugin>
-          <groupId>org.codehaus.mojo</groupId>
-          <artifactId>build-helper-maven-plugin</artifactId>
-          <version>1.1</version>
-        </plugin>
-        <plugin>
-          <groupId>org.codehaus.mojo</groupId>
-          <artifactId>buildnumber-maven-plugin</artifactId>
-          <version>1.0-beta-1</version>
-        </plugin>
-        <plugin>
-          <groupId>net.sourceforge.maven-taglib</groupId>
-          <artifactId>maven-taglib-plugin</artifactId>
-          <version>2.3</version>
-        </plugin>
-      </plugins>
-    </pluginManagement>
-  </build>
-  
-  <!-- Reporting -->
-  <reporting>
-    <plugins>
-      <plugin>
-        <artifactId>maven-surefire-report-plugin</artifactId>
-      </plugin>
-    </plugins>
-  </reporting>
-  
-  <!-- Repositories -->
-  <repositories>
-    <repository>
-      <id>maven2.java.net</id>
-      <name>Java.net Repository for Maven 2</name>
-      <url>http://download.java.net/maven/2/</url>
-    </repository>
-    <repository>
-      <id>maven1.java.net</id>
-      <url>http://download.java.net/maven/1/</url>
-      <layout>legacy</layout>
-    </repository>
-    <repository>
-      <id>repository.jboss.org</id>
-      <url>http://repository.jboss.org/maven2</url>
-      <snapshots>
-        <enabled>false</enabled>
-      </snapshots>
-    </repository>
-    <repository>
-      <id>snapshots.jboss.org</id>
-      <url>http://snapshots.jboss.org/maven2</url>
-      <snapshots>
-        <enabled>true</enabled>
-      </snapshots>
-    </repository>
-    <repository>
-      <id>repository.codehaus.org</id>
-      <url>http://repository.codehaus.org</url>
-      <snapshots>
-        <enabled>false</enabled>
-      </snapshots>
-    </repository>
-    <repository>
-      <id>gwt-maven</id>
-      <url>http://gwt-maven.googlecode.com/svn/trunk/mavenrepo/</url>
-    </repository>
-  </repositories>
-  
-  <!-- PluginRepositories -->
-  <pluginRepositories>
-    <pluginRepository>
-      <id>maven2.java.net</id>
-      <name>Java.net Repository for Maven 2</name>
-      <url>http://download.java.net/maven/2/</url>
-    </pluginRepository>
-    <pluginRepository>
-      <id>repository.jboss.org</id>
-      <url>http://repository.jboss.org/maven2</url>
-      <snapshots>
-        <enabled>false</enabled>
-      </snapshots>
-    </pluginRepository>
-    <pluginRepository>
-      <id>snapshots.jboss.org</id>
-      <url>http://snapshots.jboss.org/maven2</url>
-      <snapshots>
-        <enabled>true</enabled>
-      </snapshots>
-    </pluginRepository>
-    <pluginRepository>
-      <id>gwt-maven</id>
-      <url>http://gwt-maven.googlecode.com/svn/trunk/mavenrepo/</url>
-    </pluginRepository>
-  </pluginRepositories>
-  
-  <!-- DistributionManagement -->
-  <distributionManagement>
-    <repository>
-      <id>repository.jboss.org</id>
-      <name>JBoss Maven Repository</name>
-      <url>file://${jboss.maven.repository}</url>
-    </repository>
-    <snapshotRepository>
-      <id>snapshots.jboss.org</id>
-      <name>JBoss Snapshot Repository</name>
-      <url>dav:https://snapshots.jboss.org/maven2</url>
-    </snapshotRepository>
-  </distributionManagement>
-</project>

Copied: projects/parent/tags/jbpm-parent-1.0.4/pom.xml (from rev 6509, projects/parent/trunk/pom.xml)
===================================================================
--- projects/parent/tags/jbpm-parent-1.0.4/pom.xml	                        (rev 0)
+++ projects/parent/tags/jbpm-parent-1.0.4/pom.xml	2010-07-18 07:30:27 UTC (rev 6510)
@@ -0,0 +1,125 @@
+<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>JBoss jBPM - Parent</name>
+  <url>http://jboss.org/jbpm</url>
+  <groupId>org.jbpm</groupId>
+  <artifactId>jbpm-parent</artifactId>
+  <packaging>pom</packaging>
+  <version>1.0.4</version>
+
+  <!-- Organization -->
+  <organization>
+    <name>JBoss Community</name>
+    <url>http://jboss.org</url>
+  </organization>
+
+  <!-- Source Control Management -->
+  <scm>
+    <connection>scm:svn:http://anonsvn.jboss.org/repos/jbpm/projects/parent/tags/jbpm-parent-1.0.4</connection>
+    <developerConnection>scm:svn:https://svn.jboss.org/repos/jbpm/projects/parent/tags/jbpm-parent-1.0.4</developerConnection>
+    <url>http://fisheye.jboss.org/browse/JbpmSvn/projects/parent/tags/jbpm-parent-1.0.4</url>
+  </scm>
+
+  <!-- Issue Management -->
+  <issueManagement>
+    <system>jira</system>
+    <url>http://jira.jboss.org/jira/browse/JBPM</url>
+  </issueManagement>
+
+  <!-- Continuous Integration Management -->
+  <ciManagement>
+    <system>hudson</system>
+    <url>http://hudson.jboss.org/hudson/view/jBPM</url>
+  </ciManagement>
+
+  <!-- Licenses -->
+  <licenses>
+    <license>
+      <name>lgpl</name>
+      <url>http://repository.jboss.com/licenses/lgpl.txt</url>
+    </license>
+  </licenses>
+
+  <!-- Properties -->
+  <properties>
+    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+  </properties>
+
+  <build>
+    <!-- Plugins -->
+    <plugins>
+      <plugin>
+        <artifactId>maven-jar-plugin</artifactId>
+        <configuration>
+          <archive>
+            <manifest>
+              <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+            </manifest>
+          </archive>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <artifactId>maven-source-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>attach-sources</id>
+            <goals>
+              <goal>jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+
+    <!-- Plugin Management -->
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>build-helper-maven-plugin</artifactId>
+          <version>1.5</version>
+        </plugin>
+
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>buildnumber-maven-plugin</artifactId>
+          <version>1.0-beta-4</version>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+  </build>
+
+  <!-- Reporting -->
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-report-plugin</artifactId>
+        <version>2.5</version>
+      </plugin>
+
+      <plugin>
+      	<groupId>org.codehaus.mojo</groupId>
+      	<artifactId>cobertura-maven-plugin</artifactId>
+      	<version>2.3</version>
+      </plugin>
+    </plugins>
+  </reporting>
+
+  <!-- Distribution Management -->
+  <distributionManagement>
+    <repository>
+      <id>jboss-releases-repository</id>
+      <name>JBoss Releases Repository</name>
+      <url>https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/</url>
+    </repository>
+
+    <snapshotRepository>
+      <id>jboss-snapshots-repository</id>
+      <name>JBoss Snapshots Repository</name>
+      <url>https://repository.jboss.org/nexus/content/repositories/snapshots/</url>
+    </snapshotRepository>
+  </distributionManagement>
+</project>



More information about the jbpm-commits mailing list