[jboss-cvs] JBossAS SVN: r94280 - in projects/bootstrap/tags: jboss-bootstrap-build-2.0.0-alpha-2 and 1 other directory.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Fri Oct 2 13:05:15 EDT 2009
Author: ALRubinger
Date: 2009-10-02 13:05:14 -0400 (Fri, 02 Oct 2009)
New Revision: 94280
Added:
projects/bootstrap/tags/jboss-bootstrap-build-2.0.0-alpha-2/
projects/bootstrap/tags/jboss-bootstrap-build-2.0.0-alpha-2/pom.xml
Removed:
projects/bootstrap/tags/jboss-bootstrap-build-2.0.0-alpha-2/pom.xml
Log:
[maven-release-plugin] copy for tag jboss-bootstrap-build-2.0.0-alpha-2
Copied: projects/bootstrap/tags/jboss-bootstrap-build-2.0.0-alpha-2 (from rev 94278, projects/bootstrap/trunk/build)
Deleted: projects/bootstrap/tags/jboss-bootstrap-build-2.0.0-alpha-2/pom.xml
===================================================================
--- projects/bootstrap/trunk/build/pom.xml 2009-10-02 17:04:22 UTC (rev 94278)
+++ projects/bootstrap/tags/jboss-bootstrap-build-2.0.0-alpha-2/pom.xml 2009-10-02 17:05:14 UTC (rev 94280)
@@ -1,228 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
- <!--
- vi:ts=2:sw=2:expandtab:
--->
-<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">
-
- <!-- Parent -->
- <parent>
- <groupId>org.jboss</groupId>
- <artifactId>jboss-parent</artifactId>
- <version>4</version>
- </parent>
-
- <!-- Model Version -->
- <modelVersion>4.0.0</modelVersion>
-
- <!-- Artifact Configuration -->
- <groupId>org.jboss.bootstrap</groupId>
- <artifactId>jboss-bootstrap-build</artifactId>
- <version>2.0.0-SNAPSHOT</version>
- <name>JBoss Bootstrap Build</name>
- <description>JBoss Bootstrap Build</description>
- <packaging>pom</packaging>
-
- <!-- Properties -->
- <properties>
-
- <!-- Versioning -->
- <version.org.jboss.logging_jboss.logging.log4j>2.0.6.GA</version.org.jboss.logging_jboss.logging.log4j>
- <version.org.jboss.logging_jboss.logging.spi>2.0.5.GA</version.org.jboss.logging_jboss.logging.spi>
- <version.org.jboss.microcontainer_jboss.kernel>2.0.4.GA</version.org.jboss.microcontainer_jboss.kernel>
- <version.org.jboss_jbossxb>2.0.0.GA</version.org.jboss_jbossxb>
- <version.org.jboss.tmpdpl_tmpdpl.impl.vdf>0.1.0</version.org.jboss.tmpdpl_tmpdpl.impl.vdf>
- <version.junit_junit>4.6</version.junit_junit>
-
- </properties>
-
- <!-- SCM -->
- <scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/bootstrap/trunk</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/bootstrap/trunk</developerConnection>
- <url>http://anonsvn.jboss.org/repos/jbossas/projects/bootstrap/trunk</url>
- </scm>
-
- <!-- Issues -->
- <issueManagement>
- <system>jira</system>
- <url>http://jira.jboss.com/jira/browse/JBBOOT</url>
- </issueManagement>
-
- <!-- Build -->
- <build>
-
- <outputDirectory>${target.outputDirectory}</outputDirectory>
- <testOutputDirectory>${target.testOutputDirectory}</testOutputDirectory>
-
- <plugins>
-
- <!-- JBoss-specific Packaging -->
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>jboss-packaging-maven-plugin</artifactId>
- <version>2.0-beta-1</version>
- <extensions>true</extensions>
- </plugin>
-
- <!-- Compiler -->
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <inherited>true</inherited>
- <configuration>
- <source>1.6</source>
- <target>1.6</target>
- <showDeprecation>false</showDeprecation>
- <showWarnings>true</showWarnings>
- <optimize>true</optimize>
- <compilerVersion>1.6</compilerVersion>
- <fork>true</fork>
- <argLine>-Xmx512M</argLine>
- <executable>${JAVA_HOME}/bin/javac</executable>
- </configuration>
- </plugin>
-
- <!-- Surefire -->
- <plugin>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <redirectTestOutputToFile>true</redirectTestOutputToFile>
- <trimStackTrace>false</trimStackTrace>
- <printSummary>true</printSummary>
- <includes>
- <include>**/*TestCase.java</include>
- <include>**/*TestSuite.java</include>
- </includes>
- <forkMode>always</forkMode>
- </configuration>
- </plugin>
-
- <!-- Maven Release Plugin Configuration -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-release-plugin</artifactId>
- <configuration>
- <tagBase>https://svn.jboss.org/repos/jbossas/projects/bootstrap/tags</tagBase>
- </configuration>
- </plugin>
-
- <!-- Enforce Maven Environment -->
- <plugin>
- <artifactId>maven-enforcer-plugin
- </artifactId>
- <executions>
- <execution>
- <id>enforce-maven-environment</id>
- <goals>
- <goal>enforce</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <rules>
- <requireMavenVersion>
- <version>[2.0.9,2.1)</version> <!-- Must be Maven 2.0.9 >= x > 2.1 -->
- </requireMavenVersion>
- <requireJavaVersion>
- <version>1.6.0</version> <!-- Must be JDK6 -->
- </requireJavaVersion>
- </rules>
- </configuration>
- </plugin>
-
- </plugins>
-
- </build>
-
- <!-- Dependency Management -->
- <dependencyManagement>
- <dependencies>
-
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>${version.junit_junit}</version>
- <scope>test</scope>
- </dependency>
-
- <dependency>
- <groupId>org.jboss</groupId>
- <artifactId>jbossxb</artifactId>
- <version>${version.org.jboss_jbossxb}</version>
- </dependency>
-
- <dependency>
- <groupId>org.jboss.logging</groupId>
- <artifactId>jboss-logging-log4j</artifactId>
- <version>${version.org.jboss.logging_jboss.logging.log4j}</version>
- </dependency>
-
- <dependency>
- <groupId>org.jboss.logging</groupId>
- <artifactId>jboss-logging-spi</artifactId>
- <version>${version.org.jboss.logging_jboss.logging.spi}</version>
- </dependency>
-
- <dependency>
- <groupId>org.jboss.microcontainer</groupId>
- <artifactId>jboss-kernel</artifactId>
- <version>${version.org.jboss.microcontainer_jboss.kernel}</version>
- </dependency>
-
- <!-- Deployable Containers (groupId and artifactId will change) -->
- <dependency>
- <groupId>org.jboss.tmpdpl</groupId>
- <artifactId>tmpdpl-impl-vdf</artifactId>
- <version>${version.org.jboss.tmpdpl_tmpdpl.impl.vdf}</version>
- </dependency>
-
- </dependencies>
- </dependencyManagement>
-
- <!-- Profiles -->
- <profiles>
-
- <profile>
- <id>default</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <properties>
- <target.outputDirectory>target/classes</target.outputDirectory>
- <target.testOutputDirectory>target/tests-classes</target.testOutputDirectory>
- </properties>
- </profile>
-
- <profile>
- <id>eclipse</id>
- <build>
- <defaultGoal>process-test-resources</defaultGoal>
- <plugins>
- <plugin>
- <artifactId>maven-eclipse-plugin</artifactId>
- <executions>
- <execution>
- <id>eclipse</id>
- <phase>process-test-resources</phase>
- <goals>
- <goal>eclipse</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <downloadSources>true</downloadSources>
- <buildOutputDirectory>${target.outputDirectory}</buildOutputDirectory>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <properties>
- <target.outputDirectory>eclipse-target/classes</target.outputDirectory>
- <target.testOutputDirectory>eclipse-target/tests-classes</target.testOutputDirectory>
- </properties>
- </profile>
-
- </profiles>
-
-
-</project>
-
Copied: projects/bootstrap/tags/jboss-bootstrap-build-2.0.0-alpha-2/pom.xml (from rev 94279, projects/bootstrap/trunk/build/pom.xml)
===================================================================
--- projects/bootstrap/tags/jboss-bootstrap-build-2.0.0-alpha-2/pom.xml (rev 0)
+++ projects/bootstrap/tags/jboss-bootstrap-build-2.0.0-alpha-2/pom.xml 2009-10-02 17:05:14 UTC (rev 94280)
@@ -0,0 +1,228 @@
+<?xml version="1.0" encoding="UTF-8"?>
+ <!--
+ vi:ts=2:sw=2:expandtab:
+-->
+<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">
+
+ <!-- Parent -->
+ <parent>
+ <groupId>org.jboss</groupId>
+ <artifactId>jboss-parent</artifactId>
+ <version>4</version>
+ </parent>
+
+ <!-- Model Version -->
+ <modelVersion>4.0.0</modelVersion>
+
+ <!-- Artifact Configuration -->
+ <groupId>org.jboss.bootstrap</groupId>
+ <artifactId>jboss-bootstrap-build</artifactId>
+ <version>2.0.0-alpha-2</version>
+ <name>JBoss Bootstrap Build</name>
+ <description>JBoss Bootstrap Build</description>
+ <packaging>pom</packaging>
+
+ <!-- Properties -->
+ <properties>
+
+ <!-- Versioning -->
+ <version.org.jboss.logging_jboss.logging.log4j>2.0.6.GA</version.org.jboss.logging_jboss.logging.log4j>
+ <version.org.jboss.logging_jboss.logging.spi>2.0.5.GA</version.org.jboss.logging_jboss.logging.spi>
+ <version.org.jboss.microcontainer_jboss.kernel>2.0.4.GA</version.org.jboss.microcontainer_jboss.kernel>
+ <version.org.jboss_jbossxb>2.0.0.GA</version.org.jboss_jbossxb>
+ <version.org.jboss.tmpdpl_tmpdpl.impl.vdf>0.1.0</version.org.jboss.tmpdpl_tmpdpl.impl.vdf>
+ <version.junit_junit>4.6</version.junit_junit>
+
+ </properties>
+
+ <!-- SCM -->
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/bootstrap/tags/jboss-bootstrap-build-2.0.0-alpha-2</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/bootstrap/tags/jboss-bootstrap-build-2.0.0-alpha-2</developerConnection>
+ <url>http://anonsvn.jboss.org/repos/jbossas/projects/bootstrap/tags/jboss-bootstrap-build-2.0.0-alpha-2</url>
+ </scm>
+
+ <!-- Issues -->
+ <issueManagement>
+ <system>jira</system>
+ <url>http://jira.jboss.com/jira/browse/JBBOOT</url>
+ </issueManagement>
+
+ <!-- Build -->
+ <build>
+
+ <outputDirectory>${target.outputDirectory}</outputDirectory>
+ <testOutputDirectory>${target.testOutputDirectory}</testOutputDirectory>
+
+ <plugins>
+
+ <!-- JBoss-specific Packaging -->
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>jboss-packaging-maven-plugin</artifactId>
+ <version>2.0-beta-1</version>
+ <extensions>true</extensions>
+ </plugin>
+
+ <!-- Compiler -->
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <inherited>true</inherited>
+ <configuration>
+ <source>1.6</source>
+ <target>1.6</target>
+ <showDeprecation>false</showDeprecation>
+ <showWarnings>true</showWarnings>
+ <optimize>true</optimize>
+ <compilerVersion>1.6</compilerVersion>
+ <fork>true</fork>
+ <argLine>-Xmx512M</argLine>
+ <executable>${JAVA_HOME}/bin/javac</executable>
+ </configuration>
+ </plugin>
+
+ <!-- Surefire -->
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <redirectTestOutputToFile>true</redirectTestOutputToFile>
+ <trimStackTrace>false</trimStackTrace>
+ <printSummary>true</printSummary>
+ <includes>
+ <include>**/*TestCase.java</include>
+ <include>**/*TestSuite.java</include>
+ </includes>
+ <forkMode>always</forkMode>
+ </configuration>
+ </plugin>
+
+ <!-- Maven Release Plugin Configuration -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-release-plugin</artifactId>
+ <configuration>
+ <tagBase>https://svn.jboss.org/repos/jbossas/projects/bootstrap/tags</tagBase>
+ </configuration>
+ </plugin>
+
+ <!-- Enforce Maven Environment -->
+ <plugin>
+ <artifactId>maven-enforcer-plugin
+ </artifactId>
+ <executions>
+ <execution>
+ <id>enforce-maven-environment</id>
+ <goals>
+ <goal>enforce</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <rules>
+ <requireMavenVersion>
+ <version>[2.0.9,2.1)</version> <!-- Must be Maven 2.0.9 >= x > 2.1 -->
+ </requireMavenVersion>
+ <requireJavaVersion>
+ <version>1.6.0</version> <!-- Must be JDK6 -->
+ </requireJavaVersion>
+ </rules>
+ </configuration>
+ </plugin>
+
+ </plugins>
+
+ </build>
+
+ <!-- Dependency Management -->
+ <dependencyManagement>
+ <dependencies>
+
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>${version.junit_junit}</version>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.jboss</groupId>
+ <artifactId>jbossxb</artifactId>
+ <version>${version.org.jboss_jbossxb}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.jboss.logging</groupId>
+ <artifactId>jboss-logging-log4j</artifactId>
+ <version>${version.org.jboss.logging_jboss.logging.log4j}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.jboss.logging</groupId>
+ <artifactId>jboss-logging-spi</artifactId>
+ <version>${version.org.jboss.logging_jboss.logging.spi}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.jboss.microcontainer</groupId>
+ <artifactId>jboss-kernel</artifactId>
+ <version>${version.org.jboss.microcontainer_jboss.kernel}</version>
+ </dependency>
+
+ <!-- Deployable Containers (groupId and artifactId will change) -->
+ <dependency>
+ <groupId>org.jboss.tmpdpl</groupId>
+ <artifactId>tmpdpl-impl-vdf</artifactId>
+ <version>${version.org.jboss.tmpdpl_tmpdpl.impl.vdf}</version>
+ </dependency>
+
+ </dependencies>
+ </dependencyManagement>
+
+ <!-- Profiles -->
+ <profiles>
+
+ <profile>
+ <id>default</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <properties>
+ <target.outputDirectory>target/classes</target.outputDirectory>
+ <target.testOutputDirectory>target/tests-classes</target.testOutputDirectory>
+ </properties>
+ </profile>
+
+ <profile>
+ <id>eclipse</id>
+ <build>
+ <defaultGoal>process-test-resources</defaultGoal>
+ <plugins>
+ <plugin>
+ <artifactId>maven-eclipse-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>eclipse</id>
+ <phase>process-test-resources</phase>
+ <goals>
+ <goal>eclipse</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <downloadSources>true</downloadSources>
+ <buildOutputDirectory>${target.outputDirectory}</buildOutputDirectory>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <properties>
+ <target.outputDirectory>eclipse-target/classes</target.outputDirectory>
+ <target.testOutputDirectory>eclipse-target/tests-classes</target.testOutputDirectory>
+ </properties>
+ </profile>
+
+ </profiles>
+
+
+</project>
+
More information about the jboss-cvs-commits
mailing list