The only issue I see is that the tests are not run. I think that's because all the tests in CacheTests.java are static... Does the JUnit TestSuite run the static tests?
- Stephen On 8/8/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
Author: rooneg Date: Tue Aug 8 18:38:19 2006 New Revision: 429915 URL: http://svn.apache.org/viewvc?rev=429915&view=rev Log: Make an attempt to get the client module building with maven. It's quite possible that this is all totally wrong ;-) * pom.xml: Add client module. * client/pom.xml: New pom for the client module. Added: incubator/abdera/java/trunk/client/pom.xml Modified: incubator/abdera/java/trunk/client/ (props changed) incubator/abdera/java/trunk/pom.xml Propchange: incubator/abdera/java/trunk/client/ ------------------------------------------------------------------------------ --- svn:ignore (original) +++ svn:ignore Tue Aug 8 18:38:19 2006 @@ -1,4 +1,7 @@ - +*.iml .classpath .project +target bin +.settings + Added: incubator/abdera/java/trunk/client/pom.xml URL: http://svn.apache.org/viewvc/incubator/abdera/java/trunk/client/pom.xml?rev=429915&view=auto ============================================================================== --- incubator/abdera/java/trunk/client/pom.xml (added) +++ incubator/abdera/java/trunk/client/pom.xml Tue Aug 8 18:38:19 2006 @@ -0,0 +1,62 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. The ASF licenses this file to You + under the Apache License, Version 2.0 (the "License"); you may not + use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. For additional information regarding + copyright in this work, please see the NOTICE file in the top level + directory of this distribution. --> +<project + xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + <parent> + <groupId>org.apache.abdera</groupId> + <artifactId>abdera</artifactId> + <version>0.1.0-incubating-SNAPSHOT</version> + </parent> + <modelVersion>4.0.0</modelVersion> + <artifactId>abdera-client</artifactId> + <packaging>jar</packaging> + <name>Abdera Client</name> + <version>0.1.0-incubating-SNAPSHOT</version> + <description>Atom Publishing Protocol Client Implementation</description> + <inceptionYear>2006</inceptionYear> + <dependencies> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + </dependency> + <dependency> + <groupId>org.apache.abdera</groupId> + <artifactId>abdera-core</artifactId> + <version>0.1.0-incubating-SNAPSHOT</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>org.apache.abdera</groupId> + <artifactId>abdera-parser</artifactId> + <version>0.1.0-incubating-SNAPSHOT</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>commons-httpclient</groupId> + <artifactId>commons-httpclient</artifactId> + </dependency> + <dependency> + <groupId>org.mortbay.jetty</groupId> + <artifactId>jetty</artifactId> + <version>6.0.0rc0</version> + <scope>test</scope> + </dependency> + </dependencies> +</project> Modified: incubator/abdera/java/trunk/pom.xml URL: http://svn.apache.org/viewvc/incubator/abdera/java/trunk/pom.xml?rev=429915&r1=429914&r2=429915&view=diff ============================================================================== --- incubator/abdera/java/trunk/pom.xml (original) +++ incubator/abdera/java/trunk/pom.xml Tue Aug 8 18:38:19 2006 @@ -156,6 +156,7 @@ <module>parser</module> <module>security</module> <module>server</module> + <module>client</module> <module>extensions</module> <module>examples</module> </modules>
-- Stephen Duncan Jr www.stephenduncanjr.com
