[webbeans-commits] Webbeans SVN: r2413 - in examples/trunk: se/numberguess and 1 other directory.

webbeans-commits at lists.jboss.org webbeans-commits at lists.jboss.org
Wed Apr 15 08:15:57 EDT 2009


Author: pete.muir at jboss.org
Date: 2009-04-15 08:15:57 -0400 (Wed, 15 Apr 2009)
New Revision: 2413

Modified:
   examples/trunk/pom.xml
   examples/trunk/se/numberguess/
   examples/trunk/se/numberguess/pom.xml
Log:
clean up slightly

Modified: examples/trunk/pom.xml
===================================================================
--- examples/trunk/pom.xml	2009-04-15 12:13:26 UTC (rev 2412)
+++ examples/trunk/pom.xml	2009-04-15 12:15:57 UTC (rev 2413)
@@ -51,6 +51,7 @@
       <module>translator</module>
       <module>login</module>
       <module>conversations</module>
+      <module>se/numberguess</module>
    </modules>
 
    <build>


Property changes on: examples/trunk/se/numberguess
___________________________________________________________________
Name: svn:ignore
   - nb-configuration.xml
nbactions.xml
target

   + 
nb-configuration.xml
nbactions.xml
target
.classpath
.settings
.project


Modified: examples/trunk/se/numberguess/pom.xml
===================================================================
--- examples/trunk/se/numberguess/pom.xml	2009-04-15 12:13:26 UTC (rev 2412)
+++ examples/trunk/se/numberguess/pom.xml	2009-04-15 12:15:57 UTC (rev 2413)
@@ -1,107 +1,68 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <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>
-        <artifactId>parent</artifactId>
+        <artifactId>webbeans-parent</artifactId>
         <groupId>org.jboss.webbeans</groupId>
         <version>1.0.0-SNAPSHOT</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
-    <groupId>org.jboss.webbeans</groupId>
-    <artifactId>number-guess-se</artifactId>
+    <groupId>org.jboss.webbeans.examples</groupId>
+    <artifactId>webbeans-numberguess-se</artifactId>
     <packaging>jar</packaging>
     <name>Number Guess SE</name>
-    <url>http://maven.apache.org</url>
 
-    <build>
-        <plugins>
-            <plugin>
-                <artifactId>maven-compiler-plugin</artifactId>
-                <version>2.0.2</version>
-                <configuration>
-                    <source>1.5</source>
-                    <target>1.5</target>
-                </configuration>
-            </plugin>
-            <plugin>
-                <groupId>org.codehaus.mojo</groupId>
-                <artifactId>jalopy-maven-plugin</artifactId>
-                <version>1.0-alpha-1</version>
-                <!-- This wipes out UNDO in IDEs. Run manually instead.
-                <executions>
-                    <execution>
-                        <phase>compile</phase>
-                        <goals>
-                            <goal>format</goal>
-                        </goals>
-                    </execution>
-                </executions>
-                -->
-            </plugin>
-            <plugin>
-                <groupId>com.google.code.maven-license-plugin</groupId>
-                <artifactId>maven-license-plugin</artifactId>
-                <version>1.4.0</version>
-                <configuration>
-                    <basedir>${basedir}</basedir>
-                    <header>${basedir}/src/etc/header.txt</header>
-                    <quiet>false</quiet>
-                    <failIfMissing>true</failIfMissing>
-                    <aggregate>false</aggregate>
-                    <encoding>UTF-8</encoding>
-                </configuration>
-                <executions>
-                    <execution>
-                        <phase>compile</phase>
-                        <goals>
-                            <goal>format</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
-        </plugins>
-    </build>
-
-    <repositories>
-        <repository>
-            <id>repository.jboss.org</id>
-            <name>JBoss Repository</name>
-            <url>http://repository.jboss.org/maven2</url>
-            <releases>
-            </releases>
-            <snapshots>
-                <enabled>false</enabled>
-            </snapshots>
-        </repository>
-        <repository>
-            <id>snapshots.jboss.org</id>
-            <name>JBoss Snapshots Repository</name>
-            <url>http://snapshots.jboss.org/maven2</url>
-            <releases>
-                <enabled>false</enabled>
-            </releases>
-            <snapshots>
-                <updatePolicy>always</updatePolicy>
-            </snapshots>
-        </repository>
-        <repository>
-            <id>repository.codehaus.org</id>
-            <name>Codehaus Repository</name>
-            <url>http://repository.codehaus.org</url>
-        </repository>
-    </repositories>
-
     <dependencies>
         <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <version>3.8.1</version>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
             <groupId>org.jboss.webbeans</groupId>
             <artifactId>se-module</artifactId>
-            <version>1.0.0-SNAPSHOT</version>
-            <scope>compile</scope>
         </dependency>
     </dependencies>
+    
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-jar-plugin</artifactId>
+				<configuration>
+					<archive>
+						<manifest>
+							<mainClass>org.jboss.webbeans.environment.se.StartMain</mainClass>
+						</manifest>
+					</archive>
+				</configuration>
+			</plugin>
+		</plugins>
+	</build>
+	
+	<profiles>
+		<profile>
+         <id>run</id>
+         <activation>
+         	<property>
+         		<name>run</name>
+         	</property>
+         </activation>
+         <build>
+         	<plugins>
+         		<plugin>
+         			<executions>
+                     <execution>
+                        <id>run</id>
+                        <phase>package</phase> 
+                        <goals>
+                        <goal>java</goal>
+                        </goals>
+                     </execution>
+                  </executions>
+		        		<groupId>org.codehaus.mojo</groupId>
+			         <artifactId>exec-maven-plugin</artifactId>
+		  				<configuration>
+		  					<mainClass>org.jboss.webbeans.environment.se.StartMain</mainClass>
+		  				</configuration>
+		  			</plugin>
+         	</plugins>
+         </build>
+    	</profile>
+	</profiles>
+    
 </project>




More information about the weld-commits mailing list