maven-svn-wagon
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.google.code.maven-svn-wagon</groupId> <artifactId>maven-svn-wagon</artifactId> <version>1.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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>com.google.code.maven-svn-wagon</groupId> <artifactId>maven-svn-wagon</artifactId> <version>1.4</version> <packaging>jar</packaging> <name>Maven SVN Wagon</name> <description> The wagon that provides access to the Maven artifact repository hosted inside a Subversion repository. </description> <url>http://code.google.com/p/maven-svn-wagon</url> <inceptionYear>2009</inceptionYear> <organization> <name>Oleg Estekhin</name> </organization> <licenses> <license> <name>New BSD License</name> <url>${basedir}/license.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>oleg.estekhin</id> <name>Oleg Estekhin</name> <email>oleg.estekhin@gmail.com</email> </developer> </developers> <mailingLists> <mailingList> <name>Mailing List</name> <subscribe>maven-svn-wagon+subscribe@googlegroups.com</subscribe> <unsubscribe>maven-svn-wagon+unsubscribe@googlegroups.com</unsubscribe> <post>maven-svn-wagon@googlegroups.com</post> <archive>http://groups.google.com/group/maven-svn-wagon</archive> </mailingList> </mailingLists> <prerequisites> <maven>2.2.1</maven> </prerequisites> <scm> <connection>scm:svn:http://maven-svn-wagon.googlecode.com/svn/tags/maven-svn-wagon-1.4</connection> <developerConnection>scm:svn:https://maven-svn-wagon.googlecode.com/svn/tags/maven-svn-wagon-1.4</developerConnection> <url>http://code.google.com/p/maven-svn-wagon/source/browse/tags/maven-svn-wagon-1.4</url> </scm> <issueManagement> <system>Google Code</system> <url>http://code.google.com/p/maven-svn-wagon/issues/list</url> </issueManagement> <distributionManagement> <repository> <id>oss.sonatype.org</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> <snapshotRepository> <id>oss.sonatype.org</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <site> <id>local</id> <url>file://${user.home}/maven/deploy/${project.groupId}/site</url> </site> </distributionManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <dependencies> <dependency> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-provider-api</artifactId> <version>1.0-beta-7</version> </dependency> <dependency> <groupId>org.tmatesoft.svnkit</groupId> <artifactId>svnkit</artifactId> <version>1.3.5</version> </dependency> <dependency> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-provider-test</artifactId> <version>1.0-beta-7</version> <scope>test</scope> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>2.0.7</version> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/plexus</directory> <targetPath>META-INF/plexus</targetPath> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>2.4.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.5</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.8</version> <configuration> <excludes> <!-- requires svnserve executable in the path --> <exclude>**/SvnSVNWagonTest.java</exclude> <!-- requires the repository to be available from http://localhost/svn/maven-svn-wagon-test-repository --> <exclude>**/HttpSVNWagonTest.java</exclude> <!-- requires the repository to be available from https://localhost/svn/maven-svn-wagon-test-repository --> <exclude>**/HttpsSVNWagonTest.java</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.7</version> <configuration> <quiet>true</quiet> <notimestamp>true</notimestamp> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.3.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>2.3.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.5</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.1</version> <configuration> <releaseProfiles>sign-artifacts</releaseProfiles> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.0-beta-3</version> <configuration> <reportPlugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.3.1</version> <configuration> <dependencyLocationsEnabled>false</dependencyLocationsEnabled> </configuration> <reportSets> <reportSet> <reports> <report>summary</report> <report>license</report> <report>project-team</report> <report>scm</report> <report>issue-tracking</report> <report>dependencies</report> <report>plugins</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> <version>2.8</version> </plugin> </reportPlugins> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>animal-sniffer-maven-plugin</artifactId> <version>1.6</version> <configuration> <signature> <groupId>org.codehaus.mojo.signature</groupId> <artifactId>java15</artifactId> <version>1.0</version> </signature> </configuration> <executions> <execution> <id>animal-sniffer</id> <phase>verify</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>sign-artifacts</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.2</version> <executions> <execution> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>