subversion
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.eclipse.hudson.plugins</groupId> <artifactId>subversion</artifactId> <version>3.0.1</version> </dependency>
<!-- ************************************************************************** # # Copyright (C) 2004-2011 Oracle Corporation # # All rights reserved. This program and the accompanying materials # are made available under the terms of the Eclipse Public License v1.0 # which accompanies this distribution, and is available at # http://www.eclipse.org/legal/epl-v10.html # # Contributors: # Kohsuke Kawaguchi, Daniel Dyer, Erik Ramfelt, Stephen Connolly, Tom Huybrechts, Alan Harder, Winston Prakash # #************************************************************************** --> <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> <parent> <groupId>org.eclipse.hudson.plugins</groupId> <artifactId>hudson-plugin-parent</artifactId> <version>3.0.0-M1-1</version> </parent> <artifactId>subversion</artifactId> <groupId>org.eclipse.hudson.plugins</groupId> <packaging>hpi</packaging> <name>Hudson Subversion Plug-in</name> <description>Integrates Hudson with Subversion SCM</description> <version>3.0.1</version> <url>http://wiki.hudson-ci.org/display/HUDSON/Subversion+Plugin</url> <licenses> <license> <name>Eclipse Public License v1.0</name> <url>http://www.eclipse.org/legal/epl-v10.html</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git://git.eclipse.org/gitroot/hudson/org.eclipse.hudson.plugins.subversion.git</connection> <developerConnection>scm:git:ssh://git.eclipse.org/gitroot/hudson/org.eclipse.hudson.plugins.subversion.git</developerConnection> <url>http://git.eclipse.org/c/hudson/org.eclipse.hudson.plugins.subversion.git/</url> </scm> <developers> <developer> <name>Many</name> <id>kohsuke abayer dodok1 dty huybrechts mindless pgweiss stephenconnolly rseguy wjprakash akozak 8nevil8</id> </developer> </developers> <properties> <compileSource>1.6</compileSource> <maven-surefire-plugin.version>2.8.1</maven-surefire-plugin.version> <maven-pmd-plugin.version>2.5</maven-pmd-plugin.version> <maven-gpg-plugin.version>1.2</maven-gpg-plugin.version> </properties> <dependencies> <dependency> <groupId>org.hudsonci.tools</groupId> <artifactId>svnkit</artifactId> <version>1.3.5-hudson-1</version> </dependency> <dependency> <groupId>org.eclipse.hudson.main</groupId> <artifactId>hudson-test-framework</artifactId> <version>${project.parent.version}</version> <scope>test</scope> <exclusions> <exclusion> <groupId>org.eclipse.hudson.main</groupId> <artifactId>subversion</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.hudsonci.plugins</groupId> <artifactId>jna-native-support-plugin</artifactId> <version>3.0.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jvnet.hudson</groupId> <artifactId>ganymed-ssh-2</artifactId> <version>build260</version> </dependency> <dependency> <groupId>org.kohsuke</groupId> <artifactId>trilead-putty-extension</artifactId> <version>1.1</version> <type>jar</type> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> <configuration> <workingDirectory>${project.build.directory}</workingDirectory> <forkMode>always</forkMode> <forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds> <systemPropertyVariables> <file.encoding>UTF-8</file.encoding> <buildDirectory>${project.build.directory}</buildDirectory> <java.io.tmpdir>${project.build.directory}</java.io.tmpdir> <hudson.udp>33849</hudson.udp> </systemPropertyVariables> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>${maven-pmd-plugin.version}</version> <configuration> <verbose>true</verbose> <targetJdk>${compileSource}</targetJdk> <outputDirectory>${project.reporting.outputDirectory}</outputDirectory> <targetDirectory>${project.build.directory}</targetDirectory> <excludeRoots> <excludeRoot>${basedir}/target/generated-sources/</excludeRoot> </excludeRoots> </configuration> <executions> <execution> <phase>validate</phase> <goals> <goal>check</goal> <goal>cpd-check</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>