poom-ci-github-webhook
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.codingmatters.poom.ci</groupId>
<artifactId>poom-ci-github-webhook</artifactId>
<version>1.1.0</version>
</dependency><?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.codingmatters.poom.ci</groupId>
<artifactId>poom-ci</artifactId>
<version>1.1.0</version>
</parent>
<artifactId>poom-ci-github-webhook</artifactId>
<name>${project.groupId}:${project.artifactId}</name>
<properties>
<docker.image.namespace>${codingmatters.docker.namespace}</docker.image.namespace>
<service.class.name>org.codingmatters.poom.ci.github.webhook.GithubWebhookService</service.class.name>
</properties>
<dependencies>
<dependency>
<groupId>org.codingmatters.poom.ci</groupId>
<artifactId>poom-ci-triggers</artifactId>
</dependency>
<dependency>
<groupId>org.codingmatters.rest</groupId>
<artifactId>cdm-rest-undertow</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</dependency>
<dependency>
<groupId>org.codingmatters.rest</groupId>
<artifactId>cdm-rest-api</artifactId>
</dependency>
<dependency>
<groupId>org.codingmatters.poom</groupId>
<artifactId>poom-services-support</artifactId>
</dependency>
<dependency>
<groupId>org.codingmatters.poom.ci</groupId>
<artifactId>poom-ci-pipeline-api-client</artifactId>
</dependency>
<dependency>
<groupId>org.codingmatters.rest</groupId>
<artifactId>cdm-rest-client-okhttp</artifactId>
</dependency>
<dependency>
<groupId>org.codingmatters.rest</groupId>
<artifactId>cdm-rest-tests-support</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codingmatters.rest</groupId>
<artifactId>cdm-rest-maven-plugin</artifactId>
<executions>
<execution>
<id>api-types-gen</id>
<phase>generate-sources</phase>
<goals>
<goal>generate-api-types</goal>
</goals>
<configuration>
<destination-package>${project.groupId}.github.webhook.api</destination-package>
<api-spec-file>src/main/resources/github-webhook-api.raml</api-spec-file>
</configuration>
</execution>
<execution>
<id>server-side-api-gen</id>
<phase>generate-sources</phase>
<goals>
<goal>generate-server-side</goal>
</goals>
<configuration>
<destination-package>${project.groupId}.github.webhook.api.service</destination-package>
<types-package>${project.groupId}.github.webhook.api</types-package>
<api-spec-file>src/main/resources/github-webhook-api.raml</api-spec-file>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>target/generated-sources</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>