dumpling-groovy-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.olivergondza.dumpling</groupId>
<artifactId>dumpling-groovy-api</artifactId>
<version>2.6</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.olivergondza.dumpling</groupId>
<artifactId>dumpling-parent</artifactId>
<version>2.6</version>
</parent>
<artifactId>dumpling-groovy-api</artifactId>
<packaging>jar</packaging>
<name>Dumpling groovy API extension</name>
<description>Dumpling model extensions for groovy integration</description>
<dependencies>
<dependency>
<groupId>com.github.olivergondza.dumpling</groupId>
<artifactId>dumpling</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.github.olivergondza.dumpling</groupId>
<artifactId>dumpling-test-utils</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-jsr223</artifactId>
<version>${groovy.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>gmaven-plugin</artifactId>
<version>1.5</version>
<configuration>
<providerSelection>2.0</providerSelection>
<sourceEncoding>UTF-8</sourceEncoding>
</configuration>
<executions>
<execution>
<goals>
<goal>generateStubs</goal>
<goal>compile</goal>
<goal>generateTestStubs</goal>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-jsr223</artifactId>
<version>${groovy.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>