When I run an svn checkout with my local subversion installation, it works perfeclty..
Here's the output:
[EMAIL PROTECTED] /cygdrive/d/temp
$ svn checkout https://svn.sourceforge.net/svnroot/sap-jco-support/trunk/ test_
checkout
A test_checkout\src
A test_checkout\src\test
A test_checkout\src\test\net
A test_checkout\src\test\net\sf
A test_checkout\src\test\net\sf\sapjcosupport
A test_checkout\src\test\net\sf\sapjcosupport\SearchCriterionTestCase.java
A test_checkout\src\test\net\sf\sapjcosupport\ReflectionFieldIteratorTestCase
.java
A test_checkout\src\main
A test_checkout\src\main\sap-jco-interface-applicationcontext.xml
A test_checkout\src\main\net
A test_checkout\src\main\net\sf
A test_checkout\src\main\net\sf\sapjcosupport
A test_checkout\src\main\net\sf\sapjcosupport\SapMapping.java
A test_checkout\src\main\net\sf\sapjcosupport\SapJcoInterface.java
A test_checkout\src\main\net\sf\sapjcosupport\SapInput.java
A test_checkout\src\main\net\sf\sapjcosupport\SapFieldMapping.java
A test_checkout\src\main\net\sf\sapjcosupport\ReflectionFieldIterator.java
A test_checkout\src\main\net\sf\sapjcosupport\SapQuery.java
A test_checkout\src\main\net\sf\sapjcosupport\SapJcoMappingException.java
A test_checkout\src\main\net\sf\sapjcosupport\AsyncMethodCall.java
A test_checkout\src\main\net\sf\sapjcosupport\SapMappingParser.java
A test_checkout\src\main\net\sf\sapjcosupport\SapQLSupport.java
A test_checkout\src\main\net\sf\sapjcosupport\SapStructureMapping.java
A test_checkout\src\main\net\sf\sapjcosupport\SapSearchHelp.java
A test_checkout\src\main\net\sf\sapjcosupport\SearchCriterion.java
A test_checkout\src\main\net\sf\sapjcosupport\SapType.java
A test_checkout\src\main\net\sf\sapjcosupport\SapSearchHelpVO.java
A test_checkout\src\main\net\sf\sapjcosupport\SapSearchHelpVO.sap.xml
A test_checkout\src\main\net\sf\sapjcosupport\SimpleReflectionCache.java
A test_checkout\src\main\net\sf\sapjcosupport\SapListMapping.java
A test_checkout\src\main\net\sf\sapjcosupport\SapBapiMapping.java
A test_checkout\src\main\net\sf\sapjcosupport\SapDebuggingUtil.java
A test_checkout\src\main\net\sf\sapjcosupport\SapDataSource.java
A test_checkout\src\main\log4j.properties
A test_checkout\src\main\resources
A test_checkout\src\main\resources\sap-jco-interface-applicationcontext.xml
A test_checkout\src\main\resources\log4j.properties
A test_checkout\src\site
A test_checkout\src\site\site.xml
A test_checkout\src\site\site.vm
A test_checkout\src\SapJcoInterface.xsd
A test_checkout\pom.xml
Checked out revision 17.
If I add the pom with the same SCM information to continuum, I simply get the output posted earlier..
Here's a snippet from the project's POM, entire POM is attached:
<scm>
< connection>scm:svn:https://svn.sourceforge.net/svnroot/sap-jco-support/trunk/ </connection>
<developerConnection> scm:svn:https://svn.sourceforge.net/svnroot/sap-jco-support/trunk/</developerConnection >
< connection>scm:svn:https://svn.sourceforge.net/svnroot/sap-jco-support/trunk/ </connection>
<developerConnection> scm:svn:https://svn.sourceforge.net/svnroot/sap-jco-support/trunk/</developerConnection >
<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"> <modelVersion>4.0.0</modelVersion> <groupId>sap-jco-support</groupId> <artifactId>sap-jco-support</artifactId> <packaging>jar</packaging> <version>1.1-SNAPSHOT</version> <name>SAP-JCo Support</name> <url>http://sap-jco-support.sourceforge.net/</url> <issueManagement> <system>SourceForge.net Tracker</system> <url>http://sourceforge.net/tracker/?group_id=167428</url> </issueManagement> <description> SAP-JCo Support is a mapping framework for Java applications requiring SAP access. You can easily define your SAP BAPI call in XML and map the SAP fields to java value object fields. Included features are SearchHelp support and an SQL-ish query language </description> <inceptionYear>2006</inceptionYear> <mailingLists> <mailingList> <name>SAP-JCo Support Users</name> <subscribe></subscribe> <unsubscribe></unsubscribe> <post>[EMAIL PROTECTED]</post> <archive>https://lists.sourceforge.net/lists/listinfo/sap-jco-support-users</archive> </mailingList> </mailingLists> <scm> <connection>scm:svn:https://svn.sourceforge.net/svnroot/sap-jco-support/trunk/</connection> <developerConnection>scm:svn:https://svn.sourceforge.net/svnroot/sap-jco-support/trunk/</developerConnection> <url>http://svn.sourceforge.net/viewcvs.cgi/sap-jco-support/trunk/</url> </scm> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <configuration> <rulesets> <ruleset>/rulesets/basic.xml</ruleset> <ruleset>/rulesets/imports.xml</ruleset> <ruleset>/rulesets/unusedcode.xml</ruleset> <ruleset>/rulesets/finalizers.xml</ruleset> </rulesets> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <links> <link>http://java.sun.com/j2se/1.4.2/docs/api</link> </links> </configuration> <reportSets> <reportSet> <id>html</id> <reports> <report>javadoc</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <configuration> <configLocation>config/sun_checks.xml</configLocation> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> </plugin> <!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <configuration> <templateFile>src/site/site.vm</templateFile> </configuration> </plugin>--> </plugins> </reporting> <licenses> <license> <name>Sun Public License</name> <url>http://sap-jco-support.sourceforge.net/LICENSE.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Niki Driessen</name> <timezone>+2</timezone> <organization>Ordina Belgium</organization> <organizationUrl>http://www.ordina.be/</organizationUrl> <roles> <role>Developer</role> </roles> </developer> <developer> <id>lesterix</id> <name>Jo Vandermeeren</name> <email>[EMAIL PROTECTED]</email> <timezone>+2</timezone> <organization>Ordina Belgium</organization> <organizationUrl>http://www.ordina.be/</organizationUrl> <roles> <role>Developer</role> </roles> </developer> </developers> <ciManagement> <system>continuum</system> <notifiers> <notifier> <type>mail</type> <configuration> <address>[EMAIL PROTECTED]</address> </configuration> </notifier> </notifiers> </ciManagement> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring</artifactId> <version>1.2.6</version> <scope>compile</scope> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.9</version> <scope>compile</scope> </dependency> <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> <version>1.7.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>sapjco</groupId> <artifactId>sapjco</artifactId> <version>2.1.6</version> <scope>compile</scope> </dependency> <dependency> <groupId>oro</groupId> <artifactId>oro</artifactId> <version>2.0.8</version> <scope>compile</scope> </dependency> <dependency> <groupId>concurrent</groupId> <artifactId>concurrent</artifactId> <version>1.3.4</version> <scope>compile</scope> </dependency> </dependencies> <distributionManagement> <site> <id>sf</id> <name>SourceForge.net Web Server</name> <url>scp://shell.sourceforge.net/home/groups/s/sa/sap-jco-support/htdocs</url> </site> <snapshotRepository> <id>sf</id> <name>SourceForge.net Web Server</name> <url>scp://shell.sourceforge.net/home/groups/s/sa/sap-jco-support/htdocs/snapshots</url> </snapshotRepository> </distributionManagement> <build> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh-external</artifactId> <version>1.0-alpha-5</version> </extension> </extensions> <sourceDirectory>src/main</sourceDirectory> <outputDirectory>target/classes</outputDirectory> <testSourceDirectory>src/test</testSourceDirectory> <testOutputDirectory>target/test-classes</testOutputDirectory> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-idea-plugin</artifactId> <configuration> <jdkName>1.5</jdkName> <exclude>target</exclude> <useShortDependencyNames>true</useShortDependencyNames> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <executions> <execution> <id>clean</id> <goals> <goal>clean</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>
