2010-09-03 14:28:22 +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/maven-v4_0_0.xsd">
|
2010-09-03 14:28:22 +02:00
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
2010-09-08 10:22:46 +02:00
|
|
|
<parent>
|
|
|
|
|
<groupId>sonia.scm</groupId>
|
|
|
|
|
<artifactId>scm</artifactId>
|
2014-12-13 16:29:17 +01:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2010-09-08 10:22:46 +02:00
|
|
|
</parent>
|
|
|
|
|
|
2010-09-03 14:28:22 +02:00
|
|
|
<groupId>sonia.scm</groupId>
|
|
|
|
|
<artifactId>scm-webapp</artifactId>
|
|
|
|
|
<packaging>war</packaging>
|
2014-12-13 16:29:17 +01:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2010-11-14 18:12:05 +01:00
|
|
|
<name>scm-webapp</name>
|
2010-09-03 14:28:22 +02:00
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
2014-03-28 22:49:55 +01:00
|
|
|
<!-- annotation processor -->
|
2019-01-29 09:42:03 +01:00
|
|
|
|
2014-03-28 22:49:55 +01:00
|
|
|
<dependency>
|
2014-10-10 20:06:56 +02:00
|
|
|
<groupId>sonia.scm</groupId>
|
2014-03-28 22:49:55 +01:00
|
|
|
<artifactId>scm-annotation-processor</artifactId>
|
2014-12-13 16:29:17 +01:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2018-06-06 16:24:59 +02:00
|
|
|
<scope>provided</scope>
|
2014-03-28 22:49:55 +01:00
|
|
|
</dependency>
|
2019-01-29 09:42:03 +01:00
|
|
|
|
2010-09-03 14:28:22 +02:00
|
|
|
<dependency>
|
2010-09-11 14:28:10 +02:00
|
|
|
<groupId>javax.servlet</groupId>
|
2015-01-25 16:52:11 +01:00
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
2010-09-14 08:52:57 +02:00
|
|
|
<version>${servlet.version}</version>
|
2010-09-03 14:28:22 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2011-07-09 12:21:47 +02:00
|
|
|
|
|
|
|
|
<!-- fix javadoc -->
|
2019-07-03 16:42:36 +02:00
|
|
|
|
|
|
|
|
<dependency>
|
2011-07-09 12:21:47 +02:00
|
|
|
<groupId>javax.transaction</groupId>
|
|
|
|
|
<artifactId>jta</artifactId>
|
|
|
|
|
<version>1.1</version>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2019-07-03 16:42:36 +02:00
|
|
|
|
2011-12-11 16:37:04 +01:00
|
|
|
<!-- scm -->
|
2019-07-03 16:42:36 +02:00
|
|
|
|
2010-09-08 10:30:08 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>sonia.scm</groupId>
|
|
|
|
|
<artifactId>scm-core</artifactId>
|
2014-12-13 16:29:17 +01:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2010-09-08 10:30:08 +02:00
|
|
|
</dependency>
|
2018-09-12 11:43:29 +02:00
|
|
|
|
2012-03-04 11:24:12 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>sonia.scm</groupId>
|
2012-03-16 18:56:25 +01:00
|
|
|
<artifactId>scm-dao-xml</artifactId>
|
2014-12-13 16:29:17 +01:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2012-03-04 11:24:12 +01:00
|
|
|
</dependency>
|
2010-12-01 14:26:29 +01:00
|
|
|
|
2012-08-26 15:35:01 +02:00
|
|
|
<!-- security -->
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.shiro</groupId>
|
|
|
|
|
<artifactId>shiro-web</artifactId>
|
|
|
|
|
<version>${shiro.version}</version>
|
|
|
|
|
</dependency>
|
2019-07-03 16:42:36 +02:00
|
|
|
|
2012-08-26 15:35:01 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.shiro</groupId>
|
|
|
|
|
<artifactId>shiro-guice</artifactId>
|
|
|
|
|
<version>${shiro.version}</version>
|
|
|
|
|
</dependency>
|
2018-06-25 11:52:36 +02:00
|
|
|
|
2015-02-21 15:58:13 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
2018-11-29 08:01:02 +01:00
|
|
|
<artifactId>jjwt-impl</artifactId>
|
2018-12-04 16:45:21 +01:00
|
|
|
<version>${jjwt.version}</version>
|
2018-11-29 08:01:02 +01:00
|
|
|
</dependency>
|
2019-01-29 17:54:46 +01:00
|
|
|
|
2018-11-29 08:01:02 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
|
<artifactId>jjwt-api</artifactId>
|
2018-12-04 16:45:21 +01:00
|
|
|
<version>${jjwt.version}</version>
|
2018-11-29 08:01:02 +01:00
|
|
|
</dependency>
|
2019-01-29 17:54:46 +01:00
|
|
|
|
2018-11-29 08:01:02 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
|
<artifactId>jjwt-jackson</artifactId>
|
2018-12-04 16:45:21 +01:00
|
|
|
<version>${jjwt.version}</version>
|
2015-02-21 15:58:13 +01:00
|
|
|
</dependency>
|
2018-08-06 11:36:08 +02:00
|
|
|
|
2017-06-27 20:16:05 +02:00
|
|
|
<!-- json -->
|
2010-09-20 14:24:30 +02:00
|
|
|
|
2017-06-27 20:16:05 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.module</groupId>
|
|
|
|
|
<artifactId>jackson-module-jaxb-annotations</artifactId>
|
|
|
|
|
<version>${jackson.version}</version>
|
|
|
|
|
</dependency>
|
2018-08-06 11:36:08 +02:00
|
|
|
|
2017-06-27 20:16:05 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.jaxrs</groupId>
|
|
|
|
|
<artifactId>jackson-jaxrs-base</artifactId>
|
|
|
|
|
<version>${jackson.version}</version>
|
|
|
|
|
</dependency>
|
2019-01-29 17:54:46 +01:00
|
|
|
|
2018-06-01 14:19:12 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
|
|
|
<artifactId>jackson-datatype-jdk8</artifactId>
|
|
|
|
|
<version>${jackson.version}</version>
|
|
|
|
|
</dependency>
|
2019-01-29 17:54:46 +01:00
|
|
|
|
2018-06-01 14:19:12 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
|
|
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
|
|
|
|
<version>${jackson.version}</version>
|
|
|
|
|
</dependency>
|
2019-01-29 17:54:46 +01:00
|
|
|
|
2019-01-31 16:20:00 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.jaxrs</groupId>
|
|
|
|
|
<artifactId>jackson-jaxrs-json-provider</artifactId>
|
|
|
|
|
<version>${jackson.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2011-12-11 16:37:04 +01:00
|
|
|
<!-- rest api -->
|
2018-08-06 11:36:08 +02:00
|
|
|
|
2017-06-27 20:16:05 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jboss.resteasy</groupId>
|
|
|
|
|
<artifactId>resteasy-jaxrs</artifactId>
|
|
|
|
|
</dependency>
|
2011-12-11 16:37:04 +01:00
|
|
|
|
2011-11-13 17:19:20 +01:00
|
|
|
<dependency>
|
2017-06-27 20:16:05 +02:00
|
|
|
<groupId>org.jboss.resteasy</groupId>
|
|
|
|
|
<artifactId>resteasy-jaxb-provider</artifactId>
|
2011-11-13 17:19:20 +01:00
|
|
|
</dependency>
|
|
|
|
|
|
2010-09-03 14:43:10 +02:00
|
|
|
<dependency>
|
2017-06-27 20:16:05 +02:00
|
|
|
<groupId>org.jboss.resteasy</groupId>
|
|
|
|
|
<artifactId>resteasy-jackson2-provider</artifactId>
|
2010-09-03 14:43:10 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
2017-06-27 20:16:05 +02:00
|
|
|
<groupId>org.jboss.resteasy</groupId>
|
|
|
|
|
<artifactId>resteasy-multipart-provider</artifactId>
|
2010-09-11 14:28:10 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
2017-06-27 20:16:05 +02:00
|
|
|
<groupId>org.jboss.resteasy</groupId>
|
|
|
|
|
<artifactId>resteasy-guice</artifactId>
|
2010-09-11 14:28:10 +02:00
|
|
|
</dependency>
|
2018-08-06 11:36:08 +02:00
|
|
|
|
2012-09-29 21:44:39 +02:00
|
|
|
<dependency>
|
2017-06-27 20:16:05 +02:00
|
|
|
<groupId>org.jboss.resteasy</groupId>
|
|
|
|
|
<artifactId>resteasy-servlet-initializer</artifactId>
|
2012-09-29 21:44:39 +02:00
|
|
|
</dependency>
|
2019-01-29 09:42:03 +01:00
|
|
|
|
2018-08-16 16:53:20 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jboss.resteasy</groupId>
|
|
|
|
|
<artifactId>resteasy-validator-provider-11</artifactId>
|
|
|
|
|
<version>${resteasy.version}</version>
|
|
|
|
|
</dependency>
|
2018-06-25 11:52:36 +02:00
|
|
|
|
2019-01-31 11:47:10 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
|
<artifactId>hibernate-validator</artifactId>
|
|
|
|
|
<version>5.3.6.Final</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2019-01-30 13:21:11 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.el</groupId>
|
|
|
|
|
<artifactId>javax.el-api</artifactId>
|
2019-01-31 11:47:10 +01:00
|
|
|
<version>2.2.4</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.glassfish.web</groupId>
|
|
|
|
|
<artifactId>javax.el</artifactId>
|
|
|
|
|
<version>2.2.4</version>
|
2019-01-30 13:21:11 +01:00
|
|
|
</dependency>
|
|
|
|
|
|
2011-12-11 16:37:04 +01:00
|
|
|
<!-- injection -->
|
2010-09-11 14:28:10 +02:00
|
|
|
|
2010-10-12 09:16:40 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.inject.extensions</groupId>
|
|
|
|
|
<artifactId>guice-multibindings</artifactId>
|
|
|
|
|
<version>${guice.version}</version>
|
|
|
|
|
</dependency>
|
2018-08-06 11:36:08 +02:00
|
|
|
|
2019-05-09 10:36:27 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.inject.extensions</groupId>
|
|
|
|
|
<artifactId>guice-assistedinject</artifactId>
|
|
|
|
|
<version>${guice.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2014-01-03 12:56:18 +01:00
|
|
|
<!-- event bus -->
|
2019-01-29 09:42:03 +01:00
|
|
|
|
2014-01-03 12:56:18 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.legman.support</groupId>
|
|
|
|
|
<artifactId>shiro</artifactId>
|
2014-01-03 13:54:26 +01:00
|
|
|
<version>${legman.version}</version>
|
2014-01-03 12:56:18 +01:00
|
|
|
</dependency>
|
2019-01-29 09:42:03 +01:00
|
|
|
|
2011-12-11 16:37:04 +01:00
|
|
|
<!-- logging -->
|
2010-10-12 09:16:40 +02:00
|
|
|
|
2010-10-14 07:58:51 +02:00
|
|
|
<dependency>
|
2011-01-18 18:08:45 +01:00
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
|
<artifactId>logback-classic</artifactId>
|
2010-10-16 11:20:54 +02:00
|
|
|
</dependency>
|
2019-07-03 16:42:36 +02:00
|
|
|
|
2013-01-22 17:23:26 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
|
|
|
|
<version>${slf4j.version}</version>
|
|
|
|
|
</dependency>
|
2019-07-03 16:42:36 +02:00
|
|
|
|
2011-08-11 10:17:58 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>log4j-over-slf4j</artifactId>
|
|
|
|
|
<version>${slf4j.version}</version>
|
|
|
|
|
</dependency>
|
2018-06-25 11:52:36 +02:00
|
|
|
|
|
|
|
|
<!--
|
|
|
|
|
fix java.lang.NoClassDefFoundError org/w3c/dom/ElementTraversal
|
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>xml-apis</groupId>
|
|
|
|
|
<artifactId>xml-apis</artifactId>
|
|
|
|
|
<version>1.4.01</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!--
|
|
|
|
|
fix installation of httpasswd-plugin
|
2014-03-13 20:23:16 +01:00
|
|
|
https://groups.google.com/d/topic/scmmanager/eN7UtG8TwW8/discussion
|
|
|
|
|
-->
|
2018-06-25 11:52:36 +02:00
|
|
|
|
2014-03-13 20:23:16 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
|
<artifactId>commons-codec</artifactId>
|
2014-03-16 15:30:41 +01:00
|
|
|
<version>1.9</version>
|
2014-03-13 20:23:16 +01:00
|
|
|
</dependency>
|
2019-07-03 16:42:36 +02:00
|
|
|
|
2013-08-26 08:56:13 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
|
<version>${guava.version}</version>
|
|
|
|
|
</dependency>
|
2019-07-03 16:42:36 +02:00
|
|
|
|
2016-05-25 16:32:25 +02:00
|
|
|
<dependency>
|
2019-06-05 16:15:06 +02:00
|
|
|
<groupId>com.cronutils</groupId>
|
|
|
|
|
<artifactId>cron-utils</artifactId>
|
|
|
|
|
<version>8.1.1</version>
|
2016-05-25 16:32:25 +02:00
|
|
|
</dependency>
|
2018-06-25 11:52:36 +02:00
|
|
|
|
2011-12-11 16:37:04 +01:00
|
|
|
<!-- template engine -->
|
2018-06-25 11:52:36 +02:00
|
|
|
|
2012-08-12 20:50:19 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.spullara.mustache.java</groupId>
|
|
|
|
|
<artifactId>compiler</artifactId>
|
|
|
|
|
<version>${mustache.version}</version>
|
|
|
|
|
</dependency>
|
2018-08-10 16:31:22 +02:00
|
|
|
|
2018-09-10 12:04:56 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.sdorra</groupId>
|
|
|
|
|
<artifactId>web-resources</artifactId>
|
2019-02-08 12:55:10 +01:00
|
|
|
<version>1.1.0</version>
|
2018-09-10 12:04:56 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
2018-08-10 16:31:22 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.sdorra</groupId>
|
|
|
|
|
<artifactId>spotter-core</artifactId>
|
2019-03-25 10:55:27 +01:00
|
|
|
<version>2.0.0</version>
|
2018-08-10 16:31:22 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.tika</groupId>
|
|
|
|
|
<artifactId>tika-core</artifactId>
|
2019-01-30 13:48:32 +01:00
|
|
|
<version>1.20</version>
|
2018-08-10 16:31:22 +02:00
|
|
|
</dependency>
|
2010-12-13 21:02:39 +01:00
|
|
|
|
2019-06-19 11:52:20 +02:00
|
|
|
<!-- class loader leak prevention -->
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>se.jiderhamn.classloader-leak-prevention</groupId>
|
|
|
|
|
<artifactId>classloader-leak-prevention-core</artifactId>
|
|
|
|
|
<version>2.7.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2010-12-05 14:00:01 +01:00
|
|
|
<!-- test scope -->
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>sonia.scm</groupId>
|
|
|
|
|
<artifactId>scm-test</artifactId>
|
2014-12-13 16:29:17 +01:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2010-12-05 14:00:01 +01:00
|
|
|
<scope>test</scope>
|
2011-01-18 18:08:45 +01:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2010-12-05 14:00:01 +01:00
|
|
|
</dependency>
|
2018-06-25 11:52:36 +02:00
|
|
|
|
2012-06-23 16:41:47 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
|
|
|
<artifactId>selenium-java</artifactId>
|
2012-12-15 11:18:31 +01:00
|
|
|
<version>${selenium.version}</version>
|
2012-06-23 16:41:47 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2016-07-31 20:21:11 +02:00
|
|
|
|
2012-06-23 16:41:47 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
|
|
|
<artifactId>selenium-firefox-driver</artifactId>
|
2012-12-15 11:18:31 +01:00
|
|
|
<version>${selenium.version}</version>
|
2012-06-23 16:41:47 +02:00
|
|
|
<scope>test</scope>
|
2012-05-14 07:56:50 +02:00
|
|
|
</dependency>
|
2019-07-03 16:42:36 +02:00
|
|
|
|
2016-07-31 20:21:11 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
|
|
|
<artifactId>htmlunit-driver</artifactId>
|
|
|
|
|
<version>2.21</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2010-12-05 14:00:01 +01:00
|
|
|
|
2011-02-15 21:35:50 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
|
<artifactId>jersey-client</artifactId>
|
2017-06-27 20:16:05 +02:00
|
|
|
<version>${jersey-client.version}</version>
|
2011-02-15 21:35:50 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2011-02-15 22:33:22 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.sun.jersey.contribs</groupId>
|
|
|
|
|
<artifactId>jersey-apache-client</artifactId>
|
2017-06-27 20:16:05 +02:00
|
|
|
<version>${jersey-client.version}</version>
|
2011-02-15 22:33:22 +01:00
|
|
|
<scope>test</scope>
|
2014-03-13 20:19:08 +01:00
|
|
|
</dependency>
|
2018-08-20 18:16:14 +02:00
|
|
|
|
2017-01-12 19:50:39 +01:00
|
|
|
<!-- core plugins -->
|
2018-08-06 11:36:08 +02:00
|
|
|
|
2016-12-08 22:08:11 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.sdorra</groupId>
|
|
|
|
|
<artifactId>shiro-unit</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2018-06-25 11:52:36 +02:00
|
|
|
|
2012-07-15 16:46:28 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>sonia.scm.plugins</groupId>
|
|
|
|
|
<artifactId>scm-git-plugin</artifactId>
|
2014-12-13 16:29:17 +01:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2012-07-15 16:46:28 +02:00
|
|
|
<classifier>tests</classifier>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2019-01-29 09:42:03 +01:00
|
|
|
|
2012-07-15 16:47:36 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>sonia.scm.plugins</groupId>
|
2017-01-12 19:50:39 +01:00
|
|
|
<artifactId>scm-git-plugin</artifactId>
|
2014-12-13 16:29:17 +01:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2012-07-15 16:47:36 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2019-01-29 09:42:03 +01:00
|
|
|
|
2012-07-15 16:48:42 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>sonia.scm.plugins</groupId>
|
2017-01-12 19:50:39 +01:00
|
|
|
<artifactId>scm-hg-plugin</artifactId>
|
2014-12-13 16:29:17 +01:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2012-07-15 16:48:42 +02:00
|
|
|
<classifier>tests</classifier>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2019-01-29 09:42:03 +01:00
|
|
|
|
2012-06-23 16:41:47 +02:00
|
|
|
<dependency>
|
2017-01-12 19:50:39 +01:00
|
|
|
<groupId>sonia.scm.plugins</groupId>
|
|
|
|
|
<artifactId>scm-hg-plugin</artifactId>
|
|
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2012-06-23 16:41:47 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2018-06-25 11:52:36 +02:00
|
|
|
|
2012-06-23 16:41:47 +02:00
|
|
|
<dependency>
|
2017-01-12 19:50:39 +01:00
|
|
|
<groupId>sonia.scm.plugins</groupId>
|
|
|
|
|
<artifactId>scm-svn-plugin</artifactId>
|
|
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
|
|
|
<classifier>tests</classifier>
|
2011-02-15 21:35:50 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2019-01-29 09:42:03 +01:00
|
|
|
|
2011-02-15 22:33:22 +01:00
|
|
|
<dependency>
|
2017-01-12 19:50:39 +01:00
|
|
|
<groupId>sonia.scm.plugins</groupId>
|
|
|
|
|
<artifactId>scm-svn-plugin</artifactId>
|
|
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2011-02-15 22:33:22 +01:00
|
|
|
<scope>test</scope>
|
2014-03-13 20:19:08 +01:00
|
|
|
</dependency>
|
2019-07-03 16:42:36 +02:00
|
|
|
|
2014-03-13 20:19:08 +01:00
|
|
|
<!-- global excludes -->
|
2019-07-03 16:42:36 +02:00
|
|
|
|
2014-03-13 20:19:08 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
|
<version>1.1.3</version>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2019-07-03 16:42:36 +02:00
|
|
|
|
2014-03-13 20:19:08 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
|
<version>1.2.17</version>
|
|
|
|
|
<scope>provided</scope>
|
2011-02-15 22:33:22 +01:00
|
|
|
</dependency>
|
|
|
|
|
|
2018-05-28 13:18:00 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2018-08-02 15:22:41 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mapstruct</groupId>
|
|
|
|
|
<artifactId>mapstruct-processor</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2010-09-03 14:28:22 +02:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
2019-07-03 16:42:36 +02:00
|
|
|
|
2011-10-07 09:26:52 +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>
|
2012-12-14 15:21:55 +01:00
|
|
|
<exclude>src/main/webapp/resources/extjs/**</exclude>
|
|
|
|
|
<exclude>src/main/webapp/resources/syntaxhighlighter/**</exclude>
|
|
|
|
|
<exclude>src/main/webapp/resources/moment/**</exclude>
|
2012-10-17 14:24:22 +02:00
|
|
|
<exclude>**/*.mustache</exclude>
|
2011-10-07 09:26:52 +02:00
|
|
|
</excludes>
|
|
|
|
|
<strictCheck>true</strictCheck>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2010-09-03 14:28:22 +02:00
|
|
|
|
2010-12-13 21:02:39 +01:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
2011-12-25 18:32:21 +01:00
|
|
|
<version>2.4</version>
|
2010-12-13 21:02:39 +01:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>compile</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>list</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<includeScope>runtime</includeScope>
|
|
|
|
|
<outputFile>${project.build.directory}/classes/config/dependencies.list</outputFile>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2019-07-03 16:42:36 +02:00
|
|
|
|
2014-06-06 08:57:41 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>sonia.scm.maven</groupId>
|
|
|
|
|
<artifactId>smp-maven-plugin</artifactId>
|
|
|
|
|
<configuration>
|
2019-08-16 14:50:51 +02:00
|
|
|
<smpArtifacts>
|
|
|
|
|
<artifact>
|
2014-06-06 08:57:41 +02:00
|
|
|
<groupId>sonia.scm.plugins</groupId>
|
|
|
|
|
<artifactId>scm-hg-plugin</artifactId>
|
2014-12-13 15:33:46 +01:00
|
|
|
<version>${project.version}</version>
|
2019-08-16 14:50:51 +02:00
|
|
|
</artifact>
|
|
|
|
|
<artifact>
|
2014-06-06 08:57:41 +02:00
|
|
|
<groupId>sonia.scm.plugins</groupId>
|
|
|
|
|
<artifactId>scm-svn-plugin</artifactId>
|
2014-12-13 15:33:46 +01:00
|
|
|
<version>${project.version}</version>
|
2019-08-16 14:50:51 +02:00
|
|
|
</artifact>
|
|
|
|
|
<artifact>
|
2014-06-06 08:57:41 +02:00
|
|
|
<groupId>sonia.scm.plugins</groupId>
|
|
|
|
|
<artifactId>scm-git-plugin</artifactId>
|
2014-12-13 15:33:46 +01:00
|
|
|
<version>${project.version}</version>
|
2019-08-16 14:50:51 +02:00
|
|
|
</artifact>
|
|
|
|
|
<artifact>
|
2014-12-20 11:33:03 +01:00
|
|
|
<groupId>sonia.scm.plugins</groupId>
|
|
|
|
|
<artifactId>scm-legacy-plugin</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
2019-08-16 14:50:51 +02:00
|
|
|
</artifact>
|
|
|
|
|
</smpArtifacts>
|
2014-06-06 08:57:41 +02:00
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>compile</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>copy-core-plugins</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2018-05-28 13:18:00 +02:00
|
|
|
|
2013-08-26 08:56:13 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
|
<version>2.2</version>
|
|
|
|
|
<configuration>
|
2014-07-03 16:21:00 +02:00
|
|
|
<filteringDeploymentDescriptors>true</filteringDeploymentDescriptors>
|
2013-08-26 08:56:13 +02:00
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2018-06-25 11:52:36 +02:00
|
|
|
|
2011-02-03 19:17:08 +01:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>sonia.maven</groupId>
|
|
|
|
|
<artifactId>change-env</artifactId>
|
2011-03-02 17:30:11 +01:00
|
|
|
<version>1.0</version>
|
2011-02-03 19:17:08 +01:00
|
|
|
<configuration>
|
|
|
|
|
<environment>${environment.profile}</environment>
|
|
|
|
|
<pattern>.*(\.{env})\.xml</pattern>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>change-env</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2011-02-19 19:47:57 +01:00
|
|
|
|
|
|
|
|
<plugin>
|
2014-08-23 22:55:55 +02:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2012-10-13 11:56:43 +02:00
|
|
|
<artifactId>jetty-maven-plugin</artifactId>
|
2015-12-13 14:44:52 +01:00
|
|
|
<version>${jetty.maven.version}</version>
|
2011-02-19 19:47:57 +01:00
|
|
|
<configuration>
|
|
|
|
|
<stopPort>8005</stopPort>
|
|
|
|
|
<stopKey>STOP</stopKey>
|
|
|
|
|
<systemProperties>
|
|
|
|
|
<systemProperty>
|
|
|
|
|
<name>scm.home</name>
|
2011-12-29 15:34:34 +01:00
|
|
|
<value>${scm.home}</value>
|
2011-02-19 19:47:57 +01:00
|
|
|
</systemProperty>
|
2012-02-03 17:41:11 +01:00
|
|
|
<systemProperty>
|
|
|
|
|
<name>scm.stage</name>
|
2014-04-28 17:16:39 +02:00
|
|
|
<value>${scm.stage}</value>
|
2012-02-03 17:41:11 +01:00
|
|
|
</systemProperty>
|
2012-10-13 11:33:43 +02:00
|
|
|
<systemProperty>
|
|
|
|
|
<name>java.awt.headless</name>
|
|
|
|
|
<value>true</value>
|
|
|
|
|
</systemProperty>
|
2018-08-24 08:35:50 +02:00
|
|
|
<systemProperty>
|
|
|
|
|
<name>sonia.scm.ui.proxy</name>
|
2018-09-06 14:44:01 +02:00
|
|
|
<value>${livereload.proxy}</value>
|
2018-08-24 08:35:50 +02:00
|
|
|
</systemProperty>
|
2011-02-19 19:47:57 +01:00
|
|
|
</systemProperties>
|
2012-10-13 11:56:43 +02:00
|
|
|
<webApp>
|
|
|
|
|
<contextPath>/scm</contextPath>
|
|
|
|
|
</webApp>
|
2014-08-23 22:55:55 +02:00
|
|
|
<jettyXml>${project.basedir}/src/main/conf/jetty.xml</jettyXml>
|
2011-02-19 19:47:57 +01:00
|
|
|
<scanIntervalSeconds>0</scanIntervalSeconds>
|
|
|
|
|
</configuration>
|
2018-06-25 11:52:36 +02:00
|
|
|
</plugin>
|
|
|
|
|
|
2010-09-03 14:28:22 +02:00
|
|
|
</plugins>
|
|
|
|
|
|
|
|
|
|
<finalName>scm-webapp</finalName>
|
|
|
|
|
</build>
|
2010-12-03 17:30:13 +01:00
|
|
|
|
2010-12-13 21:02:39 +01:00
|
|
|
<properties>
|
2012-02-03 17:41:11 +01:00
|
|
|
<scm.stage>DEVELOPMENT</scm.stage>
|
2011-12-29 15:34:34 +01:00
|
|
|
<scm.home>target/scm-it</scm.home>
|
2011-02-03 19:17:08 +01:00
|
|
|
<environment.profile>default</environment.profile>
|
2018-12-04 16:45:21 +01:00
|
|
|
<jjwt.version>0.10.5</jjwt.version>
|
2016-07-31 20:21:11 +02:00
|
|
|
<selenium.version>2.53.1</selenium.version>
|
2011-08-02 14:16:21 +02:00
|
|
|
<wagon.version>1.0</wagon.version>
|
2014-10-18 15:14:22 +02:00
|
|
|
<mustache.version>0.8.17</mustache.version>
|
2013-01-21 15:04:20 +01:00
|
|
|
<netbeans.hint.deploy.server>Tomcat</netbeans.hint.deploy.server>
|
2017-06-06 08:15:45 +02:00
|
|
|
<sonar.issue.ignore.multicriteria>e1</sonar.issue.ignore.multicriteria>
|
|
|
|
|
<sonar.issue.ignore.multicriteria.e1.ruleKey>javascript:S3827</sonar.issue.ignore.multicriteria.e1.ruleKey>
|
|
|
|
|
<sonar.issue.ignore.multicriteria.e1.resourceKey>**.js</sonar.issue.ignore.multicriteria.e1.resourceKey>
|
2018-07-12 12:05:59 +02:00
|
|
|
<sonar.exclusions>src/main/webapp**</sonar.exclusions>
|
2010-12-13 21:02:39 +01:00
|
|
|
</properties>
|
|
|
|
|
|
2010-12-03 17:30:13 +01:00
|
|
|
<profiles>
|
2018-09-06 14:44:01 +02:00
|
|
|
|
|
|
|
|
<profile>
|
|
|
|
|
<id>livereload</id>
|
|
|
|
|
|
|
|
|
|
<activation>
|
|
|
|
|
<property>
|
|
|
|
|
<name>livereload</name>
|
|
|
|
|
</property>
|
|
|
|
|
</activation>
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<livereload.proxy>http://localhost:3000</livereload.proxy>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
|
|
|
|
|
<profile>
|
|
|
|
|
<id>ui-overlay</id>
|
|
|
|
|
|
|
|
|
|
<activation>
|
|
|
|
|
<property>
|
|
|
|
|
<name>!livereload</name>
|
|
|
|
|
</property>
|
|
|
|
|
</activation>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>sonia.scm</groupId>
|
|
|
|
|
<artifactId>scm-ui</artifactId>
|
|
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
|
|
|
<type>war</type>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
</profile>
|
|
|
|
|
|
2011-01-09 18:34:31 +01:00
|
|
|
<profile>
|
|
|
|
|
<id>release</id>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
2012-02-26 11:13:08 +01:00
|
|
|
<version>2.2</version>
|
2011-01-09 18:34:31 +01:00
|
|
|
<configuration>
|
|
|
|
|
<webResources>
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>${project.build.directory}/web-compressor</directory>
|
|
|
|
|
</resource>
|
2013-08-26 09:00:05 +02:00
|
|
|
<resource>
|
|
|
|
|
<directory>${project.build.directory}/dependency-rewrite</directory>
|
|
|
|
|
</resource>
|
2011-01-09 18:34:31 +01:00
|
|
|
</webResources>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>sonia.maven</groupId>
|
|
|
|
|
<artifactId>web-compressor</artifactId>
|
2013-05-21 20:38:28 +02:00
|
|
|
<version>1.5</version>
|
2011-01-09 18:34:31 +01:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>prepare-package</phase>
|
|
|
|
|
<goals>
|
2011-04-01 08:30:09 +02:00
|
|
|
<goal>partial-compress-template</goal>
|
2011-01-09 18:34:31 +01:00
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
<configuration>
|
2012-08-12 21:44:00 +02:00
|
|
|
<source>src/main/webapp/index.mustache</source>
|
|
|
|
|
<target>${project.build.directory}/web-compressor/index.mustache</target>
|
2011-01-09 18:34:31 +01:00
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
2011-02-03 19:17:08 +01:00
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<environment.profile>release</environment.profile>
|
|
|
|
|
</properties>
|
2011-01-09 18:34:31 +01:00
|
|
|
</profile>
|
|
|
|
|
|
2011-02-15 21:35:50 +01:00
|
|
|
<profile>
|
|
|
|
|
<id>it</id>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
2012-02-26 11:13:08 +01:00
|
|
|
<version>2.12</version>
|
2012-06-23 16:41:47 +02:00
|
|
|
<configuration>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>sonia/scm/it/*ITCase.java</include>
|
|
|
|
|
</includes>
|
|
|
|
|
</configuration>
|
2011-02-15 21:35:50 +01:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>integration-test</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>integration-test</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>verify</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>verify</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
<plugin>
|
2014-08-23 22:55:55 +02:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2012-10-13 11:56:43 +02:00
|
|
|
<artifactId>jetty-maven-plugin</artifactId>
|
2015-12-13 14:44:52 +01:00
|
|
|
<version>${jetty.maven.version}</version>
|
2011-02-15 21:35:50 +01:00
|
|
|
<configuration>
|
2011-05-13 08:13:00 +02:00
|
|
|
<stopPort>8085</stopPort>
|
2011-02-15 21:35:50 +01:00
|
|
|
<stopKey>STOP</stopKey>
|
|
|
|
|
<systemProperties>
|
|
|
|
|
<systemProperty>
|
|
|
|
|
<name>scm.home</name>
|
|
|
|
|
<value>target/scm-it</value>
|
|
|
|
|
</systemProperty>
|
2016-07-25 18:27:47 +02:00
|
|
|
<systemProperty>
|
|
|
|
|
<name>scm.stage</name>
|
|
|
|
|
<value>${scm.stage}</value>
|
|
|
|
|
</systemProperty>
|
2011-02-15 21:35:50 +01:00
|
|
|
</systemProperties>
|
2014-08-23 22:55:55 +02:00
|
|
|
<jettyXml>${project.basedir}/src/main/conf/jetty.xml</jettyXml>
|
2011-02-15 21:35:50 +01:00
|
|
|
<scanIntervalSeconds>0</scanIntervalSeconds>
|
|
|
|
|
<daemon>true</daemon>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>start-jetty</id>
|
|
|
|
|
<phase>pre-integration-test</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>deploy-war</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>stop-jetty</id>
|
|
|
|
|
<phase>post-integration-test</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>stop</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2018-08-06 11:52:31 +02:00
|
|
|
|
2011-02-15 21:35:50 +01:00
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
</profile>
|
2018-08-06 11:52:31 +02:00
|
|
|
|
2012-06-23 16:41:47 +02:00
|
|
|
<profile>
|
|
|
|
|
<id>selenium</id>
|
2018-08-06 11:52:31 +02:00
|
|
|
|
2016-07-31 20:21:11 +02:00
|
|
|
<dependencies>
|
2018-08-06 11:52:31 +02:00
|
|
|
|
2016-07-31 20:21:11 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
|
<version>4.3.2</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2018-08-06 11:52:31 +02:00
|
|
|
|
2016-07-31 20:21:11 +02:00
|
|
|
</dependencies>
|
2018-08-06 11:52:31 +02:00
|
|
|
|
2012-06-23 16:41:47 +02:00
|
|
|
<build>
|
|
|
|
|
<plugins>
|
2018-08-06 11:52:31 +02:00
|
|
|
|
2012-06-23 16:41:47 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
|
|
|
|
<version>2.12</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>sonia/scm/selenium/*ITCase.java</include>
|
|
|
|
|
</includes>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>integration-test</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>integration-test</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>verify</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>verify</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2018-08-06 11:52:31 +02:00
|
|
|
|
2012-06-23 16:41:47 +02:00
|
|
|
<plugin>
|
2014-08-23 22:55:55 +02:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2012-10-13 11:56:43 +02:00
|
|
|
<artifactId>jetty-maven-plugin</artifactId>
|
2015-12-13 14:44:52 +01:00
|
|
|
<version>${jetty.maven.version}</version>
|
2012-06-23 16:41:47 +02:00
|
|
|
<configuration>
|
2014-08-23 22:55:55 +02:00
|
|
|
<httpConnector>
|
|
|
|
|
<port>8082</port>
|
|
|
|
|
</httpConnector>
|
2012-06-23 16:41:47 +02:00
|
|
|
<stopPort>8086</stopPort>
|
|
|
|
|
<stopKey>STOP</stopKey>
|
|
|
|
|
<systemProperties>
|
|
|
|
|
<systemProperty>
|
|
|
|
|
<name>scm.home</name>
|
|
|
|
|
<value>target/scm-it</value>
|
|
|
|
|
</systemProperty>
|
|
|
|
|
</systemProperties>
|
2014-08-23 22:55:55 +02:00
|
|
|
<jettyXml>${project.basedir}/src/main/conf/jetty.xml</jettyXml>
|
2012-06-23 16:41:47 +02:00
|
|
|
<scanIntervalSeconds>0</scanIntervalSeconds>
|
|
|
|
|
<daemon>true</daemon>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>start-jetty</id>
|
|
|
|
|
<phase>pre-integration-test</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>deploy-war</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>stop-jetty</id>
|
|
|
|
|
<phase>post-integration-test</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>stop</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2018-08-06 11:52:31 +02:00
|
|
|
|
2012-06-23 16:41:47 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>selenium-maven-plugin</artifactId>
|
|
|
|
|
<version>2.3</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>start-selenium-server</id>
|
|
|
|
|
<phase>pre-integration-test</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>start-server</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<background>true</background>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>stop-selenium-server</id>
|
|
|
|
|
<phase>post-integration-test</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>stop-server</goal>
|
2018-08-06 11:52:31 +02:00
|
|
|
</goals>
|
2012-06-23 16:41:47 +02:00
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2018-08-06 11:52:31 +02:00
|
|
|
|
2012-06-23 16:41:47 +02:00
|
|
|
</plugins>
|
|
|
|
|
</build>
|
2018-08-06 11:52:31 +02:00
|
|
|
|
2012-06-23 16:41:47 +02:00
|
|
|
</profile>
|
2018-08-06 11:52:31 +02:00
|
|
|
|
2011-10-02 13:14:23 +02:00
|
|
|
<profile>
|
|
|
|
|
<id>doc</id>
|
2018-08-06 11:52:31 +02:00
|
|
|
|
2011-10-02 13:14:23 +02:00
|
|
|
<build>
|
|
|
|
|
<plugins>
|
2018-08-06 11:52:31 +02:00
|
|
|
|
2011-10-02 13:14:23 +02:00
|
|
|
<plugin>
|
2017-05-09 15:18:14 +02:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>copy-enunciate-configuration</id>
|
|
|
|
|
<phase>compile</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>copy-resources</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<outputDirectory>${project.build.directory}</outputDirectory>
|
2018-08-06 11:52:31 +02:00
|
|
|
<resources>
|
2017-05-09 15:18:14 +02:00
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/doc</directory>
|
|
|
|
|
<filtering>true</filtering>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>**/enunciate.xml</include>
|
|
|
|
|
</includes>
|
|
|
|
|
</resource>
|
2018-08-06 11:52:31 +02:00
|
|
|
</resources>
|
|
|
|
|
</configuration>
|
2017-05-09 15:18:14 +02:00
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2018-08-06 11:52:31 +02:00
|
|
|
|
2017-05-09 15:18:14 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>com.webcohesion.enunciate</groupId>
|
|
|
|
|
<artifactId>enunciate-maven-plugin</artifactId>
|
2011-10-02 13:14:23 +02:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>docs</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<phase>compile</phase>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
<configuration>
|
2017-05-09 15:18:14 +02:00
|
|
|
<configFile>${project.build.directory}/enunciate.xml</configFile>
|
2017-05-10 08:57:42 +02:00
|
|
|
<docsDir>${project.build.directory}</docsDir>
|
2017-05-10 09:37:31 +02:00
|
|
|
<docsSubdir>restdocs</docsSubdir>
|
2011-10-02 13:14:23 +02:00
|
|
|
</configuration>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
2017-05-09 15:18:14 +02:00
|
|
|
<groupId>com.webcohesion.enunciate</groupId>
|
|
|
|
|
<artifactId>enunciate-top</artifactId>
|
2018-06-25 17:56:03 +02:00
|
|
|
<version>${enunciate.version}</version>
|
2017-05-09 15:18:14 +02:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.webcohesion.enunciate</groupId>
|
|
|
|
|
<artifactId>enunciate-swagger</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2011-10-02 13:14:23 +02:00
|
|
|
</dependency>
|
2018-06-25 17:56:03 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.webcohesion.enunciate</groupId>
|
|
|
|
|
<artifactId>enunciate-lombok</artifactId>
|
|
|
|
|
<version>${enunciate.version}</version>
|
|
|
|
|
</dependency>
|
2019-01-28 14:28:34 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mapstruct</groupId>
|
|
|
|
|
<artifactId>mapstruct-processor</artifactId>
|
|
|
|
|
<version>${org.mapstruct.version}</version>
|
|
|
|
|
</dependency>
|
2011-10-02 13:14:23 +02:00
|
|
|
</dependencies>
|
|
|
|
|
</plugin>
|
2018-08-06 11:52:31 +02:00
|
|
|
|
2013-05-30 08:24:05 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<descriptors>
|
|
|
|
|
<descriptor>src/main/doc/assembly.xml</descriptor>
|
|
|
|
|
</descriptors>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>single</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2018-08-06 11:52:31 +02:00
|
|
|
|
2011-10-02 13:14:23 +02:00
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
2011-02-15 21:35:50 +01:00
|
|
|
|
2010-12-03 17:30:13 +01:00
|
|
|
</profiles>
|
2019-07-03 16:42:36 +02:00
|
|
|
|
2010-09-03 14:28:22 +02:00
|
|
|
</project>
|
|
|
|
|
|