mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-01-08 00:22:11 +01:00
287 lines
8.1 KiB
XML
287 lines
8.1 KiB
XML
<?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>sonia.scm</groupId>
|
|
<artifactId>scm</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>1.0-M6-SNAPSHOT</version>
|
|
<name>scm</name>
|
|
|
|
<url>http://bitbucket.org/sdorra/scm-manager</url>
|
|
|
|
<developers>
|
|
<developer>
|
|
<id>sdorra</id>
|
|
<name>Sebastian Sdorra</name>
|
|
<email>s.sdorra@gmail.com</email>
|
|
<timezone>Europe/Berlin</timezone>
|
|
</developer>
|
|
</developers>
|
|
|
|
<scm>
|
|
<connection>scm:hg:http://bitbucket.org/sdorra/scm-manager</connection>
|
|
<developerConnection>scm:hg:https://bitbucket.org/sdorra/scm-manager</developerConnection>
|
|
<url>http://bitbucket.org/sdorra/scm-manager</url>
|
|
</scm>
|
|
|
|
<issueManagement>
|
|
<system>bitbucket</system>
|
|
<url>http://bitbucket.org/sdorra/scm-manager/issues</url>
|
|
</issueManagement>
|
|
|
|
<prerequisites>
|
|
<maven>2.1</maven>
|
|
</prerequisites>
|
|
|
|
<modules>
|
|
<module>third-party</module>
|
|
<module>scm-core</module>
|
|
<module>scm-test</module>
|
|
<module>maven</module>
|
|
<module>scm-server-api</module>
|
|
<module>scm-server-jetty</module>
|
|
<module>plugins</module>
|
|
<module>samples</module>
|
|
<module>scm-webapp</module>
|
|
<module>scm-server</module>
|
|
</modules>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
<id>java.net2</id>
|
|
<name>Repository hosting the javaee artifacts</name>
|
|
<url>http://download.java.net/maven/2</url>
|
|
</repository>
|
|
|
|
<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>
|
|
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<groupId>org.slf4j</groupId>
|
|
<version>${slf4j.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>${junit.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-all</artifactId>
|
|
<version>${mokito.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.3.2</version>
|
|
<configuration>
|
|
<source>${project.build.javaLevel}</source>
|
|
<target>${project.build.javaLevel}</target>
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<version>2.4.3</version>
|
|
<configuration>
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
<version>2.1.1</version>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>com.mycila.maven-license-plugin</groupId>
|
|
<artifactId>maven-license-plugin</artifactId>
|
|
<version>1.8.0</version>
|
|
<configuration>
|
|
<header>docs/licenses/mvn-license.txt</header>
|
|
<includes>
|
|
<include>src/**</include>
|
|
<include>**/test/**</include>
|
|
</includes>
|
|
<excludes>
|
|
<exclude>target/**</exclude>
|
|
<exclude>.hg/**</exclude>
|
|
<exclude>**/extjs/**</exclude>
|
|
</excludes>
|
|
<strictCheck>true</strictCheck>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<!-- maven 2.x reporting -->
|
|
|
|
<reporting>
|
|
<plugins>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
<version>2.2</version>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jxr-plugin</artifactId>
|
|
<version>2.2</version>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
|
<version>2.3.1</version>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-report-plugin</artifactId>
|
|
<version>2.6</version>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-pmd-plugin</artifactId>
|
|
<version>2.5</version>
|
|
<configuration>
|
|
<linkXref>true</linkXref>
|
|
<sourceEncoding>${project.build.sourceEncoding}</sourceEncoding>
|
|
<targetJdk>${project.build.javaLevel}</targetJdk>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</reporting>
|
|
|
|
<!-- maven 3.x reporting -->
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
<activation>
|
|
<file>
|
|
<!--
|
|
This employs that the basedir expression
|
|
is only recognized by Maven 3.x (see MNG-2363)
|
|
-->
|
|
<exists>${basedir}</exists>
|
|
</file>
|
|
</activation>
|
|
<build>
|
|
<plugins>
|
|
|
|
<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.2</version>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jxr-plugin</artifactId>
|
|
<version>2.2</version>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
|
<version>2.3.1</version>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-report-plugin</artifactId>
|
|
<version>2.6</version>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-pmd-plugin</artifactId>
|
|
<version>2.5</version>
|
|
<configuration>
|
|
<linkXref>true</linkXref>
|
|
<sourceEncoding>${project.build.sourceEncoding}</sourceEncoding>
|
|
<targetJdk>${project.build.javaLevel}</targetJdk>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
</reportPlugins>
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
<id>maven.scm-manager.org</id>
|
|
<name>scm-manager release repository</name>
|
|
<url>http://maven.scm-manager.org/nexus/content/repositories/releases/</url>
|
|
</repository>
|
|
|
|
<snapshotRepository>
|
|
<id>maven.scm-manager.org</id>
|
|
<name>scm-manager snapshot repository</name>
|
|
<url>http://maven.scm-manager.org/nexus/content/repositories/snapshots/</url>
|
|
</snapshotRepository>
|
|
|
|
</distributionManagement>
|
|
|
|
<properties>
|
|
<mokito.version>1.8.5</mokito.version>
|
|
<junit.version>4.8.2</junit.version>
|
|
<slf4j.version>1.6.1</slf4j.version>
|
|
<servlet.version>2.5</servlet.version>
|
|
<guice.version>2.0</guice.version>
|
|
<jersey.version>1.5-ea08</jersey.version>
|
|
<ehcache.version>2.3.1</ehcache.version>
|
|
<project.build.javaLevel>1.6</project.build.javaLevel>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<netbeans.hint.license>SCM-BSD</netbeans.hint.license>
|
|
</properties>
|
|
|
|
</project> |