Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 Isogai

Licensed 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 at

http://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.
```