Files
SCM-Manager/pom.xml

918 lines
28 KiB
XML
Raw Normal View History

2010-09-08 10:22:46 +02:00
<?xml version="1.0" encoding="UTF-8"?>
<!--
MIT License
Copyright (c) 2020-present Cloudogu GmbH and Contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
-->
<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>
2020-06-04 09:41:11 +00:00
<version>2.1.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
2020-03-09 08:01:36 +01:00
<url>https://github.com/scm-manager/scm-manager</url>
2010-09-08 10:22:46 +02:00
2011-01-21 17:53:54 +01:00
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
2011-01-21 17:53:54 +01:00
</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>
2020-03-09 08:01:36 +01:00
<connection>scm:git:https://github.com/scm-manager/scm-manager</connection>
<developerConnection>scm:git:ssh://github.com/scm-manager/scm-manager</developerConnection>
<url>https://github.com/scm-manager/scm-manager</url>
<tag>HEAD</tag>
2010-10-22 18:47:27 +02:00
</scm>
<issueManagement>
2020-03-09 08:01:36 +01:00
<system>github</system>
<url>https://github.com/scm-manager/scm-manager/issues</url>
2010-10-22 18:47:27 +02:00
</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>
2020-05-25 06:57:04 +02:00
<url>https://oss.cloudogu.com/jenkins/</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>
2019-10-07 10:57:09 +02:00
<module>scm-ui</module>
<module>scm-plugins</module>
<module>scm-dao-xml</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>
2020-04-26 11:36:18 +02:00
<module>scm-packaging</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>packages.scm-manager.org</id>
<name>scm-manager public repository</name>
<url>https://packages.scm-manager.org/repository/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>packages.scm-manager.org</id>
<name>scm-manager public repository</name>
<url>https://packages.scm-manager.org/repository/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>
<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>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.1.0</version>
2018-08-01 11:42:40 +02:00
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.10</version>
2018-08-01 11:42:40 +02:00
<scope>provided</scope>
</dependency>
<!-- rest api -->
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-core</artifactId>
<version>${resteasy.version}</version>
2020-05-20 09:24:31 +02:00
<exclusions>
<exclusion>
<groupId>org.jboss.spec.javax.ws.rs</groupId>
<artifactId>jboss-jaxrs-api_2.1_spec</artifactId>
</exclusion>
<exclusion>
<groupId>org.jboss.spec.javax.xml.bind</groupId>
<artifactId>jboss-jaxb-api_2.3_spec</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-core-spi</artifactId>
2018-08-01 11:42:40 +02:00
<version>${resteasy.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxb-provider</artifactId>
<version>${resteasy.version}</version>
2020-05-20 09:24:31 +02:00
<exclusions>
<exclusion>
<groupId>org.jboss.spec.javax.xml.bind</groupId>
<artifactId>jboss-jaxb-api_2.3_spec</artifactId>
</exclusion>
</exclusions>
2018-08-01 11:42:40 +02:00
</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>
2020-05-20 09:24:31 +02:00
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-client-api</artifactId>
<version>${resteasy.version}</version>
<exclusions>
<exclusion>
<groupId>org.jboss.spec.javax.ws.rs</groupId>
<artifactId>jboss-jaxrs-api_2.1_spec</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-client</artifactId>
<version>${resteasy.version}</version>
<exclusions>
<exclusion>
<groupId>org.jboss.spec.javax.ws.rs</groupId>
<artifactId>jboss-jaxrs-api_2.1_spec</artifactId>
</exclusion>
</exclusions>
</dependency>
2018-08-01 11:42:40 +02:00
<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>
2020-05-20 09:24:31 +02:00
<exclusions>
<exclusion>
<groupId>org.jboss.spec.javax.ws.rs</groupId>
<artifactId>jboss-jaxrs-api_2.1_spec</artifactId>
</exclusion>
</exclusions>
2018-08-01 11:42:40 +02:00
</dependency>
<!--
Ensure smallrye-config is at least 1.6.2,
smallrye-config is a transitive dependency of resteasy-core.
https://snyk.io/vuln/SNYK-JAVA-IOSMALLRYECONFIG-548898
-->
<dependency>
<groupId>io.smallrye.config</groupId>
<artifactId>smallrye-config</artifactId>
<version>1.6.2</version>
</dependency>
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
<version>${jaxrs.version}</version>
</dependency>
2020-02-17 14:09:26 +01:00
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-annotations</artifactId>
<version>2.1.1</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>
<dependency>
<groupId>org.hibernate.validator</groupId>
<artifactId>hibernate-validator</artifactId>
<version>${hibernate-validator.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>
2020-03-24 13:05:41 +01:00
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13</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.16.1</version>
<scope>test</scope>
</dependency>
2019-01-29 09:42:03 +01:00
<dependency>
<groupId>org.awaitility</groupId>
<artifactId>awaitility</artifactId>
<version>4.0.2</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>
2020-05-20 09:43:29 +02:00
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
2019-01-29 09:42:03 +01:00
</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>
2020-05-19 21:57:21 +02:00
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
2019-01-29 09:42:03 +01:00
<version>${jaxb.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>${jaxb.version}</version>
</dependency>
2019-10-30 14:17:15 +01:00
<!-- utils -->
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.14</version>
2019-10-30 14:17:15 +01:00
</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.5.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.1.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>sonia.scm.maven</groupId>
<artifactId>smp-maven-plugin</artifactId>
2020-04-20 15:28:33 +02:00
<version>1.0.0-rc7</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
2020-02-17 14:09:26 +01:00
<plugin>
<groupId>io.openapitools.swagger</groupId>
<artifactId>swagger-maven-plugin</artifactId>
<version>2.1.2</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>
<configuration>
<!--
skips surefire tests without skipping failsafe tests.
Property value seems to magically default to false
-->
<skipTests>${skipUnitTests}</skipTests>
</configuration>
</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.
-->
2018-08-21 16:37:34 +02:00
<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</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>3.0</version>
2010-10-31 17:00:20 +01:00
<configuration>
<header>https://download.scm-manager.org/licenses/license.txt</header>
2010-10-31 17:00:20 +01:00
<excludes>
<exclude>.editorconfig</exclude>
<exclude>.git/**</exclude>
2020-04-21 07:38:35 +02:00
<exclude>.*/**</exclude>
<exclude>.mvn/wrapper/**</exclude>
<exclude>docs/**</exclude>
<exclude>node_modules/**</exclude>
2010-10-31 17:00:20 +01:00
<exclude>target/**</exclude>
<exclude>tmp/**</exclude>
<exclude>**/.m2/**</exclude>
<exclude>**/.cache/**</exclude>
<exclude>**/node_modules/**</exclude>
<exclude>**/target/**</exclude>
<exclude>**/tmp/**</exclude>
<exclude>**/*.mustache</exclude>
<exclude>**/*.txt</exclude>
<exclude>*.ini</exclude>
<exclude>*.mustache</exclude>
<exclude>*.smp</exclude>
2020-05-03 19:20:40 +02:00
<exclude>*.tpl</exclude>
<exclude>*.txt</exclude>
<exclude>mvnw</exclude>
<exclude>mvnw.cmd</exclude>
<exclude>yarn.lock</exclude>
<exclude>**/logback.ci.xml</exclude>
2020-05-04 11:22:07 +02:00
<exclude>**/pkg/ourPackage/scm-source.properties</exclude>
<exclude>**/.vagrant/**</exclude>
2010-10-31 17:00:20 +01:00
</excludes>
<mapping>
<tsx>SLASHSTAR_STYLE</tsx>
<ts>SLASHSTAR_STYLE</ts>
<java>SLASHSTAR_STYLE</java>
</mapping>
2010-10-31 19:22:53 +01:00
<strictCheck>true</strictCheck>
2010-10-31 17:00:20 +01:00
</configuration>
<executions>
<execution>
<phase>process-resources</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
2010-10-31 17:00:20 +01:00
</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>
<source>${project.build.javaLevel}</source>
2011-09-30 10:14:50 +02:00
<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>
</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
2020-03-09 08:01:36 +01:00
https://github.com/scm-manager/scm-manager/blob/develop/docs/configure-eclipse.md
2011-06-28 08:30:14 +02:00
-->
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>
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
<profiles>
2020-01-13 15:56:28 +01:00
<profile>
<id>coverage</id>
<build>
<plugins>
<!-- code coverage -->
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.5</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</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>packages.scm-manager.org</id>
2010-12-12 19:29:42 +01:00
<name>scm-manager release repository</name>
<url>https://packages.scm-manager.org/repository/releases/</url>
2010-12-12 19:29:42 +01:00
</repository>
<snapshotRepository>
<id>packages.scm-manager.org</id>
2010-12-12 19:29:42 +01:00
<name>scm-manager snapshot repository</name>
<url>https://packages.scm-manager.org/repository/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.28.2</mockito.version>
2020-05-19 21:35:16 +02:00
<hamcrest.version>2.1</hamcrest.version>
<junit.version>5.6.2</junit.version>
2012-12-04 20:55:52 +01:00
2012-05-13 18:44:33 +02:00
<!-- logging libraries -->
<slf4j.version>1.7.30</slf4j.version>
<logback.version>1.2.3</logback.version>
2020-05-19 16:29:40 +02:00
<servlet.version>3.1.0</servlet.version>
<jaxrs.version>2.1.1</jaxrs.version>
<resteasy.version>4.5.3.Final</resteasy.version>
2017-06-27 20:16:05 +02:00
<jersey-client.version>1.19.4</jersey-client.version>
<jackson.version>2.11.0</jackson.version>
<guice.version>4.2.3</guice.version>
<jaxb.version>2.3.3</jaxb.version>
<hibernate-validator.version>6.1.5.Final</hibernate-validator.version>
2014-01-03 13:54:26 +01:00
<!-- event bus -->
<legman.version>1.6.2</legman.version>
2014-04-28 13:48:11 +02:00
<!-- webserver -->
<jetty.version>9.4.28.v20200408</jetty.version>
<jetty.maven.version>9.4.22.v20191022</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>
<shiro.version>1.5.3</shiro.version>
2012-12-04 20:55:52 +01:00
2018-06-25 11:52:36 +02:00
<!-- repository libraries -->
<jgit.version>5.6.1.202002131546-r-scm1</jgit.version>
<svnkit.version>1.10.1-scm2</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 -->
2020-02-19 14:30:52 +01:00
<nodejs.version>12.16.1</nodejs.version>
<yarn.version>1.22.0</yarn.version>
2018-09-05 14:57:42 +02:00
2012-05-13 18:44:33 +02:00
<!-- build properties -->
<project.build.javaLevel>8</project.build.javaLevel>
<project.test.javaLevel>8</project.test.javaLevel>
2010-09-08 10:22:46 +02:00
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<netbeans.hint.license>SCM-MIT</netbeans.hint.license>
<jdk.classifier/>
<org.mapstruct.version>1.3.1.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-10-10 08:15:59 +02:00
<sonar.nodejs.executable>./scm-ui/target/frontend/buildfrontend-node/node-v${nodejs.version}-linux-x64/bin/node</sonar.nodejs.executable>
<!-- Possibility to skip only the unit test. Can be useful when running only integration tests.
This can be used from the command line as follows: mvn <goals> -DskipUnitTests -->
<skipUnitTests>${skipTests}</skipUnitTests>
2010-09-08 10:22:46 +02:00
</properties>
2012-11-09 09:20:55 +01:00
</project>