Gradle Plug-in for Android.
Gradle plug-in to build Android applications..
Here is the list of declaration for gradle. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.android.tools.build</groupId> <artifactId>gradle</artifactId> <version>0.4.2</version> </dependency>
If you think this Maven repository POM file listing for gradle is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.
The gradle-0.4.2 has 4 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 3.8.1 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. | 1966 |
The following packages are defined in the gradle-0.4.2.jar
com.android.build.gradle com.android.build.gradle.api com.android.build.gradle.internal com.android.build.gradle.internal.api com.android.build.gradle.internal.dependency com.android.build.gradle.internal.dsl com.android.build.gradle.internal.model com.android.build.gradle.internal.tasks com.android.build.gradle.internal.test com.android.build.gradle.internal.test.report com.android.build.gradle.internal.variant com.android.build.gradle.tasks
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.android.tools.build</groupId> <artifactId>gradle</artifactId> <version>0.4.2</version> <name>Gradle Plug-in for Android</name> <description>Gradle plug-in to build Android applications.</description> <url>http://tools.android.com</url> <inceptionYear>2007</inceptionYear> <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>git://android.googlesource.com/platform/tools/build.git</connection> <url>https://android.googlesource.com/platform/tools/build</url> </scm> <dependencies> <dependency> <groupId>com.android.tools.build</groupId> <artifactId>builder</artifactId> <version>0.4.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.android.tools.build</groupId> <artifactId>gradle-model</artifactId> <version>0.4.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>net.sf.proguard</groupId> <artifactId>proguard-gradle</artifactId> <version>4.9</version> <scope>runtime</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> </project>