You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directmemory.apache.org by si...@apache.org on 2012/03/08 17:35:32 UTC

svn commit: r1298460 - in /incubator/directmemory/trunk/integrations: ./ guice/ guice/src/ guice/src/main/ guice/src/main/java/ guice/src/main/java/org/ guice/src/main/java/org/apache/ guice/src/main/java/org/apache/directmemory/ guice/src/main/java/or...

Author: simonetripodi
Date: Thu Mar  8 16:35:31 2012
New Revision: 1298460

URL: http://svn.apache.org/viewvc?rev=1298460&view=rev
Log:
added the guice empty archetype integration module

Added:
    incubator/directmemory/trunk/integrations/guice/
    incubator/directmemory/trunk/integrations/guice/pom.xml   (with props)
    incubator/directmemory/trunk/integrations/guice/src/
    incubator/directmemory/trunk/integrations/guice/src/main/
    incubator/directmemory/trunk/integrations/guice/src/main/java/
    incubator/directmemory/trunk/integrations/guice/src/main/java/org/
    incubator/directmemory/trunk/integrations/guice/src/main/java/org/apache/
    incubator/directmemory/trunk/integrations/guice/src/main/java/org/apache/directmemory/
    incubator/directmemory/trunk/integrations/guice/src/main/java/org/apache/directmemory/guice/
    incubator/directmemory/trunk/integrations/guice/src/test/
    incubator/directmemory/trunk/integrations/guice/src/test/java/
    incubator/directmemory/trunk/integrations/guice/src/test/java/org/
    incubator/directmemory/trunk/integrations/guice/src/test/java/org/apache/
    incubator/directmemory/trunk/integrations/guice/src/test/java/org/apache/directmemory/
    incubator/directmemory/trunk/integrations/guice/src/test/java/org/apache/directmemory/guice/
Modified:
    incubator/directmemory/trunk/integrations/pom.xml

Added: incubator/directmemory/trunk/integrations/guice/pom.xml
URL: http://svn.apache.org/viewvc/incubator/directmemory/trunk/integrations/guice/pom.xml?rev=1298460&view=auto
==============================================================================
--- incubator/directmemory/trunk/integrations/guice/pom.xml (added)
+++ incubator/directmemory/trunk/integrations/guice/pom.xml Thu Mar  8 16:35:31 2012
@@ -0,0 +1,55 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements.  See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership.  The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License.  You may obtain a copy of the License at
+  ~
+  ~   http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  ~ KIND, either express or implied.  See the License for the
+  ~ specific language governing permissions and limitations
+  ~ under the License.
+  -->
+<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/xsd/maven-4.0.0.xsd">
+
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.directmemory</groupId>
+    <artifactId>directmemory-integrations</artifactId>
+    <version>0.6.0-SNAPSHOT</version>
+  </parent>
+
+  <artifactId>directmemory-guice</artifactId>
+  <name>Apache DirectMemory :: Integrations :: Google Guice</name>
+  <description>Google Guice bridge to integrate DirectMemory in the Guice DI Framework.</description>
+
+  <dependencies>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>directmemory-cache</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>com.google.inject</groupId>
+      <artifactId>guice</artifactId>
+      <version>3.0</version>
+    </dependency>
+
+    <!-- Testing Dependencies -->
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+</project>

Propchange: incubator/directmemory/trunk/integrations/guice/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/directmemory/trunk/integrations/guice/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: incubator/directmemory/trunk/integrations/guice/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Modified: incubator/directmemory/trunk/integrations/pom.xml
URL: http://svn.apache.org/viewvc/incubator/directmemory/trunk/integrations/pom.xml?rev=1298460&r1=1298459&r2=1298460&view=diff
==============================================================================
--- incubator/directmemory/trunk/integrations/pom.xml (original)
+++ incubator/directmemory/trunk/integrations/pom.xml Thu Mar  8 16:35:31 2012
@@ -37,6 +37,7 @@
   <modules>
     <module>solr</module>
     <module>ehcache</module>
+    <module>guice</module>
   </modules>
 
   <dependencyManagement>