2010-09-10 12:27:04 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>sonia.scm</groupId>
|
|
|
|
|
<artifactId>scm</artifactId>
|
2014-12-13 16:29:17 +01:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2010-09-10 12:27:04 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<groupId>sonia.scm.plugins</groupId>
|
|
|
|
|
<artifactId>scm-plugins</artifactId>
|
|
|
|
|
<packaging>pom</packaging>
|
2014-12-13 16:29:17 +01:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2010-09-10 12:27:04 +02:00
|
|
|
<name>scm-plugins</name>
|
|
|
|
|
|
|
|
|
|
<modules>
|
2011-07-01 18:43:26 +02:00
|
|
|
<module>scm-hg-plugin</module>
|
|
|
|
|
<module>scm-git-plugin</module>
|
|
|
|
|
<module>scm-svn-plugin</module>
|
2014-12-20 11:33:03 +01:00
|
|
|
<module>scm-legacy-plugin</module>
|
2010-09-10 12:27:04 +02:00
|
|
|
</modules>
|
2018-08-24 11:03:35 +02:00
|
|
|
|
2010-09-10 12:27:04 +02:00
|
|
|
<dependencies>
|
|
|
|
|
|
2014-06-06 08:57:41 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.servlet</groupId>
|
2015-01-25 16:52:11 +01:00
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
2014-06-06 08:57:41 +02:00
|
|
|
<version>${servlet.version}</version>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2018-08-24 11:03:35 +02:00
|
|
|
|
2010-09-10 12:27:04 +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>
|
2014-06-06 08:57:41 +02:00
|
|
|
<scope>provided</scope>
|
2010-09-10 12:27:04 +02:00
|
|
|
</dependency>
|
2018-08-24 11:03:35 +02:00
|
|
|
|
2018-08-02 15:22:41 +02:00
|
|
|
<!-- annotation processors -->
|
2018-08-24 11:03:35 +02:00
|
|
|
|
2014-03-18 15:48:43 +01:00
|
|
|
<dependency>
|
2014-10-10 20:06:56 +02:00
|
|
|
<groupId>sonia.scm</groupId>
|
2014-03-18 15:48:43 +01:00
|
|
|
<artifactId>scm-annotation-processor</artifactId>
|
2014-12-13 16:29:17 +01:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2014-03-18 15:48:43 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2018-08-02 15:22:41 +02:00
|
|
|
|
|
|
|
|
<!-- Annotation processor for DTO mappers-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mapstruct</groupId>
|
|
|
|
|
<artifactId>mapstruct-processor</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2018-08-06 11:36:08 +02:00
|
|
|
|
|
|
|
|
<!-- Annotation processor for getter, setters, constructors, etc. -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2018-08-24 11:03:35 +02:00
|
|
|
|
2014-06-06 08:57:41 +02: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>
|
2014-06-06 08:57:41 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2010-09-10 12:27:04 +02:00
|
|
|
|
2018-07-17 13:39:55 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jboss.resteasy</groupId>
|
|
|
|
|
<artifactId>resteasy-jaxrs</artifactId>
|
2018-08-06 11:36:08 +02:00
|
|
|
<scope>test</scope>
|
2018-07-17 13:39:55 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
2018-08-06 13:47:04 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jboss.resteasy</groupId>
|
|
|
|
|
<artifactId>resteasy-jackson2-provider</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2018-07-17 13:39:55 +02:00
|
|
|
|
2010-09-10 12:27:04 +02:00
|
|
|
</dependencies>
|
|
|
|
|
|
2010-12-01 14:36:52 +01:00
|
|
|
<build>
|
|
|
|
|
<resources>
|
|
|
|
|
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
|
<filtering>true</filtering>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>META-INF/scm/plugin.xml</include>
|
2012-05-01 17:19:33 +02:00
|
|
|
<include>sonia/scm/version/*</include>
|
2010-12-01 14:36:52 +01:00
|
|
|
</includes>
|
|
|
|
|
</resource>
|
|
|
|
|
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
|
<filtering>false</filtering>
|
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>META-INF/scm/plugin.xml</exclude>
|
2012-05-01 17:19:33 +02:00
|
|
|
<exclude>sonia/scm/version/*</exclude>
|
2010-12-01 14:36:52 +01:00
|
|
|
</excludes>
|
|
|
|
|
</resource>
|
|
|
|
|
|
|
|
|
|
</resources>
|
2018-08-24 11:03:35 +02:00
|
|
|
|
2011-07-30 13:40:20 +02:00
|
|
|
<plugins>
|
2018-08-24 11:03:35 +02:00
|
|
|
|
2011-07-30 13:40:20 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>sonia.scm.maven</groupId>
|
2014-06-06 08:57:41 +02:00
|
|
|
<artifactId>smp-maven-plugin</artifactId>
|
2018-10-29 16:38:11 +01:00
|
|
|
<version>1.0.0-alpha-3</version>
|
2014-06-06 08:57:41 +02:00
|
|
|
<extensions>true</extensions>
|
2011-07-30 13:40:20 +02:00
|
|
|
</plugin>
|
2018-08-24 11:03:35 +02:00
|
|
|
|
2018-10-29 16:38:11 +01:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>com.github.sdorra</groupId>
|
|
|
|
|
<artifactId>buildfrontend-maven-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<node>
|
|
|
|
|
<version>${nodejs.version}</version>
|
|
|
|
|
</node>
|
|
|
|
|
<pkgManager>
|
|
|
|
|
<type>YARN</type>
|
|
|
|
|
<version>${yarn.version}</version>
|
|
|
|
|
</pkgManager>
|
|
|
|
|
<failOnMissingPackageJson>false</failOnMissingPackageJson>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2018-08-24 11:03:35 +02:00
|
|
|
|
2011-07-30 13:40:20 +02:00
|
|
|
</plugins>
|
2010-12-01 14:36:52 +01:00
|
|
|
</build>
|
|
|
|
|
|
2011-01-10 21:02:35 +01:00
|
|
|
<profiles>
|
2018-08-06 11:52:31 +02:00
|
|
|
<profile>
|
|
|
|
|
<id>doc</id>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
<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>
|
|
|
|
|
<resources>
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/doc</directory>
|
|
|
|
|
<filtering>true</filtering>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>**/enunciate.xml</include>
|
|
|
|
|
</includes>
|
|
|
|
|
</resource>
|
|
|
|
|
</resources>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>com.webcohesion.enunciate</groupId>
|
|
|
|
|
<artifactId>enunciate-maven-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>docs</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<phase>compile</phase>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<configFile>${project.build.directory}/enunciate.xml</configFile>
|
|
|
|
|
<docsDir>${project.build.directory}</docsDir>
|
|
|
|
|
<docsSubdir>restdocs</docsSubdir>
|
|
|
|
|
</configuration>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.webcohesion.enunciate</groupId>
|
|
|
|
|
<artifactId>enunciate-top</artifactId>
|
|
|
|
|
<version>${enunciate.version}</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.webcohesion.enunciate</groupId>
|
|
|
|
|
<artifactId>enunciate-swagger</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.webcohesion.enunciate</groupId>
|
|
|
|
|
<artifactId>enunciate-lombok</artifactId>
|
|
|
|
|
<version>${enunciate.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
<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>
|
|
|
|
|
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
|
|
|
|
|
2011-01-10 21:02:35 +01:00
|
|
|
</profiles>
|
|
|
|
|
|
2017-01-12 19:50:39 +01:00
|
|
|
</project>
|