gtp-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.snice.codecs</groupId>
<artifactId>gtp-maven-plugin</artifactId>
<version>0.0.10</version>
</dependency><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>
<prerequisites>
<maven>3.0.0</maven>
</prerequisites>
<parent>
<groupId>io.snice.codecs</groupId>
<artifactId>codecs-base-parent</artifactId>
<version>0.0.10</version>
</parent>
<name>Gtp Codegen</name>
<artifactId>gtp-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<description />
<dependencies>
<dependency>
<groupId>io.snice.codecs</groupId>
<artifactId>codec-diameter-base</artifactId>
</dependency>
<dependency>
<groupId>io.snice.codecs</groupId>
<artifactId>codec-gtp-codegen</artifactId>
</dependency>
<!-- Maven plugin development -->
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-project</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.6.0</version>
<executions>
<execution>
<id>default-descriptor</id>
<phase>process-classes</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>