You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by no...@apache.org on 2009/11/22 09:57:19 UTC

svn commit: r883049 - /james/hupa/trunk/widgets/pom.xml

Author: norman
Date: Sun Nov 22 08:57:18 2009
New Revision: 883049

URL: http://svn.apache.org/viewvc?rev=883049&view=rev
Log:
Make sure that java,class,gwt.xml files get included in the jar so its usable by other gwt projects too

Modified:
    james/hupa/trunk/widgets/pom.xml

Modified: james/hupa/trunk/widgets/pom.xml
URL: http://svn.apache.org/viewvc/james/hupa/trunk/widgets/pom.xml?rev=883049&r1=883048&r2=883049&view=diff
==============================================================================
--- james/hupa/trunk/widgets/pom.xml (original)
+++ james/hupa/trunk/widgets/pom.xml Sun Nov 22 08:57:18 2009
@@ -15,20 +15,22 @@
 	</parent>
 
 	<build>
-		<plugins>
-			<plugin>
-				<groupId>org.codehaus.mojo</groupId>
-				<artifactId>gwt-maven-plugin</artifactId>
-				<executions>
-					<!-- GWT version detected from dependencyManagement -->
-					<execution>
-						<goals>
-							<goal>resources</goal>
-						</goals>
-					</execution>
-				</executions>
-			</plugin>
-		</plugins>
+	<resources>
+      <resource>
+        <directory>src/main/java</directory>
+        <includes>
+          <include>**/*.java</include>
+          <include>**/*.gwt.xml</include>
+        </includes>
+      </resource>
+      <resource>
+        <directory>src/main/resources</directory>
+        <includes>
+          <include>**/*.*</include>
+        </includes>
+      </resource>
+    </resources>
+
 	</build>
 
 	<dependencies>



---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org