mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-01-03 06:09:46 +01:00
827 lines
24 KiB
XML
827 lines
24 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>2.0.0-SNAPSHOT</version>
|
||
<description>
|
||
The easiest way to share your Git, Mercurial
|
||
and Subversion repositories over http.
|
||
</description>
|
||
<name>scm</name>
|
||
|
||
<url>http://bitbucket.org/sdorra/scm-manager</url>
|
||
|
||
|
||
<licenses>
|
||
<license>
|
||
<name>BSD</name>
|
||
<url>http://www.opensource.org/licenses/bsd-license.php</url>
|
||
</license>
|
||
</licenses>
|
||
|
||
<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>
|
||
</scm>
|
||
|
||
<issueManagement>
|
||
<system>bitbucket</system>
|
||
<url>http://bitbucket.org/sdorra/scm-manager/issues</url>
|
||
</issueManagement>
|
||
|
||
<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>
|
||
|
||
<ciManagement>
|
||
<system>Jenkins</system>
|
||
<url>https://scm-manager.ci.cloudbees.com/</url>
|
||
</ciManagement>
|
||
|
||
<prerequisites>
|
||
<maven>3.1.0</maven>
|
||
</prerequisites>
|
||
|
||
<modules>
|
||
<module>scm-annotations</module>
|
||
<module>scm-annotation-processor</module>
|
||
<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>
|
||
<module>scm-webapp</module>
|
||
<module>scm-server</module>
|
||
<module>scm-it</module>
|
||
</modules>
|
||
|
||
<repositories>
|
||
|
||
<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>
|
||
|
||
<repository>
|
||
<id>ossrh</id>
|
||
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
||
<snapshots>
|
||
<enabled>true</enabled>
|
||
<updatePolicy>daily</updatePolicy>
|
||
</snapshots>
|
||
</repository>
|
||
|
||
<repository>
|
||
<id>jitpack</id>
|
||
<url>https://jitpack.io</url>
|
||
</repository>
|
||
|
||
</repositories>
|
||
|
||
<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>
|
||
</pluginRepository>
|
||
|
||
</pluginRepositories>
|
||
|
||
<dependencies>
|
||
|
||
<!-- JUnit 5 -->
|
||
|
||
<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>
|
||
</dependency>
|
||
|
||
<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>
|
||
|
||
<dependency>
|
||
<groupId>org.mockito</groupId>
|
||
<artifactId>mockito-core</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.mockito</groupId>
|
||
<artifactId>mockito-junit-jupiter</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.assertj</groupId>
|
||
<artifactId>assertj-core</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<!-- Dependency used in Jenkinsfile. Including this in maven provides code completion in Jenkinsfile. -->
|
||
<groupId>com.github.cloudogu</groupId>
|
||
<artifactId>ces-build-lib</artifactId>
|
||
<!-- Keep this version in sync with the one used in Jenkinsfile -->
|
||
<version>9aadeeb</version>
|
||
<!-- Don't ship this dependency with the app -->
|
||
<optional>true</optional>
|
||
<!-- Don't inherit this dependency! -->
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
</dependencies>
|
||
|
||
<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>
|
||
|
||
<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>
|
||
|
||
<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>
|
||
<artifactId>mockito-core</artifactId>
|
||
<version>${mockito.version}</version>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
|
||
<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>
|
||
</dependencies>
|
||
</dependencyManagement>
|
||
|
||
<build>
|
||
|
||
<pluginManagement>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>com.github.sdorra</groupId>
|
||
<artifactId>buildfrontend-maven-plugin</artifactId>
|
||
<version>2.2.0</version>
|
||
</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>
|
||
</plugins>
|
||
</pluginManagement>
|
||
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-surefire-plugin</artifactId>
|
||
<version>2.22.0</version>
|
||
</plugin>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-enforcer-plugin</artifactId>
|
||
<version>1.4.1</version>
|
||
<executions>
|
||
<execution>
|
||
<id>enforce-java</id>
|
||
<phase>compile</phase>
|
||
<goals>
|
||
<goal>enforce</goal>
|
||
</goals>
|
||
<configuration>
|
||
<rules>
|
||
<!--
|
||
enforce minimum 1.8.0-101 to accept Let’s 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>
|
||
</rules>
|
||
<fail>true</fail>
|
||
</configuration>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
|
||
<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>
|
||
<configuration>
|
||
<signature>
|
||
<groupId>org.codehaus.mojo.signature</groupId>
|
||
<artifactId>java18</artifactId>
|
||
<version>1.0</version>
|
||
</signature>
|
||
</configuration>
|
||
<executions>
|
||
<execution>
|
||
<phase>compile</phase>
|
||
<goals>
|
||
<goal>check</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
|
||
<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>
|
||
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-compiler-plugin</artifactId>
|
||
<version>3.5.1</version>
|
||
<configuration>
|
||
<showWarnings>true</showWarnings>
|
||
<showDeprecation>true</showDeprecation>
|
||
<source>${project.build.javaLevel}</source>
|
||
<target>${project.build.javaLevel}</target>
|
||
<testSource>${project.test.javaLevel}</testSource>
|
||
<testTarget>${project.test.javaLevel}</testTarget>
|
||
<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>
|
||
</configuration>
|
||
</plugin>
|
||
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-resources-plugin</artifactId>
|
||
<configuration>
|
||
<encoding>${project.build.sourceEncoding}</encoding>
|
||
</configuration>
|
||
</plugin>
|
||
|
||
<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>
|
||
</excludes>
|
||
<strictCheck>true</strictCheck>
|
||
</configuration>
|
||
</plugin>
|
||
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-javadoc-plugin</artifactId>
|
||
<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>
|
||
<links>
|
||
<link>http://download.oracle.com/javase/8/docs/api/</link>
|
||
<link>http://download.oracle.com/docs/cd/E17802_01/products/products/servlet/2.5/docs/servlet-2_5-mr2/</link>
|
||
<link>https://google.github.io/guice/api-docs/${guice.version}/javadoc</link>
|
||
<link>http://www.slf4j.org/api/</link>
|
||
<link>http://shiro.apache.org/static/current/apidocs/</link>
|
||
</links>
|
||
</configuration>
|
||
</plugin>
|
||
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-source-plugin</artifactId>
|
||
<version>2.2.1</version>
|
||
</plugin>
|
||
|
||
<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>
|
||
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-deploy-plugin</artifactId>
|
||
<version>2.7</version>
|
||
</plugin>
|
||
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-release-plugin</artifactId>
|
||
<version>2.3.2</version>
|
||
<configuration>
|
||
<pushChanges>false</pushChanges>
|
||
<localCheckout>true</localCheckout>
|
||
<releaseProfiles>release,APIviz,doc,nativepkg</releaseProfiles>
|
||
<tagNameFormat>@{project.version}</tagNameFormat>
|
||
<autoVersionSubmodules>true</autoVersionSubmodules>
|
||
</configuration>
|
||
</plugin>
|
||
|
||
<!--
|
||
fix maven troubleshooting part on
|
||
https://bitbucket.org/sdorra/scm-manager/wiki/configure-eclipse
|
||
-->
|
||
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-eclipse-plugin</artifactId>
|
||
<version>2.6</version>
|
||
</plugin>
|
||
|
||
<!-- code coverage -->
|
||
|
||
<plugin>
|
||
<groupId>org.jacoco</groupId>
|
||
<artifactId>jacoco-maven-plugin</artifactId>
|
||
<version>0.8.1</version>
|
||
<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>
|
||
|
||
<!-- reporting -->
|
||
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-site-plugin</artifactId>
|
||
<version>3.2</version>
|
||
<configuration>
|
||
<reportPlugins>
|
||
|
||
<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>
|
||
<linkXref>true</linkXref>
|
||
<sourceEncoding>${project.build.sourceEncoding}</sourceEncoding>
|
||
<targetJdk>${project.build.javaLevel}</targetJdk>
|
||
</configuration>
|
||
</plugin>
|
||
|
||
</reportPlugins>
|
||
</configuration>
|
||
</plugin>
|
||
|
||
</plugins>
|
||
|
||
</build>
|
||
|
||
<profiles>
|
||
|
||
<profile>
|
||
<id>jrebel</id>
|
||
|
||
<build>
|
||
<plugins>
|
||
|
||
<plugin>
|
||
<groupId>org.zeroturnaround</groupId>
|
||
<artifactId>jrebel-maven-plugin</artifactId>
|
||
<version>1.1.3</version>
|
||
<executions>
|
||
<execution>
|
||
<id>generate-rebel-xml</id>
|
||
<phase>process-resources</phase>
|
||
<goals>
|
||
<goal>generate</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
|
||
</plugins>
|
||
</build>
|
||
|
||
</profile>
|
||
|
||
<profile>
|
||
<id>APIviz</id>
|
||
<activation>
|
||
<property>
|
||
<name>sonia.apiviz</name>
|
||
<value>true</value>
|
||
</property>
|
||
</activation>
|
||
|
||
<build>
|
||
<plugins>
|
||
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-javadoc-plugin</artifactId>
|
||
<configuration>
|
||
<doclet>org.jboss.apiviz.APIviz</doclet>
|
||
<docletArtifact>
|
||
<groupId>org.jboss.apiviz</groupId>
|
||
<artifactId>apiviz</artifactId>
|
||
<version>1.3.2.GA</version>
|
||
</docletArtifact>
|
||
<additionalparam>
|
||
-sourceclasspath ${project.build.outputDirectory}
|
||
-nopackagediagram
|
||
</additionalparam>
|
||
</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>
|
||
<!-- test libraries -->
|
||
<mockito.version>2.23.0</mockito.version>
|
||
<hamcrest.version>1.3</hamcrest.version>
|
||
<junit.version>5.2.0</junit.version>
|
||
|
||
<!-- logging libraries -->
|
||
<slf4j.version>1.7.22</slf4j.version>
|
||
<logback.version>1.1.10</logback.version>
|
||
<servlet.version>3.0.1</servlet.version>
|
||
|
||
<jaxrs.version>2.0.1</jaxrs.version>
|
||
<resteasy.version>3.1.3.Final</resteasy.version>
|
||
<jersey-client.version>1.19.4</jersey-client.version>
|
||
<enunciate.version>2.9.1</enunciate.version>
|
||
<jackson.version>2.8.6</jackson.version>
|
||
<guice.version>4.0</guice.version>
|
||
|
||
<!-- event bus -->
|
||
<legman.version>1.4.2</legman.version>
|
||
|
||
<!-- webserver -->
|
||
<jetty.version>9.2.10.v20150310</jetty.version>
|
||
<jetty.maven.version>9.2.10.v20150310</jetty.maven.version>
|
||
|
||
<!-- security libraries -->
|
||
<ssp.version>1.1.0</ssp.version>
|
||
<shiro.version>1.4.0</shiro.version>
|
||
|
||
<!-- repostitory libraries -->
|
||
<jgit.version>v4.5.2.201704071617-r-scm1</jgit.version>
|
||
<svnkit.version>1.8.15-scm1</svnkit.version>
|
||
|
||
<!-- util libraries -->
|
||
<guava.version>26.0-jre</guava.version>
|
||
<quartz.version>2.2.3</quartz.version>
|
||
|
||
<!-- frontend -->
|
||
<nodejs.version>8.11.4</nodejs.version>
|
||
<yarn.version>1.9.4</yarn.version>
|
||
|
||
<!-- build properties -->
|
||
<project.build.javaLevel>1.8</project.build.javaLevel>
|
||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
<netbeans.hint.license>SCM-BSD</netbeans.hint.license>
|
||
<jdk.classifier />
|
||
<org.mapstruct.version>1.2.0.Final</org.mapstruct.version>
|
||
|
||
<!-- Sonar exclusions -->
|
||
<!-- *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 -->
|
||
<sonar.cpd.exclusions>**/*StoreFactory.java,**/*UserPassword.js</sonar.cpd.exclusions>
|
||
|
||
<node.version>8.11.4</node.version>
|
||
<sonar.nodejs.executable>./scm-ui/target/frontend/buildfrontend-node/node-v${node.version}-linux-x64/bin/node</sonar.nodejs.executable>
|
||
|
||
|
||
</properties>
|
||
|
||
</project>
|