gradle-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>codes.rafael.gradlemavenplugin</groupId> <artifactId>gradle-maven-plugin</artifactId> <version>1.0.10</version> </dependency>
<?xml version="1.0"?> <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>codes.rafael.gradlemavenplugin</groupId> <artifactId>gradle-maven-plugin</artifactId> <packaging>maven-plugin</packaging> <version>1.0.10</version> <name>gradle-maven-plugin Maven Mojo</name> <url>https://github.com/LendingClub/gradle-maven-plugin</url> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git@github.com:raphw/gradle-maven-plugin.git</connection> <developerConnection>scm:git:git@github.com:raphw/gradle-maven-plugin.git</developerConnection> <url>git@github.com:raphw/gradle-maven-plugin.git</url> </scm> <developers> <developer> <id>rob</id> <name>Rob Schoening</name> <email>robschoening@gmail.com</email> </developer> <developer> <id>raphw</id> <name>Rafael Winterhalter</name> <email>rafael.wth@gmail.com</email> </developer> </developers> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>3.3</version> <configuration> <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> </configuration> <executions> <execution> <id>mojo-descriptor</id> <goals> <goal>descriptor</goal> </goals> <phase>process-classes</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.5.1</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-invoker-plugin</artifactId> <version>1.8</version> <configuration> <debug>false</debug> <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo> <projectsDirectory>src/it</projectsDirectory> <!-- <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>--> <pomIncludes> <pomInclude>**/pom.xml</pomInclude> </pomIncludes> <postBuildHookScript>verify</postBuildHookScript> <!-- need to stream logs since when running in travis-ci, we can't easily get access to build.log --> <streamLogs>true</streamLogs> </configuration> <executions> <execution> <phase>integration-test</phase> <goals> <goal>install</goal> <goal>run</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>2.3</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <shadedGroupFilter>org.slf4j</shadedGroupFilter> <createDependencyReducedPom>false</createDependencyReducedPom> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <!-- dependencies to annotations --> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.4</version> <scope>provided</scope> <!-- annotations are needed only to build the plugin --> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>3.3.9</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>3.3.9</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.5</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.gradle</groupId> <artifactId>gradle-tooling-api</artifactId> <version>4.5</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-all</artifactId> <version>2.0.6</version> </dependency> </dependencies> <repositories> <repository> <id>gradle</id> <url>http://repo.gradle.org/gradle/libs-releases-local/</url> </repository> </repositories> <distributionManagement> <repository> <id>bintray</id> <url>https://api.bintray.com/maven/raphw/maven/gradle-maven-plugin</url> </repository> </distributionManagement> </project>