Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shiraji/gradle-scripts
This is the place that keeps small gradle script
https://github.com/shiraji/gradle-scripts
Last synced: 23 days ago
JSON representation
This is the place that keeps small gradle script
- Host: GitHub
- URL: https://github.com/shiraji/gradle-scripts
- Owner: shiraji
- License: artistic-2.0
- Created: 2015-11-16T07:46:54.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-25T08:01:41.000Z (about 9 years ago)
- Last Synced: 2024-10-30T02:42:31.253Z (2 months ago)
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gradle-scripts
This is the place that keep small gradle script# Description
## [generate-android-javadoc.gradle](https://github.com/shiraji/gradle-scripts/blob/master/generate-android-javadoc.gradle)
Creating Javadoc for Android Library
```groovy
apply from: 'https://raw.githubusercontent.com/shiraji/gradle-scripts/master/generate-android-javadoc.gradle'
```## [jacoco-android.gradle](https://github.com/shiraji/gradle-scripts/blob/master/jacoco-android.gradle)
Running JaCoCo for android library
```groovy
apply from: 'https://raw.githubusercontent.com/shiraji/gradle-scripts/master/jacoco-android.gradle'
```## [maven-local-publish-aar.gradle](https://github.com/shiraji/gradle-scripts/blob/master/maven-local-publish-aar.gradle)
Create gradle task that export generated aar file to maven local repository.
```groovy
apply from: 'https://raw.githubusercontent.com/shiraji/gradle-scripts/master/maven-local-publish-aar.gradle'
```## [maven-local-publish-jar.gradle](https://github.com/shiraji/gradle-scripts/blob/master/maven-local-publish-jar.gradle)
Create gradle task that export generated jar file to maven local repository.
```groovy
apply from: 'https://raw.githubusercontent.com/shiraji/gradle-scripts/master/maven-local-publish-jar.gradle'
```## License
```
Copyright 2015 Yoshinori IsogaiLicensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```