Files
SCM-Manager/scm-plugins/pom.xml

180 lines
4.9 KiB
XML
Raw Normal View History

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>
2020-02-14 13:40:39 +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>
2020-02-14 13:40:39 +01:00
<version>2.0.0-SNAPSHOT</version>
2010-09-10 12:27:04 +02:00
<name>scm-plugins</name>
<modules>
<module>scm-hg-plugin</module>
<module>scm-git-plugin</module>
<module>scm-svn-plugin</module>
<module>scm-legacy-plugin</module>
2010-09-10 12:27:04 +02:00
</modules>
2010-09-10 12:27:04 +02:00
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
2015-01-25 16:52:11 +01:00
<artifactId>javax.servlet-api</artifactId>
<version>${servlet.version}</version>
<scope>provided</scope>
</dependency>
2010-09-10 12:27:04 +02:00
<dependency>
<groupId>sonia.scm</groupId>
<artifactId>scm-core</artifactId>
2020-02-14 13:40:39 +01:00
<version>2.0.0-SNAPSHOT</version>
<scope>provided</scope>
2010-09-10 12:27:04 +02:00
</dependency>
<!-- annotation processors -->
<dependency>
<groupId>sonia.scm</groupId>
<artifactId>scm-annotation-processor</artifactId>
2020-02-14 13:40:39 +01:00
<version>2.0.0-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<!-- Annotation processor for DTO mappers-->
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<scope>provided</scope>
</dependency>
<!-- Annotation processor for getter, setters, constructors, etc. -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
2020-02-17 14:09:26 +01:00
<!-- openapi documentation -->
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-annotations</artifactId>
<scope>provided</scope>
</dependency>
<!-- test scope -->
<dependency>
<groupId>sonia.scm</groupId>
<artifactId>scm-test</artifactId>
2020-02-14 13:40:39 +01:00
<version>2.0.0-SNAPSHOT</version>
<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-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-core-spi</artifactId>
<scope>test</scope>
2018-07-17 13:39:55 +02:00
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jackson2-provider</artifactId>
<scope>test</scope>
</dependency>
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>
<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>
<exclude>sonia/scm/version/*</exclude>
2010-12-01 14:36:52 +01:00
</excludes>
</resource>
</resources>
2011-07-30 13:40:20 +02:00
<plugins>
2011-07-30 13:40:20 +02:00
<plugin>
<groupId>sonia.scm.maven</groupId>
<artifactId>smp-maven-plugin</artifactId>
<extensions>true</extensions>
2011-07-30 13:40:20 +02:00
</plugin>
<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>
2020-02-17 14:09:26 +01:00
<plugin>
<groupId>io.openapitools.swagger</groupId>
<artifactId>swagger-maven-plugin</artifactId>
<configuration>
<resourcePackages>
<resourcePackage>sonia.scm.api.v2.resources</resourcePackage>
</resourcePackages>
<outputDirectory>${basedir}/target/classes/META-INF/scm</outputDirectory>
<outputFilename>openapi</outputFilename>
<outputFormats>JSON,YAML</outputFormats>
<prettyPrint>true</prettyPrint>
<swaggerConfig>
<info>
<title>SCM-Manager Plugin REST-API</title>
<version>${project.version}</version>
<license>
<url>http://www.opensource.org/licenses/bsd-license.php</url>
<name>BSD</name>
</license>
</info>
</swaggerConfig>
</configuration>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>
2011-07-30 13:40:20 +02:00
</plugins>
2010-12-01 14:36:52 +01:00
</build>
2017-01-12 19:50:39 +01:00
</project>