You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by jv...@apache.org on 2008/03/13 21:53:13 UTC

svn commit: r636884 - /mina/asyncweb/trunk/server/pom.xml

Author: jvermillard
Date: Thu Mar 13 13:53:11 2008
New Revision: 636884

URL: http://svn.apache.org/viewvc?rev=636884&view=rev
Log:
exclued ThreadPoolFilter for Aweb of building and removed the concurency dependency until we find a use for this filter or we migrate it to java5 
concurrent classes

Modified:
    mina/asyncweb/trunk/server/pom.xml

Modified: mina/asyncweb/trunk/server/pom.xml
URL: http://svn.apache.org/viewvc/mina/asyncweb/trunk/server/pom.xml?rev=636884&r1=636883&r2=636884&view=diff
==============================================================================
--- mina/asyncweb/trunk/server/pom.xml (original)
+++ mina/asyncweb/trunk/server/pom.xml Thu Mar 13 13:53:11 2008
@@ -30,13 +30,21 @@
   <properties>
     <exportedPackage>${groupId}.server</exportedPackage>
   </properties>
-  <dependencies>
-    <!-- don't think this concurrent dependency is needed anymore -->
-    <dependency>
-      <groupId>concurrent</groupId>
-      <artifactId>concurrent</artifactId>
-    </dependency>
+      <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <exclude>**/filter/ThreadPoolFilter.java</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
 
+        </plugins>
+    </build> 
+  <dependencies>
     <dependency>
       <groupId>org.apache.mina</groupId>
       <artifactId>mina-core</artifactId>