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 ba...@apache.org on 2009/10/17 19:31:29 UTC

svn commit: r826281 - in /james/server/trunk/stage: org.guiceyfruit/poms/guice-2.0-beta-4.pom org.guiceyfruit/poms/parent-2.0-beta-4.pom pom.xml

Author: bago
Date: Sat Oct 17 17:31:28 2009
New Revision: 826281

URL: http://svn.apache.org/viewvc?rev=826281&view=rev
Log:
Trying to fix m2 build since guiceyfruit has been introduced.
Added 2 *third* *party* poms from guiceyfruit repository.

Added:
    james/server/trunk/stage/org.guiceyfruit/poms/guice-2.0-beta-4.pom   (with props)
    james/server/trunk/stage/org.guiceyfruit/poms/parent-2.0-beta-4.pom   (with props)
Modified:
    james/server/trunk/stage/pom.xml

Added: james/server/trunk/stage/org.guiceyfruit/poms/guice-2.0-beta-4.pom
URL: http://svn.apache.org/viewvc/james/server/trunk/stage/org.guiceyfruit/poms/guice-2.0-beta-4.pom?rev=826281&view=auto
==============================================================================
--- james/server/trunk/stage/org.guiceyfruit/poms/guice-2.0-beta-4.pom (added)
+++ james/server/trunk/stage/org.guiceyfruit/poms/guice-2.0-beta-4.pom Sat Oct 17 17:31:28 2009
@@ -0,0 +1,97 @@
+<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.guiceyfruit</groupId>
+    <artifactId>parent</artifactId>
+    <version>2.0-beta-4</version>
+  </parent>
+  <artifactId>guice</artifactId>
+  <packaging>pom</packaging>
+
+  <name>guice</name>
+  <url>http://code.google.com/p/google-guice/</url>
+  <dependencies>
+  </dependencies>
+
+  
+
+  <build>
+    <plugins>
+      <!-- Setting the compiler level to Java 5 -->
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <version>2.0</version>
+        <configuration>
+          <source>1.5</source>
+          <target>1.5</target>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-source-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>attach-sources</id>
+            <phase>verify</phase>
+            <goals>
+              <goal>jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+  <issueManagement>
+    <system>Google Code</system>
+    <url>http://code.google.com/p/google-guice/issues/list</url>
+  </issueManagement>
+  <licenses>
+    <license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <id>crazyboblee</id>
+      <email>Google, Inc.</email>
+      <name>Bob Lee</name>
+      <roles>
+        <role>Software Engineer</role>
+      </roles>
+    </developer>
+    <developer>
+      <id>kevinb9n</id>
+      <email>Google, Inc.</email>
+      <name>Kevin Bourrillion</name>
+      <roles>
+        <role>Senior Software Engineer</role>
+      </roles>
+    </developer>
+		<developer>
+			<id>limpbizkit</id>
+			<email>Google, Inc.</email>
+			<name>Jesse Wilson</name>
+			<roles>
+				<role>Software Engineer</role>
+			</roles>
+		</developer>
+  </developers>
+  <modules>
+    <module>core</module>
+    <module>servlet</module>
+    <module>spring</module>
+    <module>struts2-plugin</module>
+		<module>assistedinject</module>
+		
+		<!-- TODO requires jarjar integration -->
+    <!-- <module>commands</module> -->
+		<module>multibindings</module>
+		<module>throwingproviders</module>
+		<module>jsr250</module>
+  </modules>
+</project>

Propchange: james/server/trunk/stage/org.guiceyfruit/poms/guice-2.0-beta-4.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: james/server/trunk/stage/org.guiceyfruit/poms/parent-2.0-beta-4.pom
URL: http://svn.apache.org/viewvc/james/server/trunk/stage/org.guiceyfruit/poms/parent-2.0-beta-4.pom?rev=826281&view=auto
==============================================================================
--- james/server/trunk/stage/org.guiceyfruit/poms/parent-2.0-beta-4.pom (added)
+++ james/server/trunk/stage/org.guiceyfruit/poms/parent-2.0-beta-4.pom Sat Oct 17 17:31:28 2009
@@ -0,0 +1,198 @@
+<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.guiceyfruit</groupId>
+    <artifactId>parent</artifactId>
+    <version>2.0-beta-4</version>
+    <packaging>pom</packaging>
+
+    <name>GuiceyFruit Framework</name>
+    <url>http://guiceyfruit.googlecode.com/</url>
+
+    <properties>
+        <!-- allow it to be overloaded to specify a test module to override -->
+        <!-- see: http://code.google.com/p/guiceyfruit/wiki/Testing -->
+        <org.guiceyfruit.modules />
+    </properties>
+
+    <modules>
+        <module>guice</module>
+        <module>guiceyfruit-core</module>
+        <module>guiceyfruit-junit3</module>
+        <module>guiceyfruit-junit4</module>
+        <module>guiceyfruit-testng</module>
+        <module>guiceyfruit-spring-converter</module>
+    </modules>
+
+    <repositories>
+        <repository>
+            <id>guiceyfruit.release</id>
+            <name>GuiceyFruit Release Repository</name>
+            <url>http://guiceyfruit.googlecode.com/svn/repo/releases/</url>
+            <snapshots>
+                <enabled>false</enabled>
+            </snapshots>
+            <releases>
+                <enabled>true</enabled>
+            </releases>
+        </repository>
+    </repositories>
+
+    <distributionManagement>
+        <repository>
+            <id>guiceyfruit-release</id>
+            <name>GuicyFruit Maven repository of releases</name>
+            <url>dav:https://guiceyfruit.googlecode.com/svn/repo/releases</url>
+        </repository>
+        <snapshotRepository>
+            <id>guiceyfruit-snapshot</id>
+            <name>GuicyFruit Maven repository of snapshots</name>
+            <url>dav:https://guiceyfruit.googlecode.com/svn/repo/snapshots</url>
+            <uniqueVersion>false</uniqueVersion>
+        </snapshotRepository>
+    </distributionManagement>
+
+    <scm>
+        <connection>scm:svn:http://guiceyfruit.googlecode.com/svn/tags/2.0-beta-4</connection>
+        <developerConnection>scm:svn:https://guiceyfruit.googlecode.com/svn/tags/2.0-beta-4</developerConnection>
+        <url>http://guiceyfruit.googlecode.com/svn/tags/2.0-beta-4</url>
+    </scm>
+
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>junit</groupId>
+                <artifactId>junit</artifactId>
+                <version>3.8.1</version>
+            </dependency>
+            <dependency>
+                <groupId>org.hamcrest</groupId>
+                <artifactId>hamcrest-all</artifactId>
+                <version>1.2-dev1</version>
+            </dependency>
+            <dependency>
+                <groupId>org.easymock</groupId>
+                <artifactId>easymock</artifactId>
+                <version>2.2</version>
+                <scope>test</scope>
+            </dependency>
+            <dependency>
+                <groupId>org.easymock</groupId>
+                <artifactId>easymockclassextension</artifactId>
+                <version>2.2</version>
+                <scope>test</scope>
+            </dependency>
+
+            <dependency>
+                <groupId>javax.servlet</groupId>
+                <artifactId>servlet-api</artifactId>
+                <version>2.5</version>
+                <scope>provided</scope>
+            </dependency>
+
+            <dependency>
+                <groupId>org.springframework</groupId>
+                <artifactId>spring-core</artifactId>
+                <version>2.0.6</version>
+                <scope>test</scope>
+            </dependency>
+
+            <dependency>
+                <groupId>org.springframework</groupId>
+                <artifactId>spring-beans</artifactId>
+                <version>2.0.6</version>
+                <scope>test</scope>
+            </dependency>
+
+            <dependency>
+                <groupId>com.google.code.google-collections</groupId>
+                <artifactId>google-collect</artifactId>
+                <version>snapshot-20080530</version>
+            </dependency>
+
+            <dependency>
+                <groupId>cglib</groupId>
+                <artifactId>cglib</artifactId>
+                <version>2.2</version>
+            </dependency>
+
+            <dependency>
+                <groupId>asm</groupId>
+                <artifactId>asm</artifactId>
+                <version>3.1</version>
+            </dependency>
+
+            <dependency>
+                <groupId>aopalliance</groupId>
+                <artifactId>aopalliance</artifactId>
+                <version>1.0</version>
+            </dependency>
+
+            <dependency>
+                <groupId>commons-logging</groupId>
+                <artifactId>commons-logging</artifactId>
+                <version>1.0.4</version>
+                <scope>test</scope>
+            </dependency>
+
+        </dependencies>
+    </dependencyManagement>
+
+    <build>
+        <defaultGoal>install</defaultGoal>
+
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-compiler-plugin</artifactId>
+                    <configuration>
+                        <source>1.5</source>
+                        <target>1.5</target>
+                    </configuration>
+                </plugin>
+
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-idea-plugin</artifactId>
+                    <configuration>
+                        <downloadSources>true</downloadSources>
+                        <downloadJavadocs>true</downloadJavadocs>
+                    </configuration>
+                </plugin>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-release-plugin</artifactId>
+                    <configuration>
+                        <tagBase>https://guiceyfruit.googlecode.com/svn/tags</tagBase>
+                        <useReleaseProfile>false</useReleaseProfile>
+                        <preparationGoals>clean install</preparationGoals>
+                        <goals>deploy</goals>
+                        <arguments>-Prelease,deploy</arguments>
+                        <autoVersionSubmodules>true</autoVersionSubmodules>
+                    </configuration>
+                </plugin>
+
+
+            </plugins>
+        </pluginManagement>
+
+        <plugins>
+            <plugin>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <configuration>
+                    <!--forkMode>pertest</forkMode-->
+                    <childDelegation>false</childDelegation>
+                    <useFile>true</useFile>
+                    <failIfNoTests>false</failIfNoTests>
+
+                    <systemProperties>
+                        <property>
+                            <name>org.guiceyfruit.modules</name>
+                            <value>${org.guiceyfruit.modules}</value>
+                        </property>
+                    </systemProperties>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>
\ No newline at end of file

Propchange: james/server/trunk/stage/org.guiceyfruit/poms/parent-2.0-beta-4.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: james/server/trunk/stage/pom.xml
URL: http://svn.apache.org/viewvc/james/server/trunk/stage/pom.xml?rev=826281&r1=826280&r2=826281&view=diff
==============================================================================
--- james/server/trunk/stage/pom.xml (original)
+++ james/server/trunk/stage/pom.xml Sat Oct 17 17:31:28 2009
@@ -402,6 +402,16 @@
       <artifactId>guice-core</artifactId>
       <version>2.0-beta-4</version>
     </dependency>
+    <dependency>
+      <groupId>org.guiceyfruit</groupId>
+      <artifactId>guice</artifactId>
+      <version>2.0-beta-4</version>
+    </dependency>
+    <dependency>
+      <groupId>org.guiceyfruit</groupId>
+      <artifactId>parent</artifactId>
+      <version>2.0-beta-4</version>
+    </dependency>
   </dependencies>
   
   <build>



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