├── .gitignore ├── .wrapper ├── gradle-wrapper.jar └── gradle-wrapper.properties ├── LICENSE ├── README.md ├── bundlor-plugin ├── gradle.properties └── src │ └── main │ ├── groovy │ └── BundlorPlugin.groovy │ └── resources │ └── META-INF │ └── gradle-plugins │ └── bundlor.properties ├── docbook-reference-plugin └── README.md ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── propdeps-plugin ├── README.md ├── gradle.properties ├── samples │ └── transitivefalse │ │ └── build.gradle └── src │ └── main │ ├── groovy │ └── org │ │ └── springframework │ │ └── build │ │ └── gradle │ │ └── propdep │ │ ├── PropDepsEclipsePlugin.groovy │ │ ├── PropDepsIdeaPlugin.groovy │ │ ├── PropDepsMavenPlugin.groovy │ │ └── PropDepsPlugin.groovy │ └── resources │ └── META-INF │ └── gradle-plugins │ ├── propdeps-eclipse.properties │ ├── propdeps-idea.properties │ ├── propdeps-maven.properties │ └── propdeps.properties ├── settings.gradle ├── spring-io-plugin └── README.asciidoc └── wrapper.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gradle-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /.wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gradle-plugins/HEAD/.wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /.wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gradle-plugins/HEAD/.wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gradle-plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gradle-plugins/HEAD/README.md -------------------------------------------------------------------------------- /bundlor-plugin/gradle.properties: -------------------------------------------------------------------------------- 1 | bundlorPluginVersion=0.1.3-SNAPSHOT 2 | -------------------------------------------------------------------------------- /bundlor-plugin/src/main/groovy/BundlorPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gradle-plugins/HEAD/bundlor-plugin/src/main/groovy/BundlorPlugin.groovy -------------------------------------------------------------------------------- /bundlor-plugin/src/main/resources/META-INF/gradle-plugins/bundlor.properties: -------------------------------------------------------------------------------- 1 | implementation-class=BundlorPlugin 2 | -------------------------------------------------------------------------------- /docbook-reference-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gradle-plugins/HEAD/docbook-reference-plugin/README.md -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gradle-plugins/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gradle-plugins/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gradle-plugins/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gradle-plugins/HEAD/gradlew.bat -------------------------------------------------------------------------------- /propdeps-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gradle-plugins/HEAD/propdeps-plugin/README.md -------------------------------------------------------------------------------- /propdeps-plugin/gradle.properties: -------------------------------------------------------------------------------- 1 | version=0.0.8-SNAPSHOT 2 | -------------------------------------------------------------------------------- /propdeps-plugin/samples/transitivefalse/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gradle-plugins/HEAD/propdeps-plugin/samples/transitivefalse/build.gradle -------------------------------------------------------------------------------- /propdeps-plugin/src/main/groovy/org/springframework/build/gradle/propdep/PropDepsEclipsePlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gradle-plugins/HEAD/propdeps-plugin/src/main/groovy/org/springframework/build/gradle/propdep/PropDepsEclipsePlugin.groovy -------------------------------------------------------------------------------- /propdeps-plugin/src/main/groovy/org/springframework/build/gradle/propdep/PropDepsIdeaPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gradle-plugins/HEAD/propdeps-plugin/src/main/groovy/org/springframework/build/gradle/propdep/PropDepsIdeaPlugin.groovy -------------------------------------------------------------------------------- /propdeps-plugin/src/main/groovy/org/springframework/build/gradle/propdep/PropDepsMavenPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gradle-plugins/HEAD/propdeps-plugin/src/main/groovy/org/springframework/build/gradle/propdep/PropDepsMavenPlugin.groovy -------------------------------------------------------------------------------- /propdeps-plugin/src/main/groovy/org/springframework/build/gradle/propdep/PropDepsPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gradle-plugins/HEAD/propdeps-plugin/src/main/groovy/org/springframework/build/gradle/propdep/PropDepsPlugin.groovy -------------------------------------------------------------------------------- /propdeps-plugin/src/main/resources/META-INF/gradle-plugins/propdeps-eclipse.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gradle-plugins/HEAD/propdeps-plugin/src/main/resources/META-INF/gradle-plugins/propdeps-eclipse.properties -------------------------------------------------------------------------------- /propdeps-plugin/src/main/resources/META-INF/gradle-plugins/propdeps-idea.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gradle-plugins/HEAD/propdeps-plugin/src/main/resources/META-INF/gradle-plugins/propdeps-idea.properties -------------------------------------------------------------------------------- /propdeps-plugin/src/main/resources/META-INF/gradle-plugins/propdeps-maven.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gradle-plugins/HEAD/propdeps-plugin/src/main/resources/META-INF/gradle-plugins/propdeps-maven.properties -------------------------------------------------------------------------------- /propdeps-plugin/src/main/resources/META-INF/gradle-plugins/propdeps.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gradle-plugins/HEAD/propdeps-plugin/src/main/resources/META-INF/gradle-plugins/propdeps.properties -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gradle-plugins/HEAD/settings.gradle -------------------------------------------------------------------------------- /spring-io-plugin/README.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gradle-plugins/HEAD/spring-io-plugin/README.asciidoc -------------------------------------------------------------------------------- /wrapper.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/gradle-plugins/HEAD/wrapper.gradle --------------------------------------------------------------------------------