gradle-release.
gradle-release is a plugin for providing a Maven-like release process to project using Gradle..
Here is the list of declaration for gradle-release. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.github.townsfolk</groupId> <artifactId>gradle-release</artifactId> <version>1.2</version> </dependency>
If you think this Maven repository POM file listing for gradle-release is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The MIT License (MIT)
URL: http://opensource.org/licenses/MIT.
The gradle-release-1.2 has 3 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JUnit | junit 4.10 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 1957 |
JUnit | spock-core 0.7-groovy-1.8 Spock is a testing and specification framework for Java and Groovy applications. What makes it stand out from the crowd is its beautiful and highly expressive specification language. Thanks to its JUnit runner, Spock is compatible with most IDEs, build tools, and continuous integration servers. Spo... | 107 |
The following packages are defined in the gradle-release-1.2.jar
release
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.townsfolk</groupId> <artifactId>gradle-release</artifactId> <version>1.2</version> <name>gradle-release</name> <description>gradle-release is a plugin for providing a Maven-like release process to project using Gradle.</description> <url>https://github.com/townsfolk/gradle-release</url> <licenses> <license> <name>The MIT License (MIT)</name> <url>http://opensource.org/licenses/MIT</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git@github.com:townsfolk/gradle-release.git</connection> <developerConnection>scm:git@github.com:townsfolk/gradle-release.git</developerConnection> <url>scm:git@github.com:townsfolk/gradle-release.git</url> </scm> <dependencies> <dependency> <groupId>org.ajoberstar</groupId> <artifactId>gradle-git</artifactId> <version>0.5.0</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> <dependency> <groupId>org.spockframework</groupId> <artifactId>spock-core</artifactId> <version>0.7-groovy-1.8</version> <scope>test</scope> </dependency> </dependencies> </project>