[jboss-cvs] JBossAS SVN: r101355 - in projects/ejb3/components/vfs/tags: 1.0.0-alpha-1 and 4 other directories.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Tue Feb 23 18:00:52 EST 2010
Author: johnbailey
Date: 2010-02-23 18:00:51 -0500 (Tue, 23 Feb 2010)
New Revision: 101355
Added:
projects/ejb3/components/vfs/tags/1.0.0-alpha-1/
projects/ejb3/components/vfs/tags/1.0.0-alpha-1/build/pom.xml
projects/ejb3/components/vfs/tags/1.0.0-alpha-1/impl-vfs2/pom.xml
projects/ejb3/components/vfs/tags/1.0.0-alpha-1/impl-vfs3/pom.xml
projects/ejb3/components/vfs/tags/1.0.0-alpha-1/pom.xml
projects/ejb3/components/vfs/tags/1.0.0-alpha-1/spi/pom.xml
Removed:
projects/ejb3/components/vfs/tags/1.0.0-alpha-1/build/pom.xml
projects/ejb3/components/vfs/tags/1.0.0-alpha-1/impl-vfs2/pom.xml
projects/ejb3/components/vfs/tags/1.0.0-alpha-1/impl-vfs3/pom.xml
projects/ejb3/components/vfs/tags/1.0.0-alpha-1/pom.xml
projects/ejb3/components/vfs/tags/1.0.0-alpha-1/spi/pom.xml
Log:
[maven-release-plugin] copy for tag 1.0.0-alpha-1
Copied: projects/ejb3/components/vfs/tags/1.0.0-alpha-1 (from rev 101348, projects/ejb3/components/vfs/trunk)
Deleted: projects/ejb3/components/vfs/tags/1.0.0-alpha-1/build/pom.xml
===================================================================
--- projects/ejb3/components/vfs/trunk/build/pom.xml 2010-02-23 22:36:32 UTC (rev 101348)
+++ projects/ejb3/components/vfs/tags/1.0.0-alpha-1/build/pom.xml 2010-02-23 23:00:51 UTC (rev 101355)
@@ -1,192 +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.ejb3.vfs</groupId>
- <artifactId>jboss-ejb3-vfs-build</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <name>JBoss EJB 3.x VFS Abstraction Build Parent</name>
- <description>JBoss EJB 3.x Virtual File System Abstraction Build Parent</description>
- <packaging>pom</packaging>
-
- <!-- Properties -->
- <properties>
-
- <!-- Versioning -->
- <version.junit_junit>4.6</version.junit_junit>
-
- </properties>
-
- <!-- SCM -->
- <scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/ejb3/components/vfs/trunk</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/ejb3/components/vfs/trunk</developerConnection>
- <url>http://anonsvn.jboss.org/repos/jbossas/projects/ejb3/components/vfs/trunk</url>
- </scm>
-
- <!-- Issues -->
- <issueManagement>
- <system>jira</system>
- <url>http://jira.jboss.com/jira/browse/EJBTHREE</url>
- </issueManagement>
-
- <!-- Build -->
- <build>
-
- <plugins>
-
- <!-- Compiler / JDK6 required for EJB 3.1 -->
- <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>**/*UnitTest.java</include>
- </includes>
- <forkMode>always</forkMode>
- <useFile>true</useFile>
- </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/components/vfs/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>
- <requireJavaVersion>
- <version>1.6.0</version> <!-- Must be JDK6 -->
- </requireJavaVersion>
- <requireProperty>
- <property>env.JAVA_HOME</property>
- <message>"JAVA_HOME needs to be set to compile"</message>
- </requireProperty>
- </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>
-
- </dependencies>
- </dependencyManagement>
-
- <!-- Reporting -->
- <reporting>
- <plugins>
-
- <!-- Cobertura (Code Coverage) -->
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>cobertura-maven-plugin</artifactId>
- <configuration>
- <formats>
- <format>html</format>
- <format>xml</format>
- </formats>
- </configuration>
- </plugin>
-
- <!-- FindBugs -->
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>findbugs-maven-plugin</artifactId>
- <configuration>
- <xmlOutput>true</xmlOutput>
- <findbugsXmlOutputDirectory>target/site</findbugsXmlOutputDirectory>
- </configuration>
- </plugin>
-
- <!-- JavaDoc / APIViz -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>2.5</version>
- <configuration>
- <doclet>org.jboss.apiviz.APIviz</doclet>
- <docletArtifact>
- <groupId>org.jboss.apiviz</groupId>
- <artifactId>apiviz</artifactId>
- <version>1.3.0.GA</version>
- </docletArtifact>
- <useStandardDocletOptions>true</useStandardDocletOptions>
- <charset>UTF-8</charset>
- <encoding>UTF-8</encoding>
- <docencoding>UTF-8</docencoding>
- <breakiterator>true</breakiterator>
- <version>true</version>
- <author>true</author>
- <keywords>true</keywords>
- <additionalparam>
- -sourceclasspath ${project.build.outputDirectory}
- </additionalparam>
- </configuration>
- </plugin>
-
-
- </plugins>
- </reporting>
-
-</project>
-
Copied: projects/ejb3/components/vfs/tags/1.0.0-alpha-1/build/pom.xml (from rev 101353, projects/ejb3/components/vfs/trunk/build/pom.xml)
===================================================================
--- projects/ejb3/components/vfs/tags/1.0.0-alpha-1/build/pom.xml (rev 0)
+++ projects/ejb3/components/vfs/tags/1.0.0-alpha-1/build/pom.xml 2010-02-23 23:00:51 UTC (rev 101355)
@@ -0,0 +1,191 @@
+<?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.ejb3.vfs</groupId>
+ <artifactId>jboss-ejb3-vfs-build</artifactId>
+ <version>1.0.0-alpha-1</version>
+ <name>JBoss EJB 3.x VFS Abstraction Build Parent</name>
+ <description>JBoss EJB 3.x Virtual File System Abstraction Build Parent</description>
+ <packaging>pom</packaging>
+
+ <!-- Properties -->
+ <properties>
+
+ <!-- Versioning -->
+ <version.junit_junit>4.6</version.junit_junit>
+
+ </properties>
+
+ <!-- SCM -->
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/ejb3/components/vfs/tags/1.0.0-alpha-1</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/ejb3/components/vfs/tags/1.0.0-alpha-1</developerConnection>
+ <url>http://anonsvn.jboss.org/repos/jbossas/projects/ejb3/components/vfs/tags/1.0.0-alpha-1</url>
+ </scm>
+
+ <!-- Issues -->
+ <issueManagement>
+ <system>jira</system>
+ <url>http://jira.jboss.com/jira/browse/EJBTHREE</url>
+ </issueManagement>
+
+ <!-- Build -->
+ <build>
+
+ <plugins>
+
+ <!-- Compiler / JDK6 required for EJB 3.1 -->
+ <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>**/*UnitTest.java</include>
+ </includes>
+ <forkMode>always</forkMode>
+ <useFile>true</useFile>
+ </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/components/vfs/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>
+ <requireJavaVersion>
+ <version>1.6.0</version> <!-- Must be JDK6 -->
+ </requireJavaVersion>
+ <requireProperty>
+ <property>env.JAVA_HOME</property>
+ <message>"JAVA_HOME needs to be set to compile"</message>
+ </requireProperty>
+ </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>
+
+ </dependencies>
+ </dependencyManagement>
+
+ <!-- Reporting -->
+ <reporting>
+ <plugins>
+
+ <!-- Cobertura (Code Coverage) -->
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>cobertura-maven-plugin</artifactId>
+ <configuration>
+ <formats>
+ <format>html</format>
+ <format>xml</format>
+ </formats>
+ </configuration>
+ </plugin>
+
+ <!-- FindBugs -->
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>findbugs-maven-plugin</artifactId>
+ <configuration>
+ <xmlOutput>true</xmlOutput>
+ <findbugsXmlOutputDirectory>target/site</findbugsXmlOutputDirectory>
+ </configuration>
+ </plugin>
+
+ <!-- JavaDoc / APIViz -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.5</version>
+ <configuration>
+ <doclet>org.jboss.apiviz.APIviz</doclet>
+ <docletArtifact>
+ <groupId>org.jboss.apiviz</groupId>
+ <artifactId>apiviz</artifactId>
+ <version>1.3.0.GA</version>
+ </docletArtifact>
+ <useStandardDocletOptions>true</useStandardDocletOptions>
+ <charset>UTF-8</charset>
+ <encoding>UTF-8</encoding>
+ <docencoding>UTF-8</docencoding>
+ <breakiterator>true</breakiterator>
+ <version>true</version>
+ <author>true</author>
+ <keywords>true</keywords>
+ <additionalparam>
+ -sourceclasspath ${project.build.outputDirectory}
+ </additionalparam>
+ </configuration>
+ </plugin>
+
+
+ </plugins>
+ </reporting>
+
+</project>
+
Deleted: projects/ejb3/components/vfs/tags/1.0.0-alpha-1/impl-vfs2/pom.xml
===================================================================
--- projects/ejb3/components/vfs/trunk/impl-vfs2/pom.xml 2010-02-23 22:36:32 UTC (rev 101348)
+++ projects/ejb3/components/vfs/tags/1.0.0-alpha-1/impl-vfs2/pom.xml 2010-02-23 23:00:51 UTC (rev 101355)
@@ -1,61 +0,0 @@
-<!--
- 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">
-
- <!-- Define Parent -->
- <parent>
- <groupId>org.jboss.ejb3.vfs</groupId>
- <artifactId>jboss-ejb3-vfs-build</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <relativePath>../build/pom.xml</relativePath>
- </parent>
-
- <!-- Maven POM Model Version -->
- <modelVersion>4.0.0</modelVersion>
-
- <!-- Artifact Information -->
- <artifactId>jboss-ejb3-vfs-impl-vfs2</artifactId>
- <packaging>jar</packaging>
- <name>JBoss EJB 3.x VFS Abstraction Implementation for JBoss VFS2</name>
- <description>JBoss EJB 3.x Virtual File System Abstraction Implementation for JBoss VFS2</description>
-
- <!-- Build Configuration -->
- <build>
-
- </build>
-
- <properties>
- <!-- Versioning -->
- <version.jboss.vfs>2.1.3.SP1</version.jboss.vfs>
- <version.jboss.metadata.common>2.0.0-alpha-10</version.jboss.metadata.common>
- <version.jboss.test>1.1.4.GA</version.jboss.test>
- </properties>
-
- <dependencies>
- <dependency>
- <groupId>org.jboss.ejb3.vfs</groupId>
- <artifactId>jboss-ejb3-vfs-spi</artifactId>
- <version>${version}</version>
- </dependency>
- <dependency>
- <groupId>org.jboss</groupId>
- <artifactId>jboss-vfs</artifactId>
- <version>${version.jboss.vfs}</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.metadata</groupId>
- <artifactId>jboss-metadata-common</artifactId>
- <version>${version.jboss.metadata.common}</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.test</groupId>
- <artifactId>jboss-test</artifactId>
- <version>${version.jboss.test}</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
-
-</project>
Copied: projects/ejb3/components/vfs/tags/1.0.0-alpha-1/impl-vfs2/pom.xml (from rev 101353, projects/ejb3/components/vfs/trunk/impl-vfs2/pom.xml)
===================================================================
--- projects/ejb3/components/vfs/tags/1.0.0-alpha-1/impl-vfs2/pom.xml (rev 0)
+++ projects/ejb3/components/vfs/tags/1.0.0-alpha-1/impl-vfs2/pom.xml 2010-02-23 23:00:51 UTC (rev 101355)
@@ -0,0 +1,56 @@
+<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">
+
+ <!-- Define Parent -->
+ <parent>
+ <groupId>org.jboss.ejb3.vfs</groupId>
+ <artifactId>jboss-ejb3-vfs-build</artifactId>
+ <version>1.0.0-alpha-1</version>
+ <relativePath>../build/pom.xml</relativePath>
+ </parent>
+
+ <!-- Maven POM Model Version -->
+ <modelVersion>4.0.0</modelVersion>
+
+ <!-- Artifact Information -->
+ <artifactId>jboss-ejb3-vfs-impl-vfs2</artifactId>
+ <packaging>jar</packaging>
+ <name>JBoss EJB 3.x VFS Abstraction Implementation for JBoss VFS2</name>
+ <description>JBoss EJB 3.x Virtual File System Abstraction Implementation for JBoss VFS2</description>
+
+ <!-- Build Configuration -->
+ <build>
+
+ </build>
+
+ <properties>
+ <!-- Versioning -->
+ <version.jboss.vfs>2.1.3.SP1</version.jboss.vfs>
+ <version.jboss.metadata.common>2.0.0-alpha-10</version.jboss.metadata.common>
+ <version.jboss.test>1.1.4.GA</version.jboss.test>
+ </properties>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss.ejb3.vfs</groupId>
+ <artifactId>jboss-ejb3-vfs-spi</artifactId>
+ <version>${version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss</groupId>
+ <artifactId>jboss-vfs</artifactId>
+ <version>${version.jboss.vfs}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.metadata</groupId>
+ <artifactId>jboss-metadata-common</artifactId>
+ <version>${version.jboss.metadata.common}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.test</groupId>
+ <artifactId>jboss-test</artifactId>
+ <version>${version.jboss.test}</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+</project>
\ No newline at end of file
Deleted: projects/ejb3/components/vfs/tags/1.0.0-alpha-1/impl-vfs3/pom.xml
===================================================================
--- projects/ejb3/components/vfs/trunk/impl-vfs3/pom.xml 2010-02-23 22:36:32 UTC (rev 101348)
+++ projects/ejb3/components/vfs/tags/1.0.0-alpha-1/impl-vfs3/pom.xml 2010-02-23 23:00:51 UTC (rev 101355)
@@ -1,62 +0,0 @@
-<!--
- 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">
-
- <!-- Define Parent -->
- <parent>
- <groupId>org.jboss.ejb3.vfs</groupId>
- <artifactId>jboss-ejb3-vfs-build</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <relativePath>../build/pom.xml</relativePath>
- </parent>
-
- <!-- Maven POM Model Version -->
- <modelVersion>4.0.0</modelVersion>
-
- <!-- Artifact Information -->
- <artifactId>jboss-ejb3-vfs-impl-vfs3</artifactId>
- <packaging>jar</packaging>
- <name>JBoss EJB 3.x VFS Abstraction Implementation for JBoss VFS3</name>
- <description>JBoss EJB 3.x Virtual File System Abstraction Implementation for JBoss VFS3</description>
-
- <!-- Build Configuration -->
- <build>
-
-
- </build>
-
- <properties>
- <!-- Versioning -->
- <version.jboss.vfs>3.0.0.CR1</version.jboss.vfs>
- <version.jboss.metadata.common>2.0.0.Alpha11</version.jboss.metadata.common>
- <version.jboss.test>1.1.4.GA</version.jboss.test>
- </properties>
-
- <dependencies>
- <dependency>
- <groupId>org.jboss.ejb3.vfs</groupId>
- <artifactId>jboss-ejb3-vfs-spi</artifactId>
- <version>${version}</version>
- </dependency>
- <dependency>
- <groupId>org.jboss</groupId>
- <artifactId>jboss-vfs</artifactId>
- <version>${version.jboss.vfs}</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.metadata</groupId>
- <artifactId>jboss-metadata-common</artifactId>
- <version>${version.jboss.metadata.common}</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.test</groupId>
- <artifactId>jboss-test</artifactId>
- <version>${version.jboss.test}</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
-
-</project>
Copied: projects/ejb3/components/vfs/tags/1.0.0-alpha-1/impl-vfs3/pom.xml (from rev 101353, projects/ejb3/components/vfs/trunk/impl-vfs3/pom.xml)
===================================================================
--- projects/ejb3/components/vfs/tags/1.0.0-alpha-1/impl-vfs3/pom.xml (rev 0)
+++ projects/ejb3/components/vfs/tags/1.0.0-alpha-1/impl-vfs3/pom.xml 2010-02-23 23:00:51 UTC (rev 101355)
@@ -0,0 +1,57 @@
+<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">
+
+ <!-- Define Parent -->
+ <parent>
+ <groupId>org.jboss.ejb3.vfs</groupId>
+ <artifactId>jboss-ejb3-vfs-build</artifactId>
+ <version>1.0.0-alpha-1</version>
+ <relativePath>../build/pom.xml</relativePath>
+ </parent>
+
+ <!-- Maven POM Model Version -->
+ <modelVersion>4.0.0</modelVersion>
+
+ <!-- Artifact Information -->
+ <artifactId>jboss-ejb3-vfs-impl-vfs3</artifactId>
+ <packaging>jar</packaging>
+ <name>JBoss EJB 3.x VFS Abstraction Implementation for JBoss VFS3</name>
+ <description>JBoss EJB 3.x Virtual File System Abstraction Implementation for JBoss VFS3</description>
+
+ <!-- Build Configuration -->
+ <build>
+
+
+ </build>
+
+ <properties>
+ <!-- Versioning -->
+ <version.jboss.vfs>3.0.0.CR1</version.jboss.vfs>
+ <version.jboss.metadata.common>2.0.0.Alpha11</version.jboss.metadata.common>
+ <version.jboss.test>1.1.4.GA</version.jboss.test>
+ </properties>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss.ejb3.vfs</groupId>
+ <artifactId>jboss-ejb3-vfs-spi</artifactId>
+ <version>${version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss</groupId>
+ <artifactId>jboss-vfs</artifactId>
+ <version>${version.jboss.vfs}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.metadata</groupId>
+ <artifactId>jboss-metadata-common</artifactId>
+ <version>${version.jboss.metadata.common}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.test</groupId>
+ <artifactId>jboss-test</artifactId>
+ <version>${version.jboss.test}</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+</project>
\ No newline at end of file
Deleted: projects/ejb3/components/vfs/tags/1.0.0-alpha-1/pom.xml
===================================================================
--- projects/ejb3/components/vfs/trunk/pom.xml 2010-02-23 22:36:32 UTC (rev 101348)
+++ projects/ejb3/components/vfs/tags/1.0.0-alpha-1/pom.xml 2010-02-23 23:00:51 UTC (rev 101355)
@@ -1,51 +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 Information -->
- <modelVersion>4.0.0</modelVersion>
-
- <!-- Artifact Information -->
- <groupId>org.jboss.ejb3.vfs</groupId>
- <artifactId>vfs-parent</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <name>JBoss EJB 3.x VFS Abstraction Aggregator</name>
- <description>JBoss EJB 3.x Virtual File System Abstraction Aggregator</description>
-
- <!-- Plugin Configuration -->
- <build>
- <plugins>
-
- <!-- Deploy -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-deploy-plugin</artifactId>
- <configuration>
- <!-- Don't include this aggregator in the deployment -->
- <skip>true</skip>
- </configuration>
- </plugin>
-
- </plugins>
- </build>
-
- <!-- Aggregate Modules -->
- <modules>
- <module>spi</module>
- <module>build</module>
- <module>impl-vfs2</module>
- <module>impl-vfs3</module>
- </modules>
-
-</project>
Copied: projects/ejb3/components/vfs/tags/1.0.0-alpha-1/pom.xml (from rev 101353, projects/ejb3/components/vfs/trunk/pom.xml)
===================================================================
--- projects/ejb3/components/vfs/tags/1.0.0-alpha-1/pom.xml (rev 0)
+++ projects/ejb3/components/vfs/tags/1.0.0-alpha-1/pom.xml 2010-02-23 23:00:51 UTC (rev 101355)
@@ -0,0 +1,57 @@
+<?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 Information -->
+ <modelVersion>4.0.0</modelVersion>
+
+ <!-- Artifact Information -->
+ <groupId>org.jboss.ejb3.vfs</groupId>
+ <artifactId>jboss-ejb3-vfs-parent</artifactId>
+ <version>1.0.0-alpha-1</version>
+ <packaging>pom</packaging>
+ <name>JBoss EJB 3.x VFS Abstraction Aggregator</name>
+ <description>JBoss EJB 3.x Virtual File System Abstraction Aggregator</description>
+
+ <!-- SCM -->
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/ejb3/components/vfs/tags/1.0.0-alpha-1</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/ejb3/components/vfs/tags/1.0.0-alpha-1</developerConnection>
+ <url>http://anonsvn.jboss.org/repos/jbossas/projects/ejb3/components/vfs/tags/1.0.0-alpha-1</url>
+ </scm>
+
+ <!-- Plugin Configuration -->
+ <build>
+ <plugins>
+
+ <!-- Deploy -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <configuration>
+ <!-- Don't include this aggregator in the deployment -->
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+
+ </plugins>
+ </build>
+
+ <!-- Aggregate Modules -->
+ <modules>
+ <module>spi</module>
+ <module>build</module>
+ <module>impl-vfs2</module>
+ <module>impl-vfs3</module>
+ </modules>
+
+</project>
Deleted: projects/ejb3/components/vfs/tags/1.0.0-alpha-1/spi/pom.xml
===================================================================
--- projects/ejb3/components/vfs/trunk/spi/pom.xml 2010-02-23 22:36:32 UTC (rev 101348)
+++ projects/ejb3/components/vfs/tags/1.0.0-alpha-1/spi/pom.xml 2010-02-23 23:00:51 UTC (rev 101355)
@@ -1,56 +0,0 @@
-<!--
- 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">
-
- <!-- Define Parent -->
- <parent>
- <groupId>org.jboss.ejb3.vfs</groupId>
- <artifactId>jboss-ejb3-vfs-build</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <relativePath>../build/pom.xml</relativePath>
- </parent>
-
- <!-- Maven POM Model Version -->
- <modelVersion>4.0.0</modelVersion>
-
- <!-- Artifact Information -->
- <artifactId>jboss-ejb3-vfs-spi</artifactId>
- <packaging>jar</packaging>
- <name>JBoss EJB 3.x VFS Abstraction SPI</name>
- <description>JBoss EJB 3.x Virtual File System Abstraction Service Provider Interface</description>
-
- <!-- Build Configuration -->
- <build>
-
-
- </build>
-
- <properties>
-
- <!-- Versioning -->
-
-
- <version.jbossws.spi>1.0.3.GA</version.jbossws.spi>
- </properties>
-
- <dependencies>
-
- <!--
- Dependencies: org.jboss.ejb3
- -->
-
-
- <!--
- Dependencies: External to EJB3
- -->
- <dependency>
- <groupId>org.jboss.ws</groupId>
- <artifactId>jbossws-spi</artifactId>
- <version>${version.jbossws.spi}</version>
- </dependency>
-
- </dependencies>
-</project>
Copied: projects/ejb3/components/vfs/tags/1.0.0-alpha-1/spi/pom.xml (from rev 101353, projects/ejb3/components/vfs/trunk/spi/pom.xml)
===================================================================
--- projects/ejb3/components/vfs/tags/1.0.0-alpha-1/spi/pom.xml (rev 0)
+++ projects/ejb3/components/vfs/tags/1.0.0-alpha-1/spi/pom.xml 2010-02-23 23:00:51 UTC (rev 101355)
@@ -0,0 +1,51 @@
+<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">
+
+ <!-- Define Parent -->
+ <parent>
+ <groupId>org.jboss.ejb3.vfs</groupId>
+ <artifactId>jboss-ejb3-vfs-build</artifactId>
+ <version>1.0.0-alpha-1</version>
+ <relativePath>../build/pom.xml</relativePath>
+ </parent>
+
+ <!-- Maven POM Model Version -->
+ <modelVersion>4.0.0</modelVersion>
+
+ <!-- Artifact Information -->
+ <artifactId>jboss-ejb3-vfs-spi</artifactId>
+ <packaging>jar</packaging>
+ <name>JBoss EJB 3.x VFS Abstraction SPI</name>
+ <description>JBoss EJB 3.x Virtual File System Abstraction Service Provider Interface</description>
+
+ <!-- Build Configuration -->
+ <build>
+
+
+ </build>
+
+ <properties>
+
+ <!-- Versioning -->
+
+
+ <version.jbossws.spi>1.0.3.GA</version.jbossws.spi>
+ </properties>
+
+ <dependencies>
+
+ <!--
+ Dependencies: org.jboss.ejb3
+ -->
+
+
+ <!--
+ Dependencies: External to EJB3
+ -->
+ <dependency>
+ <groupId>org.jboss.ws</groupId>
+ <artifactId>jbossws-spi</artifactId>
+ <version>${version.jbossws.spi}</version>
+ </dependency>
+
+ </dependencies>
+</project>
\ No newline at end of file
More information about the jboss-cvs-commits
mailing list