You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2007/05/26 14:27:26 UTC

svn commit: r541887 - in /directory/shared/trunk: asn1/pom.xml convert/pom.xml ldap-constants/pom.xml ldap/pom.xml pom.xml

Author: elecharny
Date: Sat May 26 05:27:25 2007
New Revision: 541887

URL: http://svn.apache.org/viewvc?view=rev&rev=541887
Log:
Removed compiler configuration from sub-pom, as it has been migrated to the TLP pom (shared/pom.xml)
Added common configuration description in shared/pom.xml for surefire and compiler plugins

Modified:
    directory/shared/trunk/asn1/pom.xml
    directory/shared/trunk/convert/pom.xml
    directory/shared/trunk/ldap-constants/pom.xml
    directory/shared/trunk/ldap/pom.xml
    directory/shared/trunk/pom.xml

Modified: directory/shared/trunk/asn1/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/trunk/asn1/pom.xml?view=diff&rev=541887&r1=541886&r2=541887
==============================================================================
--- directory/shared/trunk/asn1/pom.xml (original)
+++ directory/shared/trunk/asn1/pom.xml Sat May 26 05:27:25 2007
@@ -31,10 +31,6 @@
       <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>

Modified: directory/shared/trunk/convert/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/trunk/convert/pom.xml?view=diff&rev=541887&r1=541886&r2=541887
==============================================================================
--- directory/shared/trunk/convert/pom.xml (original)
+++ directory/shared/trunk/convert/pom.xml Sat May 26 05:27:25 2007
@@ -104,14 +104,6 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-compiler-plugin</artifactId>
-        <configuration>
-          <source>1.5</source>
-          <target>1.5</target>
-          <debug>true</debug>
-          <optimize>true</optimize>
-          <showDeprecations>true</showDeprecations>
-          <encoding>ISO-8859-1</encoding>
-        </configuration>
       </plugin>
       
       <plugin>

Modified: directory/shared/trunk/ldap-constants/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap-constants/pom.xml?view=diff&rev=541887&r1=541886&r2=541887
==============================================================================
--- directory/shared/trunk/ldap-constants/pom.xml (original)
+++ directory/shared/trunk/ldap-constants/pom.xml Sat May 26 05:27:25 2007
@@ -54,14 +54,6 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-compiler-plugin</artifactId>
-        <configuration>
-          <source>1.5</source>
-          <target>1.5</target>
-          <debug>true</debug>
-          <optimize>true</optimize>
-          <showDeprecations>true</showDeprecations>
-          <encoding>ISO-8859-1</encoding>
-        </configuration>
       </plugin>
     </plugins>
   </build>

Modified: directory/shared/trunk/ldap/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap/pom.xml?view=diff&rev=541887&r1=541886&r2=541887
==============================================================================
--- directory/shared/trunk/ldap/pom.xml (original)
+++ directory/shared/trunk/ldap/pom.xml Sat May 26 05:27:25 2007
@@ -121,14 +121,6 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-compiler-plugin</artifactId>
-        <configuration>
-          <source>1.5</source>
-          <target>1.5</target>
-          <debug>true</debug>
-          <optimize>true</optimize>
-          <showDeprecations>true</showDeprecations>
-          <encoding>ISO-8859-1</encoding>
-        </configuration>
       </plugin>
 
       <plugin>

Modified: directory/shared/trunk/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/trunk/pom.xml?view=diff&rev=541887&r1=541886&r2=541887
==============================================================================
--- directory/shared/trunk/pom.xml (original)
+++ directory/shared/trunk/pom.xml Sat May 26 05:27:25 2007
@@ -50,6 +50,31 @@
 
       </plugins>
     </pluginManagement>
+
+    <plugins>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <argLine>-Xmx1024m</argLine>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.5</source>
+          <target>1.5</target>
+          <optimize>true</optimize>
+          <showDeprecations>true</showDeprecations>
+          <encoding>ISO-8859-1</encoding>
+        </configuration>
+      </plugin>
+
+    </plugins>
+
   </build>
 
 </project>