https://github.com/vicfran/gradle-plugin
This repo is thought as a Gradle plugins repository. Trying to dive deep inside Gradle fundamentals.
https://github.com/vicfran/gradle-plugin
Last synced: 10 months ago
JSON representation
This repo is thought as a Gradle plugins repository. Trying to dive deep inside Gradle fundamentals.
- Host: GitHub
- URL: https://github.com/vicfran/gradle-plugin
- Owner: vicfran
- License: apache-2.0
- Created: 2016-04-12T19:33:08.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-04-12T19:54:18.000Z (over 10 years ago)
- Last Synced: 2025-06-27T00:45:15.931Z (about 1 year ago)
- Language: Groovy
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Gradle-plugin
======================
[](https://travis-ci.org/vicfran/gradle-plugin)
This repo is thought as a Gradle plugins repository. Trying to dive deep inside Gradle fundamentals.
###How to use it
```
gradle build uploadArchives
```
JAR file with the plugin will be stored at a Maven repo at :
```
../repo/org/gradle/GreetingTestPlugin/
```
To use the plugin, just include in the build.gradle file of your project:
```
buildscript {
repositories {
maven {
url uri('../repo')
}
}
dependencies {
classpath group: 'org.gradle', name: 'GradleTestPlugin', version: '1.0-SNAPSHOT'
}
}
apply plugin : 'org.samples.test'
```