[jboss-cvs] JBossAS SVN: r69063 - in projects/ejb3/trunk: installer and 5 other directories.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Thu Jan 17 00:19:18 EST 2008
Author: ALRubinger
Date: 2008-01-17 00:19:18 -0500 (Thu, 17 Jan 2008)
New Revision: 69063
Added:
projects/ejb3/trunk/installer-assembly/
projects/ejb3/trunk/installer-assembly/.classpath
projects/ejb3/trunk/installer-assembly/.project
projects/ejb3/trunk/installer-assembly/pom.xml
projects/ejb3/trunk/installer-assembly/src/
projects/ejb3/trunk/installer-assembly/src/main/
projects/ejb3/trunk/installer-assembly/src/main/java/
projects/ejb3/trunk/installer-assembly/src/main/resources/
projects/ejb3/trunk/installer-assembly/src/main/resources/installer.xml
projects/ejb3/trunk/installer-assembly/src/test/
projects/ejb3/trunk/installer-assembly/src/test/java/
projects/ejb3/trunk/installer-assembly/src/test/resources/
projects/ejb3/trunk/installer-assembly/target/
Removed:
projects/ejb3/trunk/assembly/
Modified:
projects/ejb3/trunk/installer/pom.xml
Log:
Added EJB3 Installer Assembly Project to generate Executable Installer JAR
Modified: projects/ejb3/trunk/installer/pom.xml
===================================================================
--- projects/ejb3/trunk/installer/pom.xml 2008-01-17 04:49:11 UTC (rev 69062)
+++ projects/ejb3/trunk/installer/pom.xml 2008-01-17 05:19:18 UTC (rev 69063)
@@ -29,7 +29,7 @@
<groupId>org.jboss.ejb3</groupId>
<artifactId>jboss-ejb3-installer</artifactId>
<version>0.1.0-SNAPSHOT</version>
- <name>JBoss EJB 3.0 Installer</name>
+ <name>JBoss EJB 3.0 Plugin Installer</name>
<description>Installer to patch existing JBoss AS 5.0.x Installation w/ EJB3 Plugin</description>
<!-- Properties -->
Property changes on: projects/ejb3/trunk/installer-assembly
___________________________________________________________________
Name: svn:ignore
+ target
Added: projects/ejb3/trunk/installer-assembly/.classpath
===================================================================
--- projects/ejb3/trunk/installer-assembly/.classpath (rev 0)
+++ projects/ejb3/trunk/installer-assembly/.classpath 2008-01-17 05:19:18 UTC (rev 69063)
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+ <classpathentry kind="src" path="src/main/java"/>
+ <classpathentry kind="src" path="src/main/resources"/>
+ <classpathentry kind="src" output="target/test-classes" path="src/test/java"/>
+ <classpathentry kind="src" output="target/test-classes" path="src/test/resources"/>
+ <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>
Added: projects/ejb3/trunk/installer-assembly/.project
===================================================================
--- projects/ejb3/trunk/installer-assembly/.project (rev 0)
+++ projects/ejb3/trunk/installer-assembly/.project 2008-01-17 05:19:18 UTC (rev 69063)
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>jboss-ejb3-installer-assembly</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.maven.ide.eclipse.maven2Builder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.eclipse.jdt.core.javabuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.jdt.core.javanature</nature>
+ <nature>org.maven.ide.eclipse.maven2Nature</nature>
+ </natures>
+</projectDescription>
Added: projects/ejb3/trunk/installer-assembly/pom.xml
===================================================================
--- projects/ejb3/trunk/installer-assembly/pom.xml (rev 0)
+++ projects/ejb3/trunk/installer-assembly/pom.xml 2008-01-17 05:19:18 UTC (rev 69063)
@@ -0,0 +1,68 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ vi:ts=2:sw=2:expandtab:
+-->
+
+<!--
+
+ This POM serves as Assembly for the JBoss EJB3 Plugin Installer
+
+ -->
+<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">
+
+ <!-- Artifact Configuration -->
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>jorg.jboss.ejb3</groupId>
+ <artifactId>jboss-ejb3-installer-assembly</artifactId>
+ <version>0.1.0-SNAPSHOT</version>
+ <name>JBoss EJB 3.0 Plugin Installer Assembly</name>
+ <description>JBoss EJB3 Plugin Installer Assembly</description>
+ <packaging>pom</packaging>
+
+ <!-- Modules -->
+ <modules>
+ <module>../core</module>
+ <module>../cache</module>
+ <module>../ext-api</module>
+ <module>../ext-api-impl</module>
+ <module>../injection</module>
+ <module>../installer</module>
+ <module>../interceptors</module>
+ <module>../metadata</module>
+ <module>../pool</module>
+ </modules>
+
+ <!-- Build Configuration -->
+ <build>
+
+ <plugins>
+ <!-- Assembly Plugin -->
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <goals>
+ <goal>assembly</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <descriptors>
+ <descriptor>src/main/resources/installer.xml</descriptor>
+ </descriptors>
+ <archive>
+ <manifest>
+ <mainClass>org.jboss.ejb3.installer.Installer</mainClass>
+ </manifest>
+ </archive>
+ </configuration>
+ <inherited>false</inherited>
+ </plugin>
+
+ </plugins>
+ </build>
+
+</project>
\ No newline at end of file
Added: projects/ejb3/trunk/installer-assembly/src/main/resources/installer.xml
===================================================================
--- projects/ejb3/trunk/installer-assembly/src/main/resources/installer.xml (rev 0)
+++ projects/ejb3/trunk/installer-assembly/src/main/resources/installer.xml 2008-01-17 05:19:18 UTC (rev 69063)
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ vi:ts=2:sw=2:expandtab:
+-->
+<assembly 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/xsd/assembly-1.1.0-SNAPSHOT.xsd"
+>
+ <id>installer</id>
+ <formats>
+ <format>jar</format>
+ </formats>
+ <includeBaseDirectory>false</includeBaseDirectory>
+ <moduleSets>
+ <moduleSet>
+ <includes>
+ <include>org.jboss.ejb3:jboss-ejb3-cache</include>
+ <include>org.jboss.ejb3:jboss-ejb3-core</include>
+ <include>org.jboss.ejb3:jboss-ejb3-ext-api</include>
+ <include>org.jboss.ejb3:jboss-ejb3-ext-api-impl</include>
+ <include>org.jboss.ejb3:jboss-ejb3-interceptors</include>
+ <include>org.jboss.ejb3:jboss-ejb3-metadata</include>
+ <include>org.jboss.ejb3:jboss-ejb3-pool</include>
+ </includes>
+ <binaries>
+ <unpack>false</unpack>
+ <includeDependencies>false</includeDependencies>
+ <outputDirectory>lib</outputDirectory>
+ <outputFileNameMapping>${artifactId}.${extension}</outputFileNameMapping>
+ </binaries>
+ </moduleSet>
+ <moduleSet>
+ <includes>
+ <include>org.jboss.ejb3:jboss-ejb3-installer</include>
+ </includes>
+ <binaries>
+ <unpack>true</unpack>
+ <includeDependencies>false</includeDependencies>
+ <dependencySets>
+ <dependencySet>
+ <includes>
+ <include>ant-contrib:ant-contrib</include>
+ </includes>
+ <unpack>false</unpack>
+ <outputFileNameMapping>${artifactId}.${extension}</outputFileNameMapping>
+ <outputDirectory>lib</outputDirectory>
+ </dependencySet>
+ </dependencySets>
+ <outputFileNameMapping></outputFileNameMapping>
+ <outputDirectory></outputDirectory>
+ </binaries>
+ </moduleSet>
+ </moduleSets>
+</assembly>
\ No newline at end of file
More information about the jboss-cvs-commits
mailing list