Author: ataylor
Date: 2011-04-12 15:30:32 -0400 (Tue, 12 Apr 2011)
New Revision: 10494
Added:
trunk/examples/pom.xml
trunk/examples/src/
trunk/examples/src/main/
trunk/examples/src/main/resources/
Modified:
trunk/distribution/src/main/assembly/dep.xml
trunk/pom.xml
Log:
mavenised examples
Modified: trunk/distribution/src/main/assembly/dep.xml
===================================================================
--- trunk/distribution/src/main/assembly/dep.xml 2011-04-12 18:42:56 UTC (rev 10493)
+++ trunk/distribution/src/main/assembly/dep.xml 2011-04-12 19:30:32 UTC (rev 10494)
@@ -126,7 +126,8 @@
<outputDirectory>lib</outputDirectory>
<unpack>false</unpack>
</binaries>
- </moduleSet><!--
+ </moduleSet>
+ <!--
<moduleSet>
<useAllReactorProjects>true</useAllReactorProjects>
<includes>
Added: trunk/examples/pom.xml
===================================================================
--- trunk/examples/pom.xml (rev 0)
+++ trunk/examples/pom.xml 2011-04-12 19:30:32 UTC (rev 10494)
@@ -0,0 +1,40 @@
+<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>
+
+ <parent>
+ <groupId>org.hornetq</groupId>
+ <artifactId>hornetq-pom</artifactId>
+ <version>2.2.3-SNAPSHOT</version>
+ </parent>
+
+ <groupId>org.hornetq</groupId>
+ <artifactId>hornetq-examples</artifactId>
+ <packaging>jar</packaging>
+ <name>HornetQ Examples</name>
+
+ <build>
+ <resources>
+ <resource>
+ <directory>src/main/resources</directory>
+ <filtering>true</filtering>
+ </resource>
+ </resources>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>2.2</version>
+ <configuration>
+ <archive>
+ <manifestEntries>
+ <HornetQ-Version>${HornetQ-Version}</HornetQ-Version>
+ <HornetQ-SVN-URL>${HornetQ-SVN-URL}</HornetQ-SVN-URL>
+ </manifestEntries>
+ </archive>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2011-04-12 18:42:56 UTC (rev 10493)
+++ trunk/pom.xml 2011-04-12 19:30:32 UTC (rev 10494)
@@ -108,6 +108,7 @@
<module>hornetq-spring-integration</module>
<module>hornetq-service-sar</module>
<module>tests</module>
+ <module>examples</module>
<module>distribution</module>
</modules>