mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-01-18 13:32:10 +01:00
84 lines
2.2 KiB
XML
84 lines
2.2 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-SNAPSHOT</version>
|
|
<name>scm</name>
|
|
|
|
<modules>
|
|
<module>scm-core</module>
|
|
<module>scm-cli</module>
|
|
<module>scm-web-api</module>
|
|
<module>scm-server-api</module>
|
|
<module>scm-server-jetty</module>
|
|
<module>plugins</module>
|
|
<module>scm-agent</module>
|
|
<module>scm-webapp</module>
|
|
<module>scm-server</module>
|
|
</modules>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
<id>java.net2</id>
|
|
<name>Repository hosting the jee6 artifacts</name>
|
|
<url>http://download.java.net/maven/2</url>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>guice-maven</id>
|
|
<name>guice maven</name>
|
|
<url>http://guiceyfruit.googlecode.com/svn/repo/releases</url>
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.8.2</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>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<properties>
|
|
<servlet.version>2.5</servlet.version>
|
|
<project.build.javaLevel>1.6</project.build.javaLevel>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
</project> |