2011-07-09 15:11:06 +02:00
|
|
|
<?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>
|
|
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
|
<artifactId>scm</artifactId>
|
|
|
|
|
<groupId>sonia.scm</groupId>
|
2012-08-26 13:55:57 +02:00
|
|
|
<version>1.21-SNAPSHOT</version>
|
2011-07-09 15:11:06 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<groupId>sonia.scm</groupId>
|
|
|
|
|
<artifactId>scm-plugin-backend</artifactId>
|
|
|
|
|
<packaging>war</packaging>
|
2012-08-26 13:55:57 +02:00
|
|
|
<version>1.21-SNAPSHOT</version>
|
2011-07-09 15:11:06 +02:00
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
|
<version>${servlet.version}</version>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- fix javadoc -->
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.transaction</groupId>
|
|
|
|
|
<artifactId>jta</artifactId>
|
|
|
|
|
<version>1.1</version>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2011-09-11 19:36:24 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.freemarker</groupId>
|
|
|
|
|
<artifactId>freemarker</artifactId>
|
|
|
|
|
<version>${freemarker.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2011-07-09 15:11:06 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>sonia.scm</groupId>
|
|
|
|
|
<artifactId>scm-core</artifactId>
|
2012-08-26 13:55:57 +02:00
|
|
|
<version>1.21-SNAPSHOT</version>
|
2011-07-09 15:11:06 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.sun.jersey.contribs</groupId>
|
|
|
|
|
<artifactId>jersey-guice</artifactId>
|
|
|
|
|
<version>${jersey.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
|
<artifactId>logback-classic</artifactId>
|
2011-09-22 21:03:17 +02:00
|
|
|
<version>${logback.version}</version>
|
2011-07-09 15:11:06 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
2011-09-13 16:41:54 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>rome</groupId>
|
|
|
|
|
<artifactId>rome</artifactId>
|
|
|
|
|
<version>1.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2011-07-09 15:11:06 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sf.ehcache</groupId>
|
|
|
|
|
<artifactId>ehcache-core</artifactId>
|
|
|
|
|
<version>${ehcache.version}</version>
|
|
|
|
|
</dependency>
|
2011-11-06 18:33:55 +01:00
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.thebuzzmedia</groupId>
|
|
|
|
|
<artifactId>imgscalr-lib</artifactId>
|
|
|
|
|
<version>3.2</version>
|
|
|
|
|
</dependency>
|
2011-07-09 15:11:06 +02:00
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
|
|
|
|
|
<plugins>
|
2011-10-07 09:21:05 +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>**/html5.js</exclude>
|
|
|
|
|
<exclude>**/*.html</exclude>
|
2011-11-20 14:13:46 +01:00
|
|
|
<exclude>**/fancybox/**</exclude>
|
2011-10-07 09:21:05 +02:00
|
|
|
</excludes>
|
|
|
|
|
<strictCheck>true</strictCheck>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2011-07-09 15:11:06 +02:00
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
|
|
|
<artifactId>maven-jetty-plugin</artifactId>
|
|
|
|
|
<version>6.1.26</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<stopPort>8004</stopPort>
|
|
|
|
|
<stopKey>STOP</stopKey>
|
|
|
|
|
<source>${project.build.javaLevel}</source>
|
|
|
|
|
<target>${project.build.javaLevel}</target>
|
|
|
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
|
|
|
<scanIntervalSeconds>0</scanIntervalSeconds>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
</plugins>
|
|
|
|
|
|
|
|
|
|
<finalName>scm-plugin-backend</finalName>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
|
2011-11-06 18:33:55 +01:00
|
|
|
<repositories>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>The Buzz Media Maven Repository</id>
|
|
|
|
|
<url>http://maven.thebuzzmedia.com</url>
|
|
|
|
|
</repository>
|
|
|
|
|
</repositories>
|
|
|
|
|
|
2011-07-09 15:11:06 +02:00
|
|
|
</project>
|