You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by br...@apache.org on 2005/11/15 15:00:48 UTC

svn commit: r344367 - /directory/network/trunk/pom.xml

Author: brett
Date: Tue Nov 15 06:00:39 2005
New Revision: 344367

URL: http://svn.apache.org/viewcvs?rev=344367&view=rev
Log:
updated pom in accordance with m1 pom

Modified:
    directory/network/trunk/pom.xml

Modified: directory/network/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/directory/network/trunk/pom.xml?rev=344367&r1=344366&r2=344367&view=diff
==============================================================================
--- directory/network/trunk/pom.xml (original)
+++ directory/network/trunk/pom.xml Tue Nov 15 06:00:39 2005
@@ -76,6 +76,24 @@
 
   <dependencies>
     <dependency>
+      <groupId>springframework</groupId>
+      <artifactId>spring-beans</artifactId>
+      <version>1.2.5</version>
+    </dependency>
+
+    <dependency>
+      <groupId>springframework</groupId>
+      <artifactId>spring-core</artifactId>
+      <version>1.2.5</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-simple</artifactId>
+      <version>1.0-beta9</version>
+    </dependency>
+
+    <dependency>
       <groupId>commons-net</groupId>
       <artifactId>commons-net</artifactId>
       <version>1.3.0</version>
@@ -89,13 +107,20 @@
       <scope>test</scope>
     </dependency>
 
-    <!-- TODO: temporary until bug fixed in clover plugin -->
     <dependency>
-      <groupId>clover</groupId>
-      <artifactId>clover</artifactId>
-      <version>1.3.9</version>
-      <scope>provided</scope>
+      <groupId>easymock</groupId>
+      <artifactId>easymock</artifactId>
+      <version>1.2_Java1.3</version>
+      <scope>test</scope>
     </dependency>
+    
+    <dependency>
+      <groupId>easymock</groupId>
+      <artifactId>easymockclassextension</artifactId>
+      <version>1.1</version>
+      <scope>test</scope>
+    </dependency>
+    
   </dependencies>
 
   <build>
@@ -114,22 +139,6 @@
 -->
     <testSourceDirectory>src/test</testSourceDirectory>
 
-<!-- TODO: Check if these are needed
-    <unitTest>
-      <includes>
-        <include>**/*Test*</include>
-        <include>**/*TestCase*</include>
-      </includes>
-
-      <excludes>
-        <exclude>**/Abstract*</exclude>
-        <exclude>**/DatagramBindTest*</exclude>
-        <exclude>**/*RegressionTest*</exclude>
-      </excludes>
-    </unitTest>
--->
-
-
 <!-- TODO: Why are examples in the JAR?
     <resources>
       <resource>
@@ -147,11 +156,26 @@
         <configuration>
           <source>1.4</source>
           <target>1.4</target>
-<!-- TODO:
-maven.compile.debug=on
-maven.compile.optimize=on
-maven.compile.deprecation=on
--->
+          <debug>true</debug>
+          <optimize>true</optimize>
+          <showDeprecations>true</showDeprecations>
+          <!-- These rely on example classes -->
+          <testExcludes>
+            <testExclude>**/AcceptorTest.*</testExclude>
+            <testExclude>**/ConnectorTest.*</testExclude>
+            <testExclude>**/*BindTest.*</testExclude>
+            <testExclude>**/Abstract*</testExclude>
+          </testExcludes>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <excludes>
+            <exclude>**/Abstract*</exclude>
+            <exclude>**/DatagramBindTest*</exclude>
+            <exclude>**/*RegressionTest*</exclude>
+          </excludes>
         </configuration>
       </plugin>
 
@@ -165,38 +189,51 @@
 
   <reporting>
     <plugins>
-<!-- TODO: you must run clover:report for now
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-clover-plugin</artifactId>
       </plugin>
--->
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-project-info-reports-plugin</artifactId>
       </plugin>
-<!-- TODO: still problematic on Windows
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-javadoc-plugin</artifactId>
-<!- - TODO:
+<!-- TODO:
 maven.javadoc.links = http://java.sun.com/j2se/1.5.0/docs/api/, http://www.junit.org/junit/javadoc/3.8.1/
 maven.javadoc.package = false
-- ->
+-->
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>taglist-maven-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>jxr-maven-plugin</artifactId>
+      </plugin>
+<!-- Not compatible with current JIRA URL
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>changes-maven-plugin</artifactId>
+      </plugin>
+-->
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>surefire-report-maven-plugin</artifactId>
+      </plugin>
+<!-- TODO: Not released 
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>jdepend-maven-plugin</artifactId>
       </plugin>
 -->
     </plugins>
   </reporting>
 
-<!-- TODO: we have these, need to test
-    <report>maven-jxr-plugin</report>
-    <report>maven-tasklist-plugin</report>
-
-Don't exist yet:
-    <report>maven-changes-plugin</report>
-    <report>maven-junit-report-plugin</report>
+<!-- TODO: don't exist yet
     <report>maven-emma-plugin</report>
-    <report>maven-jdepend-plugin</report>
     <report>maven-simian-plugin</report>
   </reports>
 -->