You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@labs.apache.org by no...@apache.org on 2009/06/27 15:47:12 UTC

svn commit: r788973 - /labs/hupa/pom.xml

Author: norman
Date: Sat Jun 27 13:47:12 2009
New Revision: 788973

URL: http://svn.apache.org/viewvc?rev=788973&view=rev
Log:
cleanup of repositories and dependencies

Modified:
    labs/hupa/pom.xml

Modified: labs/hupa/pom.xml
URL: http://svn.apache.org/viewvc/labs/hupa/pom.xml?rev=788973&r1=788972&r2=788973&view=diff
==============================================================================
--- labs/hupa/pom.xml (original)
+++ labs/hupa/pom.xml Sat Jun 27 13:47:12 2009
@@ -1,287 +1,282 @@
-<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>
-  <groupId>org.apache.hupa</groupId>
-  <artifactId>hupa</artifactId>
-  <name>Hupa</name>
-  <version>0.0.1-SNAPSHOT</version>
-  <description>
+<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>
+	<groupId>org.apache.hupa</groupId>
+	<artifactId>hupa</artifactId>
+	<name>Hupa</name>
+	<version>0.0.1-SNAPSHOT</version>
+	<description>
     Hupa is a GWT based Webmail
-  </description>
-  <url>http://labs.apache.org</url>
-  <inceptionYear>2009</inceptionYear>
-  
-   <licenses>
-    <license>
-      <name>Apache License, Version 2.0</name>
-      <url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
-      <distribution>repo</distribution>
-    </license>
-  </licenses>
-  
-  <developers>
-    <developer>
-      <id>norman</id>
-      <name>Norman Maurer</name>
-      <email>norman at apache.org</email>
-      <timezone>2</timezone>
-      <roles>
-        <role>Developer</role>
-      </roles>
-    </developer>
-  </developers>
-  
-  <issueManagement>
-    <system>JIRA</system>
-    <url>http://issues.apache.org/jira/browse/LABS</url>
-  </issueManagement>
-
-  <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/labs/hupa</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/labs/hupa</developerConnection>
-    <url>http://svn.apache.org/viewvc/labs/hupa</url>
-  </scm>
-
-  <repositories>
-  	<repository>
-      <id>gwt-maven</id>
-      <url>
-        http://gwt-maven.googlecode.com/svn/trunk/mavenrepo/
-      </url>
-    </repository>     
-    <repository>
-        <id>gwt-mvc</id>
-        <name>GWT MVC repository at googlecode</name>
-        <url>http://gwt-mvc.googlecode.com/svn/repository</url>
-    </repository>
-    <repository>
-        <id>columba</id>
-        <name>columba</name>
-        <url>https://columba.hora-obscura.de/dav_columba</url>
-    </repository>        
-  </repositories>
-
-  
-    <!-- include the GWT-Maven repo as plugin, and as standard -->
-    <pluginRepositories>
-       <pluginRepository>
-         <id>gwt-maven</id>
-         <url>http://gwt-maven.googlecode.com/svn/trunk/mavenrepo</url>
-       </pluginRepository>
-    </pluginRepositories>    
-    
-    <!--  convenience to define GWT version in one place -->
-    <properties>
-        <gwtVersion>1.6.4</gwtVersion>
-    </properties>
-
-    <build>
-        <plugins>
-          <plugin>
-            <artifactId>maven-site-plugin</artifactId>
-            <version>2.0-beta-5</version>
-          </plugin>
-        
-            <!--  configure the GWT-Maven plugin -->
-            <plugin>
-                <groupId>com.totsp.gwt</groupId>
-                <artifactId>maven-googlewebtoolkit2-plugin</artifactId>
-                <version>2.0-RC1</version>
-                <configuration>
-                    <logLevel>INFO</logLevel>
-                    <compileTargets>
-                        <value>org.apache.hupa.Hupa</value>
-                    </compileTargets>
-                    <runTarget>org.apache.hupa.Hupa/Hupa.html</runTarget>
-                    <style>DETAILED</style>
-                    <noServer>false</noServer>
-                    <extraJvmArgs>-Xmx512m</extraJvmArgs>
-                    
-                    <!--  this parameter is VERY important with automatic mode - has to match the version in your declared deps -->
-                    <!--  if this does not match (default if left out is 1.5.3) you will have mysterious errors -->
-                    <gwtVersion>${gwtVersion}</gwtVersion>
-                </configuration>
-                <executions>
-                    <execution>
-                        <goals>
-                        <!--
-                            <goal>mergewebxml</goal>
-                            <goal>i18n</goal>
-                            -->
-                            <goal>compile</goal>   
-                            <!--                          
-                            <goal>test</goal>
-                            -->
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
-            <!--  Use the dependency plugin to unpack gwt-dev-PLATFORM-libs.zip -->
-            <!--
-                (this is a replacement for the old "automatic" mode - useful if you
-                don't have GWT installed already, or you just want a maven way to
-                handle gwt deps)
-            -->
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-dependency-plugin</artifactId>
-                <executions>
-                    <execution>
-                        <id>unpack</id>
-                        <phase>compile</phase>
-                        <goals>
-                            <goal>unpack</goal>
-                        </goals>
-                        <configuration>
-                            <artifactItems>
-                                <artifactItem>
-                                    <groupId>com.google.gwt</groupId>
-                                    <artifactId>gwt-dev</artifactId>
-                                    <version>${gwtVersion}</version>
-                                    <classifier>${platform}-libs</classifier>
-                                    <type>zip</type>
-                                    <overWrite>false</overWrite>
-                                    <outputDirectory>${settings.localRepository}/com/google/gwt/gwt-dev/${gwtVersion}</outputDirectory>
-                                </artifactItem>
-                            </artifactItems>
-                        </configuration>
-                    </execution>
-                </executions>
-            </plugin>
-            <!--
-                If you want to use the target/web.xml file mergewebxml produces,
-                tell the war plugin to use it. 
-                Also, exclude what you want from the final artifact here. 
-            -->
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-war-plugin</artifactId>
-                <configuration>
-                    <webXml>target/web.xml</webXml>
-                    <warSourceExcludes>.gwt-tmp/**</warSourceExcludes>                  
-                </configuration>                
-            </plugin>
-            <!--  tell the compiler we can use 1.5 -->  
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-compiler-plugin</artifactId>
-                <configuration>
-                    <source>1.5</source>
-                    <target>1.5</target>
-                </configuration>
-            </plugin>       
-        </plugins>
-    </build>
-    
-    <!--  profiles (with activation per platform) -->
-    <profiles>
-        <profile>
-            <id>gwt-dev-windows</id>
-            <properties>
-                <platform>windows</platform>
-            </properties>
-            <activation>
-                <activeByDefault>true</activeByDefault>
-                <os>
-                    <family>windows</family>
-                </os>
-            </activation>
-        </profile>
-        <profile>
-            <id>gwt-dev-mac</id>
-            <properties>
-                <platform>mac</platform>
-            </properties>
-            <activation>
-                <activeByDefault>false</activeByDefault>
-                <os>
-                    <family>mac</family>
-                </os>
-            </activation>
-        </profile>
-        <profile>
-            <id>gwt-dev-linux</id>
-            <properties>
-                <platform>linux</platform>
-            </properties>
-            <activation>
-                <activeByDefault>false</activeByDefault>
-                <os>
-                    <name>linux</name>
-                </os>
-            </activation>
-        </profile>
-    </profiles>
-  
-  <dependencies>
-   <dependency>
-      <groupId>commons-lang</groupId>
-      <artifactId>commons-lang</artifactId>
-      <version>2.4</version>
-    </dependency> 
-    
-  	<dependency>
-  		<groupId>org.columba</groupId>
-  		<artifactId>ristretto-common</artifactId>
-  		<version>1.0</version>
-  	</dependency>
-   	<dependency>
-  		<groupId>org.columba</groupId>
-  		<artifactId>ristretto-imap</artifactId>
-  		<version>1.0</version>
-  	</dependency>
-   	<dependency>
-  		<groupId>org.columba</groupId>
-  		<artifactId>ristretto-smtp</artifactId>
-  		<version>1.0</version>
-  	</dependency>
-  	<dependency>
-  		<groupId>org.cobogw </groupId>
-  		<artifactId>gwt</artifactId>
-  		<version>1.2.4</version>
-  	</dependency>
-  	<dependency>
-      <groupId>net.sf.gwt-widget</groupId>
-      <artifactId>gwt-widgets</artifactId>
-      <version>0.2.0</version>
-    </dependency> 
-    <dependency>
-  		<groupId>gwt-mvc</groupId>
-  		<artifactId>gwt-mvc</artifactId>
-  		<version>0.2.1-gwt-1.6</version>
-   	</dependency>
-          <!--  GWT deps (from central repo) -->
-        <dependency>
-            <groupId>com.google.gwt</groupId>
-            <artifactId>gwt-servlet</artifactId>
-            <version>${gwtVersion}</version>
-            <scope>runtime</scope>
-        </dependency>
-        <dependency>
-            <groupId>com.google.gwt</groupId>
-            <artifactId>gwt-user</artifactId>
-            <version>${gwtVersion}</version>
-            <scope>provided</scope>
-        </dependency>
-        <dependency>
-            <groupId>com.google.gwt</groupId>
-            <artifactId>gwt-dev</artifactId>
-            <version>${gwtVersion}</version>
-            <classifier>${platform}-libs</classifier>
-            <type>zip</type>
-            <scope>provided</scope>
-        </dependency>
-        <dependency>
-            <groupId>com.google.gwt</groupId>
-            <artifactId>gwt-dev</artifactId>
-            <version>${gwtVersion}</version>
-            <classifier>${platform}</classifier>
-            <scope>provided</scope>
-        </dependency>
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <version>4.1</version>
-            <scope>test</scope>
-        </dependency>
-  </dependencies>
+    </description>
+	<url>http://labs.apache.org</url>
+	<inceptionYear>2009</inceptionYear>
+
+	<licenses>
+		<license>
+			<name>Apache License, Version 2.0</name>
+			<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
+			<distribution>repo</distribution>
+		</license>
+	</licenses>
+
+	<developers>
+		<developer>
+			<id>norman</id>
+			<name>Norman Maurer</name>
+			<email>norman at apache.org</email>
+			<timezone>2</timezone>
+			<roles>
+				<role>Developer</role>
+			</roles>
+		</developer>
+	</developers>
+
+	<issueManagement>
+		<system>JIRA</system>
+		<url>http://issues.apache.org/jira/browse/LABS</url>
+	</issueManagement>
+
+	<scm>
+		<connection>scm:svn:http://svn.apache.org/repos/asf/labs/hupa</connection>
+		<developerConnection>scm:svn:https://svn.apache.org/repos/asf/labs/hupa</developerConnection>
+		<url>http://svn.apache.org/viewvc/labs/hupa</url>
+	</scm>
+
+	<repositories>
+		<repository>
+			<id>gwt-maven</id>
+			<url>http://gwt-maven.googlecode.com/svn/trunk/mavenrepo/</url>
+		</repository>
+		<repository>
+			<id>gwt-mvc</id>
+			<name>GWT MVC repository at googlecode</name>
+			<url>http://gwt-mvc.googlecode.com/svn/repository</url>
+		</repository>
+	</repositories>
+
+
+	<!-- include the GWT-Maven repo as plugin, and as standard -->
+	<pluginRepositories>
+		<pluginRepository>
+			<id>gwt-maven</id>
+			<url>http://gwt-maven.googlecode.com/svn/trunk/mavenrepo</url>
+		</pluginRepository>
+	</pluginRepositories>
+
+	<!--  convenience to define GWT version in one place -->
+	<properties>
+		<gwtVersion>1.6.4</gwtVersion>
+	</properties>
+
+	<build>
+		<plugins>
+			<plugin>
+				<artifactId>maven-site-plugin</artifactId>
+				<version>2.0-beta-5</version>
+			</plugin>
+
+			<!--  configure the GWT-Maven plugin -->
+			<plugin>
+				<groupId>com.totsp.gwt</groupId>
+				<artifactId>maven-googlewebtoolkit2-plugin</artifactId>
+				<version>2.0-RC1</version>
+				<configuration>
+					<logLevel>INFO</logLevel>
+					<compileTargets>
+						<value>org.apache.hupa.Hupa</value>
+					</compileTargets>
+					<runTarget>org.apache.hupa.Hupa/Hupa.html</runTarget>
+					<style>DETAILED</style>
+					<noServer>false</noServer>
+					<extraJvmArgs>-Xmx512m</extraJvmArgs>
+
+					<!--
+						this parameter is VERY important with automatic mode - has to
+						match the version in your declared deps
+					-->
+					<!--
+						if this does not match (default if left out is 1.5.3) you will
+						have mysterious errors
+					-->
+					<gwtVersion>${gwtVersion}</gwtVersion>
+				</configuration>
+				<executions>
+					<execution>
+						<goals>
+							<!--
+								<goal>mergewebxml</goal> <goal>i18n</goal>
+							-->
+							<goal>compile</goal>
+							<!--
+								<goal>test</goal>
+							-->
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+			<!--  Use the dependency plugin to unpack gwt-dev-PLATFORM-libs.zip -->
+			<!--
+				(this is a replacement for the old "automatic" mode - useful if you
+				don't have GWT installed already, or you just want a maven way to
+				handle gwt deps)
+			-->
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-dependency-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>unpack</id>
+						<phase>compile</phase>
+						<goals>
+							<goal>unpack</goal>
+						</goals>
+						<configuration>
+							<artifactItems>
+								<artifactItem>
+									<groupId>com.google.gwt</groupId>
+									<artifactId>gwt-dev</artifactId>
+									<version>${gwtVersion}</version>
+									<classifier>${platform}-libs</classifier>
+									<type>zip</type>
+									<overWrite>false</overWrite>
+									<outputDirectory>${settings.localRepository}/com/google/gwt/gwt-dev/${gwtVersion}</outputDirectory>
+								</artifactItem>
+							</artifactItems>
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>
+			<!--
+				If you want to use the target/web.xml file mergewebxml produces,
+				tell the war plugin to use it. Also, exclude what you want from the
+				final artifact here.
+			-->
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-war-plugin</artifactId>
+				<configuration>
+					<webXml>target/web.xml</webXml>
+					<warSourceExcludes>.gwt-tmp/**</warSourceExcludes>
+				</configuration>
+			</plugin>
+			<!--  tell the compiler we can use 1.5 -->
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<configuration>
+					<source>1.5</source>
+					<target>1.5</target>
+				</configuration>
+			</plugin>
+		</plugins>
+	</build>
+
+	<!--  profiles (with activation per platform) -->
+	<profiles>
+		<profile>
+			<id>gwt-dev-windows</id>
+			<properties>
+				<platform>windows</platform>
+			</properties>
+			<activation>
+				<activeByDefault>true</activeByDefault>
+				<os>
+					<family>windows</family>
+				</os>
+			</activation>
+		</profile>
+		<profile>
+			<id>gwt-dev-mac</id>
+			<properties>
+				<platform>mac</platform>
+			</properties>
+			<activation>
+				<activeByDefault>false</activeByDefault>
+				<os>
+					<family>mac</family>
+				</os>
+			</activation>
+		</profile>
+		<profile>
+			<id>gwt-dev-linux</id>
+			<properties>
+				<platform>linux</platform>
+			</properties>
+			<activation>
+				<activeByDefault>false</activeByDefault>
+				<os>
+					<name>linux</name>
+				</os>
+			</activation>
+		</profile>
+	</profiles>
+
+	<dependencies>
+		<dependency>
+			<groupId>commons-lang</groupId>
+			<artifactId>commons-lang</artifactId>
+			<version>2.4</version>
+		</dependency>
+
+		<dependency>
+			<groupId>org.columba</groupId>
+			<artifactId>ristretto-common</artifactId>
+			<version>1.0</version>
+		</dependency>
+		<dependency>
+			<groupId>org.columba</groupId>
+			<artifactId>ristretto-imap</artifactId>
+			<version>1.0</version>
+		</dependency>
+		<dependency>
+			<groupId>org.columba</groupId>
+			<artifactId>ristretto-smtp</artifactId>
+			<version>1.0</version>
+		</dependency>
+		<dependency>
+			<groupId>org.cobogw </groupId>
+			<artifactId>gwt</artifactId>
+			<version>1.2.4</version>
+		</dependency>
+		<dependency>
+			<groupId>gwt-mvc</groupId>
+			<artifactId>gwt-mvc</artifactId>
+			<version>0.2.1-gwt-1.6</version>
+		</dependency>
+		
+		<!--  GWT deps (from central repo) -->
+		<dependency>
+			<groupId>com.google.gwt</groupId>
+			<artifactId>gwt-servlet</artifactId>
+			<version>${gwtVersion}</version>
+			<scope>runtime</scope>
+		</dependency>
+		<dependency>
+			<groupId>com.google.gwt</groupId>
+			<artifactId>gwt-user</artifactId>
+			<version>${gwtVersion}</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>com.google.gwt</groupId>
+			<artifactId>gwt-dev</artifactId>
+			<version>${gwtVersion}</version>
+			<classifier>${platform}-libs</classifier>
+			<type>zip</type>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>com.google.gwt</groupId>
+			<artifactId>gwt-dev</artifactId>
+			<version>${gwtVersion}</version>
+			<classifier>${platform}</classifier>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+			<version>4.1</version>
+			<scope>test</scope>
+		</dependency>
+	</dependencies>
 </project>
\ No newline at end of file



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@labs.apache.org
For additional commands, e-mail: commits-help@labs.apache.org