Author: edwardyoon Date: Thu Jun 23 22:28:44 2011 New Revision: 1139099 URL: http://svn.apache.org/viewvc?rev=1139099&view=rev Log: Fix NoClassDefFoundErrors
Modified: incubator/hama/trunk/CHANGES.txt incubator/hama/trunk/pom.xml Modified: incubator/hama/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/incubator/hama/trunk/CHANGES.txt?rev=1139099&r1=1139098&r2=1139099&view=diff ============================================================================== --- incubator/hama/trunk/CHANGES.txt (original) +++ incubator/hama/trunk/CHANGES.txt Thu Jun 23 22:28:44 2011 @@ -11,7 +11,8 @@ Release 0.3 - Unreleased HAMA-380: Add BSPMessageBundle to reduce RPC overhead (Miklos Erdelyi via edwardyoon) BUG FIXES - + + HAMA-405: Fix NoClassDefFoundErrors (Joseph Boyd via edwardyoon) HAMA-404: LocalBSPRunner returns wrong superstep numbers (Thomas Jungblut via edwardyoon) HAMA-396: BSPPeer's ZK object should be constructed with listed quorum servers (edwardyoon) HAMA-391: Refactor Exception.printStackTrace() to LOG.error(Exception) (Thomas Jungblut via edwardyoon) Modified: incubator/hama/trunk/pom.xml URL: http://svn.apache.org/viewvc/incubator/hama/trunk/pom.xml?rev=1139099&r1=1139098&r2=1139099&view=diff ============================================================================== --- incubator/hama/trunk/pom.xml (original) +++ incubator/hama/trunk/pom.xml Thu Jun 23 22:28:44 2011 @@ -97,6 +97,32 @@ </dependency> <dependency> <groupId>org.mortbay.jetty</groupId> + <artifactId>jetty-annotations</artifactId> + <version>6.1H.22</version> + <exclusions> + <exclusion> + <groupId>geronimo-spec</groupId> + <artifactId>geronimo-spec-jta</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.geronimo.specs</groupId> + <artifactId>geronimo-annotation_1.0_spec</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>org.mortbay.jetty</groupId> + <artifactId>jetty-naming</artifactId> + <version>6.1H.22</version> + <exclusions> + <exclusion> + <groupId>javax.mail</groupId> + <artifactId>mail</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>org.mortbay.jetty</groupId> <artifactId>jetty-util</artifactId> <version>6.1H.22</version> </dependency> @@ -104,11 +130,95 @@ <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-core</artifactId> <version>0.20.2</version> + <exclusions> + <exclusion> + <groupId>ant</groupId> + <artifactId>ant</artifactId> + </exclusion> + <exclusion> + <groupId>commons-codec</groupId> + <artifactId>commons-codec</artifactId> + </exclusion> + <exclusion> + <groupId>commons-el</groupId> + <artifactId>commons-el</artifactId> + </exclusion> + <exclusion> + <groupId>commons-httpclient</groupId> + <artifactId>commons-httpclient</artifactId> + </exclusion> + <exclusion> + <groupId>commons-net</groupId> + <artifactId>commons-net</artifactId> + </exclusion> + <exclusion> + <groupId>org.eclipse.jdt</groupId> + <artifactId>core</artifactId> + </exclusion> + <exclusion> + <groupId>hsqldb</groupId> + <artifactId>hsqldb</artifactId> + </exclusion> + <exclusion> + <groupId>oro</groupId> + <artifactId>oro</artifactId> + </exclusion> + <exclusion> + <groupId>tomcat</groupId> + <artifactId>jasper-runtime</artifactId> + </exclusion> + <exclusion> + <groupId>tomcat</groupId> + <artifactId>jasper-compiler</artifactId> + </exclusion> + <exclusion> + <groupId>net.java.dev.jets3t</groupId> + <artifactId>jets3t</artifactId> + </exclusion> + <exclusion> + <groupId>org.mortbay.jetty</groupId> + <artifactId>jsp-api-2.1</artifactId> + </exclusion> + <exclusion> + <groupId>org.mortbay.jetty</groupId> + <artifactId>jsp-2.1</artifactId> + </exclusion> + <exclusion> + <groupId>org.mortbay.jetty</groupId> + <artifactId>servlet-api-2.5</artifactId> + </exclusion> + <exclusion> + <groupId>xmlenc</groupId> + <artifactId>xmlenc</artifactId> + </exclusion> + <exclusion> + <groupId>net.sf.kosmosfs</groupId> + <artifactId>kfs</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-test</artifactId> <version>0.20.2</version> + <exclusions> + <exclusion> + <groupId>org.apache.ftpserver</groupId> + <artifactId>ftplet-api</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.ftpserver</groupId> + <artifactId>ftpserver-core</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.ftpserver</groupId> + <artifactId>ftpserver-deprecated</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.mina</groupId> + <artifactId>mina-core</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>junit</groupId> @@ -117,6 +227,17 @@ <scope>test</scope> </dependency> <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + <version>1.5.2</version> + <exclusions> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.15</version> @@ -149,6 +270,10 @@ <groupId>log4j</groupId> <artifactId>log4j</artifactId> </exclusion> + <exclusion> + <groupId>jline</groupId> + <artifactId>jline</artifactId> + </exclusion> </exclusions> </dependency> </dependencies> @@ -202,7 +327,6 @@ <outputDirectory>${basedir}/lib</outputDirectory> <overWriteReleases>false</overWriteReleases> <overWriteSnapshots>true</overWriteSnapshots> - <excludeTransitive>true</excludeTransitive> </configuration> </execution> </executions>