2011-07-01 18:43:26 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2011-07-09 15:11:06 +02:00
|
|
|
<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/xsd/maven-4.0.0.xsd">
|
2011-07-01 18:43:26 +02:00
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>sonia.scm.plugins</groupId>
|
|
|
|
|
<artifactId>scm-plugins</artifactId>
|
2014-12-13 16:29:17 +01:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2011-07-01 18:43:26 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<artifactId>scm-hg-plugin</artifactId>
|
|
|
|
|
<name>scm-hg-plugin</name>
|
2014-06-06 08:57:41 +02:00
|
|
|
<packaging>smp</packaging>
|
2011-07-01 18:43:26 +02:00
|
|
|
<url>https://bitbucket.org/sdorra/scm-manager</url>
|
|
|
|
|
<description>Plugin for the version control system Mercurial</description>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
2012-07-01 18:11:23 +02:00
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.aragost.javahg</groupId>
|
|
|
|
|
<artifactId>javahg</artifactId>
|
2017-06-06 08:14:04 +02:00
|
|
|
<version>0.8-scm1</version>
|
2014-11-02 10:52:47 +01:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2014-03-29 10:30:19 +01:00
|
|
|
</dependency>
|
2011-07-01 18:43:26 +02:00
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
2012-07-15 16:47:36 +02:00
|
|
|
<!-- create test jar -->
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
2012-10-17 14:24:22 +02:00
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>com.mycila.maven-license-plugin</groupId>
|
|
|
|
|
<artifactId>maven-license-plugin</artifactId>
|
|
|
|
|
<version>1.9.0</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<header>http://download.scm-manager.org/licenses/mvn-license.txt</header>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>src/**</include>
|
|
|
|
|
<include>**/test/**</include>
|
|
|
|
|
</includes>
|
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>target/**</exclude>
|
|
|
|
|
<exclude>.hg/**</exclude>
|
|
|
|
|
<exclude>**/fileview.py</exclude>
|
|
|
|
|
</excludes>
|
|
|
|
|
<strictCheck>true</strictCheck>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2012-07-15 16:47:36 +02:00
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
|
<version>2.2</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>test-jar</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
2011-07-01 18:43:26 +02:00
|
|
|
<repositories>
|
|
|
|
|
|
|
|
|
|
<repository>
|
|
|
|
|
<id>maven.scm-manager.org</id>
|
|
|
|
|
<name>scm-manager release repository</name>
|
|
|
|
|
<url>http://maven.scm-manager.org/nexus/content/groups/public</url>
|
|
|
|
|
</repository>
|
2012-07-01 18:11:23 +02:00
|
|
|
|
|
|
|
|
<repository>
|
|
|
|
|
<releases>
|
|
|
|
|
<enabled>false</enabled>
|
|
|
|
|
</releases>
|
|
|
|
|
<snapshots>
|
|
|
|
|
<enabled>true</enabled>
|
|
|
|
|
</snapshots>
|
|
|
|
|
<id>sonatype-ossrh</id>
|
|
|
|
|
<name>Sonatype Open Source Software Repository Hosting</name>
|
|
|
|
|
<layout>default</layout>
|
2012-08-16 20:02:00 +02:00
|
|
|
<url>https://oss.sonatype.org/content/groups/public/</url>
|
2012-07-01 18:11:23 +02:00
|
|
|
</repository>
|
2011-07-01 18:43:26 +02:00
|
|
|
|
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
|
|
</project>
|