Author: gk5885
Date: Tue Jan 20 11:46:34 2009
New Revision: 806
Added:
branches/1.0-maven/guice-parent/
branches/1.0-maven/guice-parent/pom.xml (contents, props changed)
branches/1.0-maven/integration-parent/
branches/1.0-maven/integration-parent/pom.xml (contents, props changed)
branches/1.0-maven/servlet/pom.xml (contents, props changed)
branches/1.0-maven/spring/pom.xml (contents, props changed)
branches/1.0-maven/struts2/plugin/pom.xml (contents, props changed)
Modified:
branches/1.0-maven/pom.xml
Log:
Adds maven metadata to the existing 1.0 release.
Added: branches/1.0-maven/guice-parent/pom.xml
==============================================================================
--- (empty file)
+++ branches/1.0-maven/guice-parent/pom.xml Tue Jan 20 11:46:34 2009
@@ -0,0 +1,65 @@
+<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>com.google</groupId>
+ <artifactId>google</artifactId>
+ <version>1</version>
+ </parent>
+ <groupId>com.google.guice</groupId>
+ <artifactId>guice-parent</artifactId>
+ <packaging>pom</packaging>
+ <version>1.0</version>
+ <name>Google Guice</name>
+ <description>Guice (pronounced 'juice') is a lightweight dependency
injection
+ framework for Java 5 and above, brought to you by
Google.</description>
+ <url>http://code.google.com/p/google-guice/</url>
+ <inceptionYear>2006</inceptionYear>
+ <issueManagement>
+ <system>Google Code</system>
+ <url>http://code.google.com/p/google-guice/issues/</url>
+ </issueManagement>
+ <mailingLists>
+ <mailingList>
+ <name>google-guice</name>
+ <archive>http://groups.google.com/group/google-guice/topics</archive>
+
<subscribe>http://groups.google.com/group/google-guice/subscribe</subscribe>
+
<unsubscribe>http://groups.google.com/group/google-guice/subscribe</unsubscribe>
+ <post>http://groups.google.com/group/google-guice/post</post>
+ </mailingList>
+ <mailingList>
+ <name>google-guice-dev</name>
+
<archive>http://groups.google.com/group/google-guice-dev/topics</archive>
+
<subscribe>http://groups.google.com/group/google-guice-dev/subscribe</subscribe>
+
<unsubscribe>http://groups.google.com/group/google-guice-dev/subscribe</unsubscribe>
+ <post>http://groups.google.com/group/google-guice-dev/post</post>
+ </mailingList>
+ </mailingLists>
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>${groupId}</groupId>
+ <artifactId>guice</artifactId>
+ <version>${version}</version>
+ </dependency>
+ <dependency>
+ <groupId>aopalliance</groupId>
+ <artifactId>aopalliance</artifactId>
+ <version>1.0</version>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ <inherited>true</inherited>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Added: branches/1.0-maven/integration-parent/pom.xml
==============================================================================
--- (empty file)
+++ branches/1.0-maven/integration-parent/pom.xml Tue Jan 20 11:46:34 2009
@@ -0,0 +1,48 @@
+<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>com.google.guice</groupId>
+ <artifactId>guice-parent</artifactId>
+ <version>1.0</version>
+ </parent>
+ <groupId>com.google.guice.integration</groupId>
+ <artifactId>integration</artifactId>
+ <packaging>pom</packaging>
+ <name>Google Guice - Integration</name>
+ <description>A collection of tools for integrating Guice with other
libraries and frameworks</description>
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>${groupId}</groupId>
+ <artifactId>guice-servlet</artifactId>
+ <version>${version}</version>
+ </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-beans</artifactId>
+ <version>2.0.2</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>opensymphony</groupId>
+ <artifactId>xwork</artifactId>
+ <version>2.0.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.struts</groupId>
+ <artifactId>struts2-core</artifactId>
+ <version>2.0.5</version>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+</project>
Modified: branches/1.0-maven/pom.xml
==============================================================================
--- branches/1.0-maven/pom.xml (original)
+++ branches/1.0-maven/pom.xml Tue Jan 20 11:46:34 2009
@@ -1,30 +1,20 @@
-<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">
+<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>com.google.inject</groupId>
+ <parent>
+ <groupId>com.google.guice</groupId>
+ <artifactId>guice-parent</artifactId>
+ <version>1.0</version>
+ </parent>
<artifactId>guice</artifactId>
<packaging>jar</packaging>
- <version>1.0-RC2</version>
- <name>guice</name>
- <url>http://maven.apache.org</url>
<dependencies>
+ <!-- Google Collections and CGLib are not listed because they have been
+ repackaged with JarJar -->
<dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
+ <groupId>aopalliance</groupId>
+ <artifactId>aopalliance</artifactId>
</dependency>
</dependencies>
- <build>
- <plugins>
- <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>
</project>
Added: branches/1.0-maven/servlet/pom.xml
==============================================================================
--- (empty file)
+++ branches/1.0-maven/servlet/pom.xml Tue Jan 20 11:46:34 2009
@@ -0,0 +1,24 @@
+<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>com.google.guice.integration</groupId>
+ <artifactId>integration</artifactId>
+ <version>1.0</version>
+ </parent>
+ <artifactId>guice-servlet</artifactId>
+ <packaging>jar</packaging>
+ <name>Google Guice - Integration: Servlet</name>
+ <description>Guice integration with servlets</description>
+ <dependencies>
+ <dependency>
+ <groupId>com.google.guice</groupId>
+ <artifactId>guice</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ </dependency>
+ </dependencies>
+</project>
Added: branches/1.0-maven/spring/pom.xml
==============================================================================
--- (empty file)
+++ branches/1.0-maven/spring/pom.xml Tue Jan 20 11:46:34 2009
@@ -0,0 +1,24 @@
+<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>com.google.guice.integration</groupId>
+ <artifactId>integration</artifactId>
+ <version>1.0</version>
+ </parent>
+ <artifactId>guice-spring</artifactId>
+ <packaging>jar</packaging>
+ <name>Google Guice - Integration: Spring</name>
+ <description>Guice integration with the Spring container</description>
+ <dependencies>
+ <dependency>
+ <groupId>com.google.guice</groupId>
+ <artifactId>guice</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-beans</artifactId>
+ </dependency>
+ </dependencies>
+</project>
Added: branches/1.0-maven/struts2/plugin/pom.xml
==============================================================================
--- (empty file)
+++ branches/1.0-maven/struts2/plugin/pom.xml Tue Jan 20 11:46:34 2009
@@ -0,0 +1,32 @@
+<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>com.google.guice.integration</groupId>
+ <artifactId>integration</artifactId>
+ <version>1.0</version>
+ </parent>
+ <artifactId>guice-struts2-plugin</artifactId>
+ <packaging>jar</packaging>
+ <name>Google Guice - Integration: Struts2 Plugin</name>
+ <description>Guice integration with Struts2 as a plugin</description>
+ <dependencies>
+ <dependency>
+ <groupId>com.google.guice</groupId>
+ <artifactId>guice</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>com.google.guice.integration</groupId>
+ <artifactId>guice-servlet</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>opensymphony</groupId>
+ <artifactId>xwork</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.struts</groupId>
+ <artifactId>struts2-core</artifactId>
+ </dependency>
+ </dependencies>
+</project>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"google-guice-dev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/google-guice-dev?hl=en
-~----------~----~----~----~------~----~------~--~---