Files
SCM-Manager/pom.xml

870 lines
25 KiB
XML
Raw Normal View History

2010-09-08 10:22:46 +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">
2010-09-08 10:22:46 +02:00
<modelVersion>4.0.0</modelVersion>
<groupId>sonia.scm</groupId>
<artifactId>scm</artifactId>
<packaging>pom</packaging>
<version>2.0.0-SNAPSHOT</version>
2011-01-21 17:53:54 +01:00
<description>
The easiest way to share your Git, Mercurial
and Subversion repositories over http.
</description>
2010-09-08 10:22:46 +02:00
<name>scm</name>
2010-10-22 18:47:27 +02:00
2010-10-16 13:07:15 +02:00
<url>http://bitbucket.org/sdorra/scm-manager</url>
2010-09-08 10:22:46 +02:00
2011-01-21 17:53:54 +01:00
<licenses>
<license>
<name>BSD</name>
<url>http://www.opensource.org/licenses/bsd-license.php</url>
</license>
</licenses>
2010-10-22 18:47:27 +02:00
<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>
<tag>HEAD</tag>
2010-10-22 18:47:27 +02:00
</scm>
<issueManagement>
<system>bitbucket</system>
<url>http://bitbucket.org/sdorra/scm-manager/issues</url>
</issueManagement>
2012-12-04 20:55:52 +01:00
2011-07-12 18:37:07 +02:00
<mailingLists>
<mailingList>
<name>SCM-Manager</name>
<subscribe>scmmanager-subscribe@googlegroups.com</subscribe>
<unsubscribe>scmmanager-unsubscribe@googlegroups.com</unsubscribe>
<post>scmmanager@googlegroups.com</post>
<archive>http://groups.google.com/group/scmmanager</archive>
</mailingList>
</mailingLists>
2012-12-04 20:55:52 +01:00
<ciManagement>
<system>Jenkins</system>
<url>https://scm-manager.ci.cloudbees.com/</url>
</ciManagement>
2010-10-22 18:47:27 +02:00
<prerequisites>
<maven>3.1.0</maven>
2010-10-22 18:47:27 +02:00
</prerequisites>
2010-09-08 10:22:46 +02:00
<modules>
<module>scm-annotations</module>
<module>scm-annotation-processor</module>
2010-09-08 10:30:08 +02:00
<module>scm-core</module>
<module>scm-test</module>
<module>scm-ui-components</module>
<module>scm-plugins</module>
<module>scm-dao-xml</module>
<module>scm-ui</module>
2010-09-08 10:22:46 +02:00
<module>scm-webapp</module>
2010-09-11 19:17:50 +02:00
<module>scm-server</module>
2018-08-03 09:38:13 +02:00
<module>scm-it</module>
2010-09-08 10:22:46 +02:00
</modules>
<repositories>
2010-09-11 14:28:10 +02:00
2010-12-12 19:29:42 +01:00
<repository>
<id>maven.scm-manager.org</id>
<name>scm-manager release repository</name>
2011-02-03 14:28:15 +01:00
<url>http://maven.scm-manager.org/nexus/content/groups/public</url>
2010-12-12 19:29:42 +01:00
</repository>
2010-09-08 10:22:46 +02:00
</repositories>
2011-02-03 14:28:15 +01:00
<pluginRepositories>
<pluginRepository>
<id>maven.scm-manager.org</id>
<name>scm-manager release repository</name>
<url>http://maven.scm-manager.org/nexus/content/groups/public</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<updatePolicy>never</updatePolicy>
</releases>
2011-02-03 14:28:15 +01:00
</pluginRepository>
</pluginRepositories>
2010-09-08 10:22:46 +02:00
<dependencies>
<!-- JUnit 5 -->
2010-09-08 10:22:46 +02:00
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
2010-09-08 10:22:46 +02:00
</dependency>
2018-11-28 19:49:55 +01:00
<dependency>
<groupId>org.junit-pioneer</groupId>
<artifactId>junit-pioneer</artifactId>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
2010-11-06 16:22:07 +01:00
<dependency>
<groupId>org.mockito</groupId>
2018-08-08 09:20:08 +02:00
<artifactId>mockito-core</artifactId>
</dependency>
2018-11-28 19:49:55 +01:00
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
2010-11-06 16:22:07 +01:00
</dependency>
2010-09-08 10:22:46 +02:00
</dependencies>
2018-07-24 07:52:01 +02:00
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.github.sdorra</groupId>
<artifactId>shiro-unit</artifactId>
<version>1.0.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.sdorra</groupId>
<artifactId>ssp-lib</artifactId>
<version>${ssp.version}</version>
</dependency>
<dependency>
<groupId>com.github.sdorra</groupId>
<artifactId>ssp-processor</artifactId>
<version>${ssp.version}</version>
<optional>true</optional>
</dependency>
2018-08-01 11:42:40 +02:00
<dependency>
<groupId>com.webcohesion.enunciate</groupId>
<artifactId>enunciate-core-annotations</artifactId>
<version>${enunciate.version}</version>
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-jdk8</artifactId>
<version>${org.mapstruct.version}</version>
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>${org.mapstruct.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>de.otto.edison</groupId>
<artifactId>edison-hal</artifactId>
<version>2.0.1</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.18</version>
<scope>provided</scope>
</dependency>
<!-- rest api -->
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxrs</artifactId>
<version>${resteasy.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxb-provider</artifactId>
<version>${resteasy.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jackson2-provider</artifactId>
<version>${resteasy.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-multipart-provider</artifactId>
<version>${resteasy.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-guice</artifactId>
<version>${resteasy.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-servlet-initializer</artifactId>
<version>${resteasy.version}</version>
</dependency>
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
<version>${jaxrs.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${jackson.version}</version>
</dependency>
<!-- JUnit 5 -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
2018-11-28 19:49:55 +01:00
<dependency>
<groupId>org.junit-pioneer</groupId>
<artifactId>junit-pioneer</artifactId>
<version>0.3.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>${hamcrest.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>${hamcrest.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
2018-08-16 10:47:47 +02:00
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
2018-11-28 19:49:55 +01:00
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.10.0</version>
<scope>test</scope>
</dependency>
2019-01-29 09:42:03 +01:00
<!-- http -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.5</version>
</dependency>
<!-- logging -->
<dependency>
<artifactId>slf4j-api</artifactId>
<groupId>org.slf4j</groupId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
</dependency>
<!-- xml -->
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>${jaxb.version}</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>${jaxb.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>${jaxb.version}</version>
</dependency>
<dependency>
<groupId>javax.activation</groupId>
<artifactId>activation</artifactId>
<version>1.1.1</version>
</dependency>
2018-07-24 07:52:01 +02:00
</dependencies>
</dependencyManagement>
2010-09-08 10:22:46 +02:00
<build>
<pluginManagement>
<plugins>
2018-09-05 14:57:42 +02:00
<plugin>
<groupId>com.github.sdorra</groupId>
<artifactId>buildfrontend-maven-plugin</artifactId>
<version>2.3.0</version>
2018-09-05 14:57:42 +02:00
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.3</version>
</plugin>
<plugin>
<groupId>com.webcohesion.enunciate</groupId>
<artifactId>enunciate-maven-plugin</artifactId>
<version>${enunciate.version}</version>
</plugin>
<plugin>
<groupId>sonia.scm.maven</groupId>
<artifactId>smp-maven-plugin</artifactId>
2019-08-19 09:31:33 +02:00
<version>1.0.0-alpha-6</version>
</plugin>
</plugins>
</pluginManagement>
2010-09-08 10:22:46 +02:00
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version>
</plugin>
2016-09-13 21:24:04 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
2018-06-25 11:52:36 +02:00
<version>3.0.0-M1</version>
2016-09-13 21:24:04 +02:00
<executions>
<execution>
<id>enforce-java</id>
<phase>compile</phase>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<!--
enforce minimum 1.8.0-101 to accept Lets Encrypt certificates
-->
<requireJavaVersion>
<version>[1.8.0-101,)</version>
</requireJavaVersion>
<!--
enforce minimum maven 3.1 for the smp plugin
-->
<requireMavenVersion>
<version>[3.1,)</version>
</requireMavenVersion>
2019-01-29 09:42:03 +01:00
<!--
enforce java 1.8 compatible bytecode
-->
2018-06-25 11:52:36 +02:00
<enforceBytecodeVersion>
2019-01-29 09:42:03 +01:00
<maxJdkVersion>1.8</maxJdkVersion>
2018-06-25 11:52:36 +02:00
<ignoreClasses>
<!--
ignore java 9 module info classes
because jaxb is compiled with java 7 expect of module-info, which is compiled with java 9
-->
<ignoreClass>module-info</ignoreClass>
</ignoreClasses>
</enforceBytecodeVersion>
2016-09-13 21:24:04 +02:00
</rules>
<fail>true</fail>
</configuration>
</execution>
</executions>
2018-06-25 11:52:36 +02:00
<dependencies>
<dependency>
<groupId>org.codehaus.mojo</groupId>
<artifactId>extra-enforcer-rules</artifactId>
<version>1.0-beta-7</version>
</dependency>
</dependencies>
2016-09-13 21:24:04 +02:00
</plugin>
2012-12-04 20:55:52 +01:00
2012-10-17 13:49:35 +02:00
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-maven-plugin</artifactId>
<!-- Note: 1.17 seems to have problems with JDK8. When updating, use > 1.17, if available!
https://github.com/mojohaus/animal-sniffer/issues/53 -->
<version>1.16</version>
2012-10-17 13:49:35 +02:00
<configuration>
<signature>
<groupId>org.codehaus.mojo.signature</groupId>
2016-12-11 10:48:28 +01:00
<artifactId>java18</artifactId>
2012-10-17 13:49:35 +02:00
<version>1.0</version>
</signature>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
2012-10-17 13:49:35 +02:00
</plugin>
2010-09-08 10:22:46 +02:00
2018-08-21 16:37:34 +02:00
<plugin>
<groupId>com.github.legman</groupId>
<artifactId>legman-maven-plugin</artifactId>
<version>${legman.version}</version>
<configuration>
<fail>true</fail>
</configuration>
<executions>
<execution>
<phase>process-classes</phase>
<goals>
<!-- Prevent usage of guava annotations that would be silently ignored -> hard to find.
We use legman annotations instead, that provide additional features such as weak references. -->
<goal>guava-migration-check</goal>
</goals>
</execution>
</executions>
</plugin>
2010-09-08 10:22:46 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
2010-09-08 10:22:46 +02:00
<configuration>
2014-01-11 14:40:59 +01:00
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
2010-09-08 10:22:46 +02:00
<source>${project.build.javaLevel}</source>
<target>${project.build.javaLevel}</target>
<testSource>${project.test.javaLevel}</testSource>
<testTarget>${project.test.javaLevel}</testTarget>
2010-09-08 10:22:46 +02:00
<encoding>${project.build.sourceEncoding}</encoding>
<!--
suppress compiler warning about bootclasspath with older source
see https://blogs.oracle.com/darcy/entry/bootclasspath_older_source
-->
<compilerArgument>-Xlint:unchecked,-options</compilerArgument>
<compilerArgument>-parameters</compilerArgument>
2010-09-08 10:22:46 +02:00
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
2010-10-31 17:00:20 +01:00
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
2010-10-31 17:00:20 +01:00
<artifactId>maven-license-plugin</artifactId>
2011-08-04 14:35:42 +02:00
<version>1.9.0</version>
2010-10-31 17:00:20 +01:00
<configuration>
2011-08-04 14:35:42 +02:00
<header>http://download.scm-manager.org/licenses/mvn-license.txt</header>
2010-10-31 17:00:20 +01:00
<includes>
<include>src/**</include>
<include>**/test/**</include>
</includes>
<excludes>
<exclude>target/**</exclude>
<exclude>.hg/**</exclude>
</excludes>
2010-10-31 19:22:53 +01:00
<strictCheck>true</strictCheck>
2010-10-31 17:00:20 +01:00
</configuration>
</plugin>
2012-12-04 20:55:52 +01:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
2011-09-30 10:14:50 +02:00
<configuration>
<useStandardDocletOptions>true</useStandardDocletOptions>
<charset>${project.build.sourceEncoding}</charset>
<encoding>${project.build.sourceEncoding}</encoding>
<docencoding>${project.build.sourceEncoding}</docencoding>
<breakiterator>true</breakiterator>
<version>true</version>
<author>true</author>
<keywords>true</keywords>
2011-09-30 11:39:02 +02:00
<links>
2017-06-25 19:01:33 +02:00
<link>http://download.oracle.com/javase/8/docs/api/</link>
2011-09-30 11:39:02 +02:00
<link>http://download.oracle.com/docs/cd/E17802_01/products/products/servlet/2.5/docs/servlet-2_5-mr2/</link>
2016-07-26 12:08:45 +02:00
<link>https://google.github.io/guice/api-docs/${guice.version}/javadoc</link>
2011-09-30 11:39:02 +02:00
<link>http://www.slf4j.org/api/</link>
2012-10-17 14:14:51 +02:00
<link>http://shiro.apache.org/static/current/apidocs/</link>
2011-09-30 11:39:02 +02:00
</links>
2011-09-30 10:14:50 +02:00
</configuration>
</plugin>
2012-12-04 20:55:52 +01:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
2013-01-11 14:23:59 +01:00
<version>2.2.1</version>
</plugin>
2015-02-17 09:44:23 +01:00
2013-01-11 14:26:02 +01:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>2.5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.4</version>
</plugin>
2012-12-04 20:55:52 +01:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.7</version>
</plugin>
2012-12-04 20:55:52 +01:00
2011-07-01 13:22:39 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.3.2</version>
2011-07-01 13:22:39 +02:00
<configuration>
<pushChanges>false</pushChanges>
<localCheckout>true</localCheckout>
<releaseProfiles>release,APIviz,doc,nativepkg</releaseProfiles>
2012-12-15 17:02:50 +01:00
<tagNameFormat>@{project.version}</tagNameFormat>
<autoVersionSubmodules>true</autoVersionSubmodules>
2011-07-01 13:22:39 +02:00
</configuration>
</plugin>
2012-12-04 20:55:52 +01:00
2011-06-28 08:30:14 +02:00
<!--
2012-12-04 20:55:52 +01:00
fix maven troubleshooting part on
2011-06-28 08:30:14 +02:00
https://bitbucket.org/sdorra/scm-manager/wiki/configure-eclipse
-->
2012-12-04 20:55:52 +01:00
2011-06-28 08:30:14 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.6</version>
</plugin>
2016-09-13 22:36:04 +02:00
<!-- code coverage -->
2016-09-13 22:36:04 +02:00
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.1</version>
2016-09-13 22:36:04 +02:00
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
2012-05-13 18:58:09 +02:00
<!-- reporting -->
2012-12-04 20:55:52 +01:00
2010-10-22 17:35:16 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
2012-05-13 18:58:09 +02:00
<artifactId>maven-site-plugin</artifactId>
2018-06-25 11:52:36 +02:00
<version>3.7</version>
2010-10-16 13:07:15 +02:00
</plugin>
2012-12-04 20:55:52 +01:00
2010-10-22 17:35:16 +02:00
</plugins>
2012-05-13 18:58:09 +02:00
</build>
2010-10-22 17:35:16 +02:00
2018-06-25 11:52:36 +02:00
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>2.3</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.4.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.12</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>2.7.1</version>
<configuration>
<sourceEncoding>${project.build.sourceEncoding}</sourceEncoding>
<targetJdk>${project.build.javaLevel}</targetJdk>
</configuration>
</plugin>
</plugins>
</reporting>
2010-10-22 17:35:16 +02:00
<profiles>
2012-12-04 20:55:52 +01:00
2011-07-23 19:30:00 +02:00
<profile>
<id>jrebel</id>
2012-12-04 20:55:52 +01:00
2011-07-23 19:30:00 +02:00
<build>
<plugins>
2012-12-04 20:55:52 +01:00
2011-07-23 19:30:00 +02:00
<plugin>
<groupId>org.zeroturnaround</groupId>
<artifactId>jrebel-maven-plugin</artifactId>
<version>1.1.3</version>
2011-07-23 19:30:00 +02:00
<executions>
<execution>
<id>generate-rebel-xml</id>
<phase>process-resources</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>
2012-12-04 20:55:52 +01:00
2011-07-23 19:30:00 +02:00
</plugins>
</build>
2012-12-04 20:55:52 +01:00
2011-07-23 19:30:00 +02:00
</profile>
2012-12-04 20:55:52 +01:00
2012-04-30 11:55:46 +02:00
<profile>
<id>APIviz</id>
<activation>
<property>
<name>sonia.apiviz</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
2012-12-04 20:55:52 +01:00
2012-04-30 11:55:46 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
2018-06-25 11:52:36 +02:00
<version>3.0.0</version>
2012-04-30 11:55:46 +02:00
<configuration>
2018-06-25 11:52:36 +02:00
<failOnError>false</failOnError>
2012-04-30 11:55:46 +02:00
</configuration>
</plugin>
2012-12-04 20:55:52 +01:00
2012-04-30 11:55:46 +02:00
</plugins>
</build>
</profile>
2010-10-22 17:35:16 +02:00
</profiles>
2012-12-04 20:55:52 +01:00
2010-12-12 19:29:42 +01:00
<distributionManagement>
<repository>
<id>maven.scm-manager.org</id>
<name>scm-manager release repository</name>
2011-02-03 14:28:15 +01:00
<url>http://maven.scm-manager.org/nexus/content/repositories/releases</url>
2010-12-12 19:29:42 +01:00
</repository>
<snapshotRepository>
<id>maven.scm-manager.org</id>
<name>scm-manager snapshot repository</name>
2011-02-03 14:28:15 +01:00
<url>http://maven.scm-manager.org/nexus/content/repositories/snapshots</url>
2010-12-12 19:29:42 +01:00
</snapshotRepository>
</distributionManagement>
2010-09-08 10:22:46 +02:00
<properties>
2012-05-13 18:44:33 +02:00
<!-- test libraries -->
<mockito.version>2.23.0</mockito.version>
2012-07-10 16:19:23 +02:00
<hamcrest.version>1.3</hamcrest.version>
<junit.version>5.2.0</junit.version>
2012-12-04 20:55:52 +01:00
2012-05-13 18:44:33 +02:00
<!-- logging libraries -->
2018-06-25 11:52:36 +02:00
<slf4j.version>1.7.25</slf4j.version>
<logback.version>1.2.3</logback.version>
2015-01-25 16:52:11 +01:00
<servlet.version>3.0.1</servlet.version>
<jaxrs.version>2.1.1</jaxrs.version>
<resteasy.version>3.6.2.Final</resteasy.version>
2017-06-27 20:16:05 +02:00
<jersey-client.version>1.19.4</jersey-client.version>
<enunciate.version>2.11.1</enunciate.version>
2019-01-30 15:23:34 +01:00
<jackson.version>2.9.8</jackson.version>
2016-12-11 21:30:33 +01:00
<guice.version>4.0</guice.version>
2018-06-25 11:52:36 +02:00
<jaxb.version>2.3.0</jaxb.version>
2014-01-03 13:54:26 +01:00
<!-- event bus -->
<legman.version>1.5.1</legman.version>
2014-04-28 13:48:11 +02:00
<!-- webserver -->
<jetty.version>9.4.14.v20181114</jetty.version>
<jetty.maven.version>9.4.14.v20181114</jetty.maven.version>
2012-12-15 17:02:50 +01:00
2012-08-26 15:35:01 +02:00
<!-- security libraries -->
2019-02-18 15:48:32 +01:00
<ssp.version>1.2.0</ssp.version>
2018-06-08 08:35:50 +02:00
<shiro.version>1.4.0</shiro.version>
2012-12-04 20:55:52 +01:00
2018-06-25 11:52:36 +02:00
<!-- repository libraries -->
<jgit.version>v5.4.0.201906121030-r-scm1</jgit.version>
2018-06-25 11:52:36 +02:00
<svnkit.version>1.9.0-scm3</svnkit.version>
2014-11-18 18:26:06 +01:00
<!-- util libraries -->
<guava.version>26.0-jre</guava.version>
2012-12-15 17:02:50 +01:00
2018-09-05 14:57:42 +02:00
<!-- frontend -->
<nodejs.version>10.16.0</nodejs.version>
<yarn.version>1.16.0</yarn.version>
2018-09-05 14:57:42 +02:00
2012-05-13 18:44:33 +02:00
<!-- build properties -->
2016-12-11 10:48:28 +01:00
<project.build.javaLevel>1.8</project.build.javaLevel>
2019-01-29 09:42:03 +01:00
<project.test.javaLevel>1.8</project.test.javaLevel>
2010-09-08 10:22:46 +02:00
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2010-10-31 17:00:20 +01:00
<netbeans.hint.license>SCM-BSD</netbeans.hint.license>
<jdk.classifier />
<org.mapstruct.version>1.2.0.Final</org.mapstruct.version>
2018-12-04 16:57:45 +01:00
<!-- Sonar exclusions -->
2018-12-05 09:27:31 +01:00
<!-- *StoreFactory classes are excluded because extracting the floating store parameter classes in a generic -->
<!-- common class creates runtime errors (IncompatibleClassChange) -->
<!-- *UserPassword JS files are excluded because extraction of common code would not make the code more readable -->
2018-12-04 18:57:43 +01:00
<sonar.cpd.exclusions>**/*StoreFactory.java,**/*UserPassword.js</sonar.cpd.exclusions>
2018-12-04 16:57:45 +01:00
2019-01-23 14:46:49 +01:00
<sonar.nodejs.executable>./scm-ui/target/frontend/buildfrontend-node/node-v${node.version}-linux-x64/bin/node</sonar.nodejs.executable>
2010-09-08 10:22:46 +02:00
</properties>
2012-11-09 09:20:55 +01:00
</project>