[jboss-cvs] Repository SVN: r4515 - in maven2/org/jboss/ejb3/jboss-ejb3-build: 0.13.1 and 1 other directories.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Sun Apr 13 07:38:41 EDT 2008
Author: ALRubinger
Date: 2008-04-13 07:38:40 -0400 (Sun, 13 Apr 2008)
New Revision: 4515
Added:
maven2/org/jboss/ejb3/jboss-ejb3-build/0.13.1/
maven2/org/jboss/ejb3/jboss-ejb3-build/0.13.1/jboss-ejb3-build-0.13.1.pom
maven2/org/jboss/ejb3/jboss-ejb3-build/0.13.1/jboss-ejb3-build-0.13.1.pom.md5
maven2/org/jboss/ejb3/jboss-ejb3-build/0.13.1/jboss-ejb3-build-0.13.1.pom.sha1
maven2/org/jboss/ejb3/jboss-ejb3-build/0.13.2/
maven2/org/jboss/ejb3/jboss-ejb3-build/0.13.2/jboss-ejb3-build-0.13.2.pom
maven2/org/jboss/ejb3/jboss-ejb3-build/0.13.2/jboss-ejb3-build-0.13.2.pom.md5
maven2/org/jboss/ejb3/jboss-ejb3-build/0.13.2/jboss-ejb3-build-0.13.2.pom.sha1
Modified:
maven2/org/jboss/ejb3/jboss-ejb3-build/maven-metadata.xml
maven2/org/jboss/ejb3/jboss-ejb3-build/maven-metadata.xml.md5
maven2/org/jboss/ejb3/jboss-ejb3-build/maven-metadata.xml.sha1
Log:
Deployed jboss-ejb3-build 0.13.1 and 0.13.2 to Maven2 Repository
Added: maven2/org/jboss/ejb3/jboss-ejb3-build/0.13.1/jboss-ejb3-build-0.13.1.pom
===================================================================
--- maven2/org/jboss/ejb3/jboss-ejb3-build/0.13.1/jboss-ejb3-build-0.13.1.pom (rev 0)
+++ maven2/org/jboss/ejb3/jboss-ejb3-build/0.13.1/jboss-ejb3-build-0.13.1.pom 2008-04-13 11:38:40 UTC (rev 4515)
@@ -0,0 +1,259 @@
+<?xml version="1.0" encoding="UTF-8"?><project>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.jboss.ejb3</groupId>
+ <artifactId>jboss-ejb3-build</artifactId>
+ <packaging>pom</packaging>
+ <name>JBoss EJB 3.0 Build POM</name>
+ <version>0.13.1</version>
+ <description>The JBoss EJB 3.0 Build POM</description>
+ <url>http://labs.jboss.com/jbossejb3</url>
+ <issueManagement>
+ <system>jira</system>
+ <url>http://jira.jboss.com/jira/browse/EJBTHREE</url>
+ </issueManagement>
+ <developers>
+ <developer>
+ <name>Carlo de Wolf</name>
+ <email>carlo.dewolf at jboss.com</email>
+ <organization>JBoss, a division of Red Hat, Inc.</organization>
+ <organizationUrl>http://www.jboss.com</organizationUrl>
+ <roles>
+ <role>Project Lead</role>
+ </roles>
+ <timezone>+1</timezone>
+ </developer>
+ <developer>
+ <name>Andrew Lee Rubinger</name>
+ <email>andrew.rubinger at jboss.org</email>
+ <organization>JBoss, a division of Red Hat, Inc.</organization>
+ <organizationUrl>http://www.jboss.com</organizationUrl>
+ <roles>
+ <role>Developer</role>
+ </roles>
+ <timezone>-5</timezone>
+ </developer>
+ </developers>
+ <licenses>
+ <license>
+ <name>lgpl</name>
+ <url>http://repository.jboss.com/licenses/lgpl.txt</url>
+ </license>
+ </licenses>
+ <scm>
+ <connection>https://svn.jboss.org/repos/jbossas/projects/ejb3/tags/jboss-ejb3-build-0.13.1</connection>
+ <developerConnection>https://svn.jboss.org/repos/jbossas/projects/ejb3/tags/jboss-ejb3-build-0.13.1</developerConnection>
+ <url>https://svn.jboss.org/repos/jbossas/projects/ejb3/tags/jboss-ejb3-build-0.13.1</url>
+ </scm>
+ <organization>
+ <name>JBoss, a division of Red Hat, Inc.</name>
+ <url>http://www.jboss.org</url>
+ </organization>
+ <build>
+ <sourceDirectory>src/main/java</sourceDirectory>
+ <scriptSourceDirectory>src/main/scripts</scriptSourceDirectory>
+ <testSourceDirectory>src/test/java</testSourceDirectory>
+ <outputDirectory>target/classes</outputDirectory>
+ <testOutputDirectory>target/tests-classes</testOutputDirectory>
+ <resources>
+ <resource>
+ <directory>src/main/resources</directory>
+ </resource>
+ </resources>
+ <testResources>
+ <testResource>
+ <directory>src/test/resources</directory>
+ </testResource>
+ </testResources>
+ <directory>target</directory>
+ <finalName>jboss-ejb3-build</finalName>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0.2</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ <showDeprecation>false</showDeprecation>
+ <showWarnings>true</showWarnings>
+ <optimize>true</optimize>
+ <compilerVersion>1.5</compilerVersion>
+ <fork>false</fork>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <version>RELEASE</version>
+ <configuration>
+ <printSummary>false</printSummary>
+ <testFailureIgnore>true</testFailureIgnore>
+ <includes>
+ <include>**/**TestCase.java</include>
+ <include>**/**TestSuite.java</include>
+ </includes>
+ <forkMode>once</forkMode>
+ <argLine>${jvmargs}</argLine>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-release-plugin</artifactId>
+ <version>2.0-beta-7</version>
+ <configuration>
+ <tagBase>https://svn.jboss.org/repos/jbossas/projects/ejb3/tags</tagBase>
+ <generateReleasePoms>true</generateReleasePoms>
+ <useReleaseProfile>false</useReleaseProfile>
+ <arguments>-Prelease</arguments>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-rar-plugin</artifactId>
+ <version>RELEASE</version>
+ <configuration>
+ <includeJar>true</includeJar>
+ <rarSourceDirectory>src/main/java</rarSourceDirectory>
+ <raXmlFile>src/main/resources/META-INF/ra.xml</raXmlFile>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jboss-deploy-plugin</artifactId>
+ <version>1.6</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>jboss-deploy</goal>
+ </goals>
+ </execution>
+ </executions>
+ <inherited>true</inherited>
+ <configuration>
+ <jbossDeployRoot>${jboss.repository.root}</jbossDeployRoot>
+ <groupId>jboss</groupId>
+ <removeArtifactVersion>true</removeArtifactVersion>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <repositories>
+ <repository>
+ <snapshots />
+ <id>snapshots.jboss.org</id>
+ <url>http://snapshots.jboss.org/maven2</url>
+ </repository>
+ <repository>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ <id>repository.jboss.org</id>
+ <url>http://repository.jboss.org/maven2</url>
+ </repository>
+ <repository>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ <id>central</id>
+ <name>Maven Repository Switchboard</name>
+ <url>http://repo1.maven.org/maven2</url>
+ </repository>
+ </repositories>
+ <pluginRepositories>
+ <pluginRepository>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ <id>repository.jboss.org</id>
+ <url>http://repository.jboss.org/maven2</url>
+ </pluginRepository>
+ <pluginRepository>
+ <snapshots />
+ <id>snapshots.jboss.org</id>
+ <url>http://snapshots.jboss.org/maven2</url>
+ </pluginRepository>
+ <pluginRepository>
+ <releases>
+ <updatePolicy>never</updatePolicy>
+ </releases>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ <id>central</id>
+ <name>Maven Plugin Repository</name>
+ <url>http://repo1.maven.org/maven2</url>
+ </pluginRepository>
+ </pluginRepositories>
+ <reporting>
+ <outputDirectory>target/site</outputDirectory>
+ <plugins>
+ <plugin>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.2</version>
+ <configuration>
+ <links>
+ <link>http://java.sun.com/j2se/1.5.0/docs/api</link>
+ </links>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-project-info-reports-plugin</artifactId>
+ <version>2.0.1</version>
+ <reportSets>
+ <reportSet>
+ <reports>
+ <report>dependencies</report>
+ <report>issue-tracking</report>
+ <report>license</report>
+ <report>scm</report>
+ </reports>
+ </reportSet>
+ </reportSets>
+ </plugin>
+ <plugin>
+ <artifactId>maven-surefire-report-plugin</artifactId>
+ <version>2.3</version>
+ <reportSets>
+ <reportSet>
+ <reports>
+ <report>report-only</report>
+ </reports>
+ </reportSet>
+ </reportSets>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>findbugs-maven-plugin</artifactId>
+ <version>1.0.0</version>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>taglist-maven-plugin</artifactId>
+ <version>2.0</version>
+ </plugin>
+ </plugins>
+ </reporting>
+ <distributionManagement>
+ <repository>
+ <id>repository.jboss.org</id>
+ <url>file:///home/alrubinger/business/jboss/wc/repository.jboss.org/maven2</url>
+ </repository>
+ <snapshotRepository>
+ <id>snapshots.jboss.org</id>
+ <name>JBoss Snapshot Repository</name>
+ <url>dav:https://snapshots.jboss.org/maven2</url>
+ </snapshotRepository>
+ </distributionManagement>
+ <properties>
+ <ejb3.outputDirectory>target/classes</ejb3.outputDirectory>
+ <ejb3.testOutputDirectory>target/tests-classes</ejb3.testOutputDirectory>
+ <version.org.jboss.microcontainer_jboss-deployers-core-spi>2.0.0.Beta9</version.org.jboss.microcontainer_jboss-deployers-core-spi>
+ <version.org.jboss.ws_jbossws-spi>1.0.2.GA</version.org.jboss.ws_jbossws-spi>
+ <version.org.jboss.microcontainer_jboss-kernel>2.0.0.Beta9</version.org.jboss.microcontainer_jboss-kernel>
+ <maven.repository.root>/home/alrubinger/business/jboss/wc/repository.jboss.org/maven2</maven.repository.root>
+ <version.org.jboss.microcontainer_jboss-container>2.0.0.Beta9</version.org.jboss.microcontainer_jboss-container>
+ <version.commons-validator_commons-validator>1.3.1</version.commons-validator_commons-validator>
+ <jboss.repository.root>/home/alrubinger/business/jboss/wc/repository.jboss.org</jboss.repository.root>
+ <version.junit_junit>4.4</version.junit_junit>
+ <version.org.jboss.aop_jboss-aop-aspects>2.0.0.CR7</version.org.jboss.aop_jboss-aop-aspects>
+ <version.ant_ant>1.6.5</version.ant_ant>
+ <jvmargs></jvmargs>
+ <version.org.jboss.aop_jboss-aop>2.0.0.CR7</version.org.jboss.aop_jboss-aop>
+ </properties>
+</project>
\ No newline at end of file
Added: maven2/org/jboss/ejb3/jboss-ejb3-build/0.13.1/jboss-ejb3-build-0.13.1.pom.md5
===================================================================
--- maven2/org/jboss/ejb3/jboss-ejb3-build/0.13.1/jboss-ejb3-build-0.13.1.pom.md5 (rev 0)
+++ maven2/org/jboss/ejb3/jboss-ejb3-build/0.13.1/jboss-ejb3-build-0.13.1.pom.md5 2008-04-13 11:38:40 UTC (rev 4515)
@@ -0,0 +1 @@
+dac65ed5834e1b1270b216f07acd7e5a
\ No newline at end of file
Added: maven2/org/jboss/ejb3/jboss-ejb3-build/0.13.1/jboss-ejb3-build-0.13.1.pom.sha1
===================================================================
--- maven2/org/jboss/ejb3/jboss-ejb3-build/0.13.1/jboss-ejb3-build-0.13.1.pom.sha1 (rev 0)
+++ maven2/org/jboss/ejb3/jboss-ejb3-build/0.13.1/jboss-ejb3-build-0.13.1.pom.sha1 2008-04-13 11:38:40 UTC (rev 4515)
@@ -0,0 +1 @@
+5fda0100542c74adc3fb94f8794c19d7fcea9a00
\ No newline at end of file
Added: maven2/org/jboss/ejb3/jboss-ejb3-build/0.13.2/jboss-ejb3-build-0.13.2.pom
===================================================================
--- maven2/org/jboss/ejb3/jboss-ejb3-build/0.13.2/jboss-ejb3-build-0.13.2.pom (rev 0)
+++ maven2/org/jboss/ejb3/jboss-ejb3-build/0.13.2/jboss-ejb3-build-0.13.2.pom 2008-04-13 11:38:40 UTC (rev 4515)
@@ -0,0 +1,410 @@
+<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>
+ <!--
+
+ This should be re-enabled after Plugin
+ configuration makes it into
+ release-pom.xml. Otherwise all builds
+ will break.
+
+
+ <version>4-beta-2</version> -->
+ <version>3</version>
+ </parent>
+
+ <!-- POM Model Version -->
+ <modelVersion>4.0.0</modelVersion>
+
+ <!-- Artifact Information -->
+ <groupId>org.jboss.ejb3</groupId>
+ <artifactId>jboss-ejb3-build</artifactId>
+ <version>0.13.2</version>
+ <packaging>pom</packaging>
+ <name>JBoss EJB 3.0 Build POM</name>
+ <url>http://labs.jboss.com/jbossejb3</url>
+ <description>The JBoss EJB 3.0 Build POM</description>
+
+ <!-- EJB3 Developers -->
+ <developers>
+ <developer>
+ <name>Carlo de Wolf</name>
+ <email>carlo.dewolf at jboss.com</email>
+ <organization>JBoss, a division of Red Hat, Inc.</organization>
+ <organizationUrl>http://www.jboss.com</organizationUrl>
+ <roles>
+ <role>Project Lead</role>
+ </roles>
+ <timezone>+1</timezone>
+ </developer>
+ <developer>
+ <name>Andrew Lee Rubinger</name>
+ <email>andrew.rubinger at jboss.org</email>
+ <organization>JBoss, a division of Red Hat, Inc.</organization>
+ <organizationUrl>http://www.jboss.com</organizationUrl>
+ <roles>
+ <role>Developer</role>
+ </roles>
+ <timezone>-5</timezone>
+ </developer>
+ </developers>
+
+ <!-- SCM -->
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/ejb3/tags/jboss-ejb3-build-0.13.2</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/ejb3/tags/jboss-ejb3-build-0.13.2</developerConnection>
+ <url>http://anonsvn.jboss.org/repos/jbossas/projects/ejb3/tags/jboss-ejb3-build-0.13.2</url>
+ </scm>
+
+ <!-- Issues -->
+ <issueManagement>
+ <system>jira</system>
+ <url>http://jira.jboss.com/jira/browse/EJBTHREE</url>
+ </issueManagement>
+
+ <!-- Properties -->
+ <properties>
+
+ <!-- Versioning -->
+
+ <!--
+
+ These versions will be picked up by
+ individual project POMs, should be centralized
+ here such that all modules of EJB3 have the same
+ dependencies.
+
+ -->
+
+ <!--
+
+ External
+
+ -->
+
+ <version.ant_ant>1.6.5</version.ant_ant>
+ <version.commons-validator_commons-validator>1.3.1</version.commons-validator_commons-validator>
+ <version.junit_junit>4.4</version.junit_junit>
+ <version.org.jboss.aop_jboss-aop>2.0.0.CR7</version.org.jboss.aop_jboss-aop>
+ <version.org.jboss.aop_jboss-aop-aspects>2.0.0.CR7</version.org.jboss.aop_jboss-aop-aspects>
+ <version.org.jboss.microcontainer_jboss-container>2.0.0.Beta9</version.org.jboss.microcontainer_jboss-container>
+ <version.org.jboss.microcontainer_jboss-deployers-core-spi>2.0.0.Beta9</version.org.jboss.microcontainer_jboss-deployers-core-spi>
+ <version.org.jboss.microcontainer_jboss-kernel>2.0.0.Beta9</version.org.jboss.microcontainer_jboss-kernel>
+ <version.org.jboss.ws_jbossws-spi>1.0.2.GA</version.org.jboss.ws_jbossws-spi>
+
+ <!-- Miscellaneous -->
+ <jvmargs />
+
+ </properties>
+
+ <!-- Build Configurations -->
+ <build>
+ <outputDirectory>${ejb3.outputDirectory}</outputDirectory>
+ <testOutputDirectory>${ejb3.testOutputDirectory}</testOutputDirectory>
+ <finalName>${artifactId}</finalName>
+ <plugins>
+
+ <!-- Compiler -->
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <inherited>true</inherited>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ <showDeprecation>false</showDeprecation>
+ <showWarnings>true</showWarnings>
+ <optimize>true</optimize>
+ <compilerVersion>1.5</compilerVersion>
+ <fork>false</fork>
+ </configuration>
+ </plugin>
+
+ <!-- Surefire (Tests) Plugin -->
+
+ <!--
+
+ To pass JVM Arguments (ie. Remote Debugging w/ suspend),
+ pass "jvmargs" as system property, ie:
+
+ mvn test -Djvmargs='-Xrunjdwp:transport=dt_socket,address=8788,server=y,suspend=y'
+
+ -->
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <printSummary>false</printSummary>
+ <testFailureIgnore>true</testFailureIgnore>
+ <includes>
+ <include>**/**TestCase.java</include>
+ <include>**/**TestSuite.java</include>
+ </includes>
+ <forkMode>once</forkMode>
+ <argLine>${jvmargs}</argLine>
+ </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/ejb3/tags
+ </tagBase>
+ </configuration>
+ </plugin>
+
+ <!-- Maven RAR Plugin Configuration -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-rar-plugin</artifactId>
+ <configuration>
+ <includeJar>true</includeJar>
+ <rarSourceDirectory>src/main/java</rarSourceDirectory>
+ <raXmlFile>src/main/resources/META-INF/ra.xml</raXmlFile>
+ </configuration>
+ </plugin>
+
+ <!-- JBoss Deploy Plugin -->
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jboss-deploy-plugin</artifactId>
+ <version>1.6</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>jboss-deploy</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <!-- Should be defined in local ~/.m2/settings.xml -->
+ <jbossDeployRoot>${jboss.repository.root}</jbossDeployRoot>
+ <groupId>jboss</groupId>
+ <removeArtifactVersion>true</removeArtifactVersion>
+ </configuration>
+ <inherited>true</inherited>
+ </plugin>
+
+ </plugins>
+ </build>
+
+ <!-- Reporting -->
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-project-info-reports-plugin</artifactId>
+ <reportSets>
+ <reportSet>
+ <reports>
+ <report>dependencies</report>
+ <report>issue-tracking</report>
+ <report>license</report>
+ <report>scm</report>
+ </reports>
+ </reportSet>
+ </reportSets>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>findbugs-maven-plugin</artifactId>
+ <version>1.0.0</version>
+ </plugin>
+ </plugins>
+ </reporting>
+
+ <!-- Dependencies -->
+ <dependencyManagement>
+ <dependencies>
+
+ <!--
+
+ External
+
+ -->
+ <!-- Apache Commons Validator -->
+ <dependency>
+ <groupId>commons-validator</groupId>
+ <artifactId>commons-validator</artifactId>
+ <version>
+ ${version.commons-validator_commons-validator}
+ </version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.jboss.logging</groupId>
+ <artifactId>jboss-logging-log4j</artifactId>
+ <version>2.0.5.GA</version>
+ <scope>runtime</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.jboss.logging</groupId>
+ <artifactId>jboss-logging-spi</artifactId>
+ <version>2.0.5.GA</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.jboss</groupId>
+ <artifactId>jboss-common-core</artifactId>
+ <version>2.2.5.GA</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.jboss.metadata</groupId>
+ <artifactId>jboss-metadata</artifactId>
+ <version>1.0.0.Beta7</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.jboss</groupId>
+ <artifactId>jboss-transaction-spi</artifactId>
+ <version>5.0.0.Beta4</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.jboss</groupId>
+ <artifactId>jnpserver</artifactId>
+ <version>5.0.0.Beta4</version>
+ <scope>test</scope>
+ </dependency>
+
+ <!-- JBoss AOP -->
+ <dependency>
+ <groupId>org.jboss.aop</groupId>
+ <artifactId>jboss-aop</artifactId>
+ <version>${version.org.jboss.aop_jboss-aop}</version>
+ </dependency>
+
+ <!-- JBoss AOP Aspects -->
+ <dependency>
+ <groupId>org.jboss.aop</groupId>
+ <artifactId>jboss-aop-aspects</artifactId>
+ <version>${version.org.jboss.aop_jboss-aop-aspects}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.jboss.javaee</groupId>
+ <artifactId>jboss-ejb-api</artifactId>
+ <version>3.0.0.Beta3Update1</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.jboss.javaee</groupId>
+ <artifactId>jboss-jacc-api</artifactId>
+ <version>1.1.0.Beta3Update1</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.jboss.javaee</groupId>
+ <artifactId>jboss-jca-api</artifactId>
+ <version>1.5.0.Beta3Update1</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.jboss.javaee</groupId>
+ <artifactId>jboss-persistence-api</artifactId>
+ <version>3.0.0.Beta3Update1</version>
+ </dependency>
+
+ <!-- JBoss Microcontainer -->
+ <dependency>
+ <groupId>org.jboss.microcontainer</groupId>
+ <artifactId>jboss-container</artifactId>
+ <version>${version.org.jboss.microcontainer_jboss-container}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.jboss.microcontainer</groupId>
+ <artifactId>jboss-kernel</artifactId>
+ <version>${version.org.jboss.microcontainer_jboss-kernel}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.jboss.microcontainer</groupId>
+ <artifactId>jboss-deployers-core-spi</artifactId>
+ <version>${version.org.jboss.microcontainer_jboss-deployers-core-spi}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.jboss.ws</groupId>
+ <artifactId>jbossws-spi</artifactId>
+ <version>${version.org.jboss.ws_jbossws-spi}</version>
+ </dependency>
+
+ <!-- JBoss Test -->
+ <dependency>
+ <groupId>org.jboss</groupId>
+ <artifactId>jboss-test</artifactId>
+ <version>1.0.5.GA</version>
+ <!-- TODO: was 1.0.6-SNAPSHOT -->
+ </dependency>
+
+ <!-- JUnit -->
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>${version.junit_junit}</version>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>trove</groupId>
+ <artifactId>trove</artifactId>
+ <version>1.0.2</version>
+ </dependency>
+
+ </dependencies>
+ </dependencyManagement>
+
+ <profiles>
+
+ <profile>
+ <id>default</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <properties>
+ <ejb3.outputDirectory>target/classes</ejb3.outputDirectory>
+ <ejb3.testOutputDirectory>
+ target/tests-classes
+ </ejb3.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>${ejb3.outputDirectory}</buildOutputDirectory>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <properties>
+ <ejb3.outputDirectory>eclipse-target/classes</ejb3.outputDirectory>
+ <ejb3.testOutputDirectory>eclipse-target/tests-classes</ejb3.testOutputDirectory>
+ </properties>
+ </profile>
+
+ </profiles>
+
+</project>
Added: maven2/org/jboss/ejb3/jboss-ejb3-build/0.13.2/jboss-ejb3-build-0.13.2.pom.md5
===================================================================
--- maven2/org/jboss/ejb3/jboss-ejb3-build/0.13.2/jboss-ejb3-build-0.13.2.pom.md5 (rev 0)
+++ maven2/org/jboss/ejb3/jboss-ejb3-build/0.13.2/jboss-ejb3-build-0.13.2.pom.md5 2008-04-13 11:38:40 UTC (rev 4515)
@@ -0,0 +1 @@
+9743fb374248388a4444adf495ee4d23
\ No newline at end of file
Added: maven2/org/jboss/ejb3/jboss-ejb3-build/0.13.2/jboss-ejb3-build-0.13.2.pom.sha1
===================================================================
--- maven2/org/jboss/ejb3/jboss-ejb3-build/0.13.2/jboss-ejb3-build-0.13.2.pom.sha1 (rev 0)
+++ maven2/org/jboss/ejb3/jboss-ejb3-build/0.13.2/jboss-ejb3-build-0.13.2.pom.sha1 2008-04-13 11:38:40 UTC (rev 4515)
@@ -0,0 +1 @@
+9e993c3ef04d61f17b074178e19d0b5f85474e08
\ No newline at end of file
Modified: maven2/org/jboss/ejb3/jboss-ejb3-build/maven-metadata.xml
===================================================================
--- maven2/org/jboss/ejb3/jboss-ejb3-build/maven-metadata.xml 2008-04-13 11:12:43 UTC (rev 4514)
+++ maven2/org/jboss/ejb3/jboss-ejb3-build/maven-metadata.xml 2008-04-13 11:38:40 UTC (rev 4515)
@@ -7,7 +7,9 @@
<versions>
<version>0.12.0</version>
<version>0.13.0</version>
+ <version>0.13.1</version>
+ <version>0.13.2</version>
</versions>
- <lastUpdated>20080402125953</lastUpdated>
+ <lastUpdated>20080413113748</lastUpdated>
</versioning>
-</metadata>
+</metadata>
\ No newline at end of file
Modified: maven2/org/jboss/ejb3/jboss-ejb3-build/maven-metadata.xml.md5
===================================================================
--- maven2/org/jboss/ejb3/jboss-ejb3-build/maven-metadata.xml.md5 2008-04-13 11:12:43 UTC (rev 4514)
+++ maven2/org/jboss/ejb3/jboss-ejb3-build/maven-metadata.xml.md5 2008-04-13 11:38:40 UTC (rev 4515)
@@ -1 +1 @@
-10dfab6b95e5a3f89c61f736913a5028
\ No newline at end of file
+a7f73e3ae9794c7e8d60a37b187b39d5
\ No newline at end of file
Modified: maven2/org/jboss/ejb3/jboss-ejb3-build/maven-metadata.xml.sha1
===================================================================
--- maven2/org/jboss/ejb3/jboss-ejb3-build/maven-metadata.xml.sha1 2008-04-13 11:12:43 UTC (rev 4514)
+++ maven2/org/jboss/ejb3/jboss-ejb3-build/maven-metadata.xml.sha1 2008-04-13 11:38:40 UTC (rev 4515)
@@ -1 +1 @@
-cc66498557b96497a4b71e67a0d2862c054ea812
\ No newline at end of file
+e0561c656a4f267aa82fa26a3945936385164463
\ No newline at end of file
More information about the jboss-cvs-commits
mailing list