You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oodt.apache.org by pr...@apache.org on 2013/03/05 17:21:25 UTC

svn commit: r1452882 - in /oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources: crawler/pom.xml filemgr/pom.xml workflow/pom.xml workflow/src/main/resources/etc/logging.properties

Author: pramirez
Date: Tue Mar  5 16:21:25 2013
New Revision: 1452882

URL: http://svn.apache.org/r1452882
Log:
Cut down the dependency required for each of the modules.

Modified:
    oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/pom.xml
    oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/pom.xml
    oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/pom.xml
    oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/src/main/resources/etc/logging.properties

Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/pom.xml
URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/pom.xml?rev=1452882&r1=1452881&r2=1452882&view=diff
==============================================================================
--- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/pom.xml (original)
+++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/pom.xml Tue Mar  5 16:21:25 2013
@@ -43,18 +43,13 @@
       <artifactId>${rootArtifactId}-extensions</artifactId>
       <version>${project.parent.version}</version>
       <type>jar</type>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.oodt</groupId>
-      <artifactId>oodt-commons</artifactId>
-      <version>${oodt.version}</version>
-      <type>jar</type>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.oodt</groupId>
-      <artifactId>cas-metadata</artifactId>
-      <version>${oodt.version}</version>
-      <type>jar</type>
+      <scope>runtime</scope>
+      <exclusions>
+        <exclusion>
+          <groupId>org.apache.oodt</groupId>
+          <artifactId>cas-filemgr</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.apache.oodt</groupId>

Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/pom.xml
URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/pom.xml?rev=1452882&r1=1452881&r2=1452882&view=diff
==============================================================================
--- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/pom.xml (original)
+++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/pom.xml Tue Mar  5 16:21:25 2013
@@ -44,18 +44,13 @@
       <artifactId>${rootArtifactId}-extensions</artifactId>
       <version>${project.parent.version}</version>
       <type>jar</type>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.oodt</groupId>
-      <artifactId>oodt-commons</artifactId>
-      <version>${oodt.version}</version>
-      <type>jar</type>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.oodt</groupId>
-      <artifactId>cas-metadata</artifactId>
-      <version>${oodt.version}</version>
-      <type>jar</type>
+      <scope>runtime</scope>
+      <exclusions>
+        <exclusion>
+          <groupId>org.apache.oodt</groupId>
+          <artifactId>cas-filemgr</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.apache.oodt</groupId>

Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/pom.xml
URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/pom.xml?rev=1452882&r1=1452881&r2=1452882&view=diff
==============================================================================
--- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/pom.xml (original)
+++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/pom.xml Tue Mar  5 16:21:25 2013
@@ -43,18 +43,13 @@
       <artifactId>${rootArtifactId}-extensions</artifactId>
       <version>${project.parent.version}</version>
       <type>jar</type>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.oodt</groupId>
-      <artifactId>oodt-commons</artifactId>
-      <version>${oodt.version}</version>
-      <type>jar</type>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.oodt</groupId>
-      <artifactId>cas-metadata</artifactId>
-      <version>${oodt.version}</version>
-      <type>jar</type>
+      <scope>runtime</scope>
+      <exclusions>
+        <exclusion>
+          <groupId>org.apache.oodt</groupId>
+          <artifactId>cas-filemgr</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.apache.oodt</groupId>

Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/src/main/resources/etc/logging.properties
URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/src/main/resources/etc/logging.properties?rev=1452882&r1=1452881&r2=1452882&view=diff
==============================================================================
--- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/src/main/resources/etc/logging.properties (original)
+++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/src/main/resources/etc/logging.properties Tue Mar  5 16:21:25 2013
@@ -57,3 +57,12 @@ org.apache.commons.httpclient.level = IN
 httpclient.wire.header.level = INFO
 httpclient.wire.level = INFO
 sun.net.level = OFF
+sun.net.www.level = OFF
+
+# spring framework logging
+org.springframework.beans.level = SEVERE
+org.springframework.core.level = SEVERE
+org.springframework.level = SEVERE
+org.springframework.beans.factory.level = SEVERE
+org.springframework.beans.factory.config.level = SEVERE
+org.springframework.beans.factory.config.PropertyPlaceholderConfigurer.level = SEVERE