├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── src ├── main │ ├── groovy │ │ └── com │ │ │ └── github │ │ │ └── saadfarooq │ │ │ ├── AssertJDepsExtension.groovy │ │ │ ├── CommonDepsExtension.groovy │ │ │ ├── CommonDepsPlugin.groovy │ │ │ ├── DefaultVersions.groovy │ │ │ ├── GooglePlayServicesExtension.groovy │ │ │ ├── GoogleSupportDepsExtension.groovy │ │ │ ├── RxBindingDepsExtension.groovy │ │ │ ├── RxDepsExtension.groovy │ │ │ ├── TestDepsExtension.groovy │ │ │ └── util │ │ │ └── Util.groovy │ └── resources │ │ └── META-INF │ │ └── gradle-plugins │ │ ├── com.github.saadfarooq.commondeps.properties │ │ └── commondeps.properties └── test │ └── groovy │ └── com │ └── github │ └── saadfarooq │ └── CommonDepsPluginTest.groovy └── tasks └── gradle-mvn-publish.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | .idea 3 | *.iml 4 | build/ 5 | local.properties -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadfarooq/gradle-common-deps-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | #### 0.0.1 2 | - Added google support libs 3 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadfarooq/gradle-common-deps-plugin/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadfarooq/gradle-common-deps-plugin/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadfarooq/gradle-common-deps-plugin/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadfarooq/gradle-common-deps-plugin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadfarooq/gradle-common-deps-plugin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadfarooq/gradle-common-deps-plugin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadfarooq/gradle-common-deps-plugin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /src/main/groovy/com/github/saadfarooq/AssertJDepsExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadfarooq/gradle-common-deps-plugin/HEAD/src/main/groovy/com/github/saadfarooq/AssertJDepsExtension.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/github/saadfarooq/CommonDepsExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadfarooq/gradle-common-deps-plugin/HEAD/src/main/groovy/com/github/saadfarooq/CommonDepsExtension.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/github/saadfarooq/CommonDepsPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadfarooq/gradle-common-deps-plugin/HEAD/src/main/groovy/com/github/saadfarooq/CommonDepsPlugin.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/github/saadfarooq/DefaultVersions.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadfarooq/gradle-common-deps-plugin/HEAD/src/main/groovy/com/github/saadfarooq/DefaultVersions.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/github/saadfarooq/GooglePlayServicesExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadfarooq/gradle-common-deps-plugin/HEAD/src/main/groovy/com/github/saadfarooq/GooglePlayServicesExtension.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/github/saadfarooq/GoogleSupportDepsExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadfarooq/gradle-common-deps-plugin/HEAD/src/main/groovy/com/github/saadfarooq/GoogleSupportDepsExtension.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/github/saadfarooq/RxBindingDepsExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadfarooq/gradle-common-deps-plugin/HEAD/src/main/groovy/com/github/saadfarooq/RxBindingDepsExtension.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/github/saadfarooq/RxDepsExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadfarooq/gradle-common-deps-plugin/HEAD/src/main/groovy/com/github/saadfarooq/RxDepsExtension.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/github/saadfarooq/TestDepsExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadfarooq/gradle-common-deps-plugin/HEAD/src/main/groovy/com/github/saadfarooq/TestDepsExtension.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/github/saadfarooq/util/Util.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadfarooq/gradle-common-deps-plugin/HEAD/src/main/groovy/com/github/saadfarooq/util/Util.groovy -------------------------------------------------------------------------------- /src/main/resources/META-INF/gradle-plugins/com.github.saadfarooq.commondeps.properties: -------------------------------------------------------------------------------- 1 | implementation-class=com.github.saadfarooq.CommonDepsPlugin -------------------------------------------------------------------------------- /src/main/resources/META-INF/gradle-plugins/commondeps.properties: -------------------------------------------------------------------------------- 1 | implementation-class=com.github.saadfarooq.CommonDepsPlugin -------------------------------------------------------------------------------- /src/test/groovy/com/github/saadfarooq/CommonDepsPluginTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadfarooq/gradle-common-deps-plugin/HEAD/src/test/groovy/com/github/saadfarooq/CommonDepsPluginTest.groovy -------------------------------------------------------------------------------- /tasks/gradle-mvn-publish.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadfarooq/gradle-common-deps-plugin/HEAD/tasks/gradle-mvn-publish.gradle --------------------------------------------------------------------------------