apollo-client-maven-plugin-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.coxautodev</groupId>
<artifactId>apollo-client-maven-plugin-parent</artifactId>
<version>1.1.2</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>
<groupId>com.coxautodev</groupId>
<artifactId>apollo-client-maven-plugin-parent</artifactId>
<version>1.1.2</version>
<packaging>pom</packaging>
<name>apollo-client-maven-plugin-parent</name>
<description>Parent Pom for Apollo GraphQL Client Maven Plugin</description>
<url>https://github.com/Cox-Automotive/apollo-client-maven-plugin</url>
<properties>
<kotlin.version>1.1.2-2</kotlin.version>
<java.version>1.8</java.version>
<!--This contends with dokka and creates two javadoc jars...-->
<maven.javadoc.skip>true</maven.javadoc.skip>
</properties>
<modules>
<module>apollo-client-maven-plugin</module>
<module>apollo-client-maven-plugin-tests</module>
</modules>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>${kotlin.version}</version>
</dependency>
<dependency>
<groupId>org.spockframework</groupId>
<artifactId>spock-core</artifactId>
<version>1.0-groovy-2.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>2.4.7</version>
</dependency>
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib-nodep</artifactId>
<version>3.2.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.objenesis</groupId>
<artifactId>objenesis</artifactId>
<version>2.5.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
<testSourceDirectory>${project.basedir}/src/test/groovy</testSourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
<version>${kotlin.version}</version>
<executions>
<execution>
<id>compile</id>
<phase>process-sources</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.gmavenplus</groupId>
<artifactId>gmavenplus-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<goals>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<tagNameFormat>@{project.version}</tagNameFormat>
<generateReleasePoms>false</generateReleasePoms>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>bintray</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jetbrains.dokka</groupId>
<artifactId>dokka-maven-plugin</artifactId>
<version>0.9.9</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>javadocJar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<developers>
<developer>
<name>Andrew Potter</name>
<email>Andrew.Potter@coxautoinc.com</email>
<organization>Cox Automotive</organization>
<organizationUrl>http://www.coxautoinc.com</organizationUrl>
</developer>
</developers>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<distributionManagement>
<snapshotRepository>
<id>bintray</id>
<url>https://api.bintray.com/maven/apottere/maven/apollo-client-maven-plugin</url>
</snapshotRepository>
<!-- Released with: mvn release:clean release:prepare release:perform -B -e -Pbintray -->
<repository>
<id>bintray</id>
<url>https://api.bintray.com/maven/apottere/maven/apollo-client-maven-plugin/;publish=1</url>
</repository>
</distributionManagement>
<scm>
<connection>scm:git:git://github.com/Cox-Automotive/apollo-client-maven-plugin.git</connection>
<developerConnection>scm:git:git@github.com:Cox-Automotive/apollo-client-maven-plugin.git</developerConnection>
<url>http://github.com/Cox-Automotive/apollo-client-maven-plugin</url>
<tag>1.1.2</tag>
</scm>
</project>