├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── codacy.yml │ ├── codeql.yml │ ├── dependency-review.yml │ ├── gradle-build.yml │ ├── gradle-dependency-graph.yml │ ├── gradle-publish.yml │ └── update-gradle-wrapper.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── ihub-base-test ├── build.gradle.kts └── src │ ├── main │ ├── groovy │ │ └── pub │ │ │ └── ihub │ │ │ └── plugin │ │ │ └── test │ │ │ └── IHubSpecification.groovy │ └── resources │ │ └── libs.versions.toml │ └── test │ └── groovy │ └── pub │ └── ihub │ └── plugin │ └── test │ └── IHubSpecificationTest.groovy ├── ihub-base ├── build.gradle.kts └── src │ ├── main │ └── groovy │ │ └── pub │ │ └── ihub │ │ └── plugin │ │ ├── IHubExtProperty.groovy │ │ ├── IHubExtension.groovy │ │ ├── IHubExtensionAware.groovy │ │ ├── IHubLibsVersions.groovy │ │ ├── IHubPlugin.groovy │ │ ├── IHubPluginMethods.groovy │ │ ├── IHubProjectExtensionAware.groovy │ │ ├── IHubProjectPluginAware.groovy │ │ ├── IHubProjectTask.groovy │ │ ├── IHubProperty.groovy │ │ └── IHubTask.groovy │ └── test │ └── groovy │ └── pub │ └── ihub │ └── plugin │ ├── IHubDemoExtension.groovy │ ├── IHubDemoPlugin.groovy │ ├── IHubDemoTask.groovy │ ├── IHubLibsVersionsTest.groovy │ ├── IHubPluginBaseTest.groovy │ ├── IHubPrintExtension.groovy │ ├── IHubPrintPlugin.groovy │ └── IHubSimplePlugin.groovy ├── ihub-bom ├── build.gradle.kts └── src │ ├── main │ └── groovy │ │ └── pub │ │ └── ihub │ │ └── plugin │ │ └── bom │ │ ├── IHubBomExtension.groovy │ │ ├── IHubBomPlugin.groovy │ │ ├── impl │ │ ├── Capability.groovy │ │ ├── CapabilitySpecImpl.groovy │ │ ├── Dependency.groovy │ │ ├── DependencySpecImpl.groovy │ │ ├── Exclude.groovy │ │ ├── ExcludeSpecImpl.groovy │ │ ├── Group.groovy │ │ ├── GroupSpecImpl.groovy │ │ ├── Module.groovy │ │ ├── ModuleSpecImpl.groovy │ │ ├── Modules.groovy │ │ └── ModulesSpecImpl.groovy │ │ └── specs │ │ ├── ActionSpec.groovy │ │ ├── CapabilitySpec.groovy │ │ ├── ConfigSpec.groovy │ │ ├── DependencySpec.groovy │ │ ├── GroupSpec.groovy │ │ ├── ModuleSpec.groovy │ │ ├── ModulesSpec.groovy │ │ └── VersionSpec.groovy │ └── test │ └── groovy │ └── pub │ └── ihub │ └── plugin │ └── bom │ └── IHubBomPluginTest.groovy ├── ihub-githooks ├── build.gradle.kts └── src │ ├── main │ └── groovy │ │ └── pub │ │ └── ihub │ │ └── plugin │ │ └── githooks │ │ ├── IHubGitHooksExtension.groovy │ │ └── IHubGitHooksPlugin.groovy │ └── test │ └── groovy │ └── pub │ └── ihub │ └── plugin │ └── githooks │ └── IHubGitHooksPluginTest.groovy ├── ihub-groovy ├── build.gradle.kts └── src │ ├── main │ └── groovy │ │ └── pub │ │ └── ihub │ │ └── plugin │ │ └── groovy │ │ └── IHubGroovyPlugin.groovy │ └── test │ └── groovy │ └── pub │ └── ihub │ └── plugin │ └── groovy │ └── IHubGroovyPluginTest.groovy ├── ihub-java ├── build.gradle.kts └── src │ ├── main │ └── groovy │ │ └── pub │ │ └── ihub │ │ └── plugin │ │ └── java │ │ ├── IHubJavaBasePlugin.groovy │ │ ├── IHubJavaExtension.groovy │ │ └── IHubJavaPlugin.groovy │ └── test │ └── groovy │ └── pub │ └── ihub │ └── plugin │ └── java │ └── IHubJavaPluginTest.groovy ├── ihub-javaagent ├── build.gradle.kts └── src │ ├── main │ └── groovy │ │ └── pub │ │ └── ihub │ │ └── plugin │ │ └── javaagent │ │ ├── IHubJavaagentExtension.groovy │ │ └── IHubJavaagentPlugin.groovy │ └── test │ ├── groovy │ └── pub │ │ └── ihub │ │ └── plugin │ │ └── javaagent │ │ └── IHubJavaagentPluginTest.groovy │ └── resources │ └── META-INF │ └── gradle-plugins │ └── org.springframework.boot.properties ├── ihub-kotlin ├── build.gradle.kts └── src │ ├── main │ └── groovy │ │ └── pub │ │ └── ihub │ │ └── plugin │ │ └── kotlin │ │ └── IHubKotlinPlugin.groovy │ └── test │ └── groovy │ └── pub │ └── ihub │ └── plugin │ └── kotlin │ └── IHubKotlinPluginTest.groovy ├── ihub-node ├── build.gradle.kts └── src │ ├── main │ └── groovy │ │ └── pub │ │ └── ihub │ │ └── plugin │ │ └── node │ │ ├── IHubNodeExtension.groovy │ │ ├── IHubNodePlugin.groovy │ │ └── cnpm │ │ ├── exec │ │ └── CnpmExecRunner.groovy │ │ └── task │ │ ├── CnpmInstallTask.groovy │ │ ├── CnpmSetupTask.groovy │ │ ├── CnpmSyncTask.groovy │ │ └── CnpmTask.groovy │ └── test │ └── groovy │ └── pub │ └── ihub │ └── plugin │ └── node │ └── IHubNodePluginTest.groovy ├── ihub-plugins ├── build.gradle.kts └── src │ ├── main │ └── groovy │ │ └── pub │ │ └── ihub │ │ └── plugin │ │ ├── IHubPluginsExtension.groovy │ │ ├── IHubPluginsPlugin.groovy │ │ ├── copyright │ │ ├── IHubCopyright.groovy │ │ └── IHubCopyrightPlugin.groovy │ │ ├── profiles │ │ ├── IHubProfilesExtension.groovy │ │ └── IHubProfilesPlugin.groovy │ │ └── version │ │ ├── IHubVersionExtension.groovy │ │ └── IHubVersionPlugin.groovy │ └── test │ └── groovy │ └── pub │ └── ihub │ └── plugin │ ├── IHubPluginsPluginTest.groovy │ ├── copyright │ └── IHubCopyrightPluginTest.groovy │ ├── profiles │ └── IHubProfilesPluginTest.groovy │ └── version │ └── IHubVersionPluginTest.groovy ├── ihub-publish ├── build.gradle.kts └── src │ ├── main │ └── groovy │ │ └── pub │ │ └── ihub │ │ └── plugin │ │ └── publish │ │ ├── IHubPublishExtension.groovy │ │ └── IHubPublishPlugin.groovy │ └── test │ └── groovy │ └── pub │ └── ihub │ └── plugin │ └── publish │ └── IHubPublishPluginTest.groovy ├── ihub-settings ├── build.gradle.kts └── src │ ├── main │ └── groovy │ │ └── pub │ │ └── ihub │ │ └── plugin │ │ ├── IHubSettingsExtension.groovy │ │ └── IHubSettingsPlugin.groovy │ └── test │ └── groovy │ └── pub │ └── ihub │ └── plugin │ └── IHubSettingsPluginTest.groovy ├── ihub-shadow ├── build.gradle.kts └── src │ ├── main │ └── groovy │ │ └── pub │ │ └── ihub │ │ └── plugin │ │ └── shadow │ │ ├── IHubShadowExtension.groovy │ │ └── IHubShadowPlugin.groovy │ └── test │ └── groovy │ └── pub │ └── ihub │ └── plugin │ └── shadow │ └── IHubShadowPluginTest.groovy ├── ihub-spring ├── build.gradle.kts └── src │ ├── main │ └── groovy │ │ └── pub │ │ └── ihub │ │ └── plugin │ │ └── spring │ │ ├── IHubBootExtension.groovy │ │ ├── IHubBootPlugin.groovy │ │ └── IHubNativePlugin.groovy │ └── test │ └── groovy │ └── pub │ └── ihub │ └── plugin │ └── spring │ └── IHubBootPluginTest.groovy ├── ihub-verification ├── build.gradle.kts └── src │ ├── main │ ├── groovy │ │ └── pub │ │ │ └── ihub │ │ │ └── plugin │ │ │ └── verification │ │ │ ├── IHubSystemProperties.groovy │ │ │ ├── IHubTestExtension.groovy │ │ │ ├── IHubTestPlugin.groovy │ │ │ ├── IHubVerificationExtension.groovy │ │ │ └── IHubVerificationPlugin.groovy │ └── resources │ │ └── META-INF │ │ └── codenarc.groovy │ └── test │ └── groovy │ └── pub │ └── ihub │ └── plugin │ └── verification │ └── IHubVerificationPluginTest.groovy ├── samples ├── sample-extensions │ ├── basic.gradle │ └── bom.gradle ├── sample-groovy │ ├── build.gradle │ ├── conf │ │ └── codenarc │ │ │ └── codenarc.groovy │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ ├── settings.gradle │ └── src │ │ ├── main │ │ └── groovy │ │ │ └── pub │ │ │ └── ihub │ │ │ └── sample │ │ │ └── groovy │ │ │ └── HelloWorld.groovy │ │ └── test │ │ └── groovy │ │ └── pub │ │ └── ihub │ │ └── sample │ │ └── groovy │ │ └── HelloWorldTest.groovy └── sample-multi │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties │ ├── rest │ ├── build.gradle │ └── src │ │ ├── main │ │ └── java │ │ │ └── pub │ │ │ └── ihub │ │ │ └── sample │ │ │ ├── Application.java │ │ │ └── rest │ │ │ └── HelloController.java │ │ └── test │ │ └── java │ │ └── pub │ │ └── ihub │ │ └── sample │ │ └── rest │ │ └── HelloControllerTest.java │ ├── sdk │ ├── build.gradle │ └── src │ │ ├── main │ │ └── groovy │ │ │ └── pub │ │ │ └── ihub │ │ │ └── sample │ │ │ └── sdk │ │ │ └── Response.groovy │ │ └── test │ │ └── groovy │ │ └── pub │ │ └── ihub │ │ └── sample │ │ └── sdk │ │ └── ResponseTest.groovy │ ├── service │ ├── build.gradle │ └── src │ │ └── main │ │ ├── java │ │ └── pub │ │ │ └── ihub │ │ │ └── sample │ │ │ └── service │ │ │ ├── HelloService.java │ │ │ └── config │ │ │ └── ServiceAutoConfiguration.java │ │ └── resources │ │ └── META-INF │ │ └── spring.factories │ └── settings.gradle └── settings.gradle.kts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codacy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/.github/workflows/codacy.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/gradle-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/.github/workflows/gradle-build.yml -------------------------------------------------------------------------------- /.github/workflows/gradle-dependency-graph.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/.github/workflows/gradle-dependency-graph.yml -------------------------------------------------------------------------------- /.github/workflows/gradle-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/.github/workflows/gradle-publish.yml -------------------------------------------------------------------------------- /.github/workflows/update-gradle-wrapper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/.github/workflows/update-gradle-wrapper.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/gradlew.bat -------------------------------------------------------------------------------- /ihub-base-test/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-base-test/build.gradle.kts -------------------------------------------------------------------------------- /ihub-base-test/src/main/groovy/pub/ihub/plugin/test/IHubSpecification.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-base-test/src/main/groovy/pub/ihub/plugin/test/IHubSpecification.groovy -------------------------------------------------------------------------------- /ihub-base-test/src/main/resources/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-base-test/src/main/resources/libs.versions.toml -------------------------------------------------------------------------------- /ihub-base-test/src/test/groovy/pub/ihub/plugin/test/IHubSpecificationTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-base-test/src/test/groovy/pub/ihub/plugin/test/IHubSpecificationTest.groovy -------------------------------------------------------------------------------- /ihub-base/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-base/build.gradle.kts -------------------------------------------------------------------------------- /ihub-base/src/main/groovy/pub/ihub/plugin/IHubExtProperty.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-base/src/main/groovy/pub/ihub/plugin/IHubExtProperty.groovy -------------------------------------------------------------------------------- /ihub-base/src/main/groovy/pub/ihub/plugin/IHubExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-base/src/main/groovy/pub/ihub/plugin/IHubExtension.groovy -------------------------------------------------------------------------------- /ihub-base/src/main/groovy/pub/ihub/plugin/IHubExtensionAware.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-base/src/main/groovy/pub/ihub/plugin/IHubExtensionAware.groovy -------------------------------------------------------------------------------- /ihub-base/src/main/groovy/pub/ihub/plugin/IHubLibsVersions.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-base/src/main/groovy/pub/ihub/plugin/IHubLibsVersions.groovy -------------------------------------------------------------------------------- /ihub-base/src/main/groovy/pub/ihub/plugin/IHubPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-base/src/main/groovy/pub/ihub/plugin/IHubPlugin.groovy -------------------------------------------------------------------------------- /ihub-base/src/main/groovy/pub/ihub/plugin/IHubPluginMethods.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-base/src/main/groovy/pub/ihub/plugin/IHubPluginMethods.groovy -------------------------------------------------------------------------------- /ihub-base/src/main/groovy/pub/ihub/plugin/IHubProjectExtensionAware.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-base/src/main/groovy/pub/ihub/plugin/IHubProjectExtensionAware.groovy -------------------------------------------------------------------------------- /ihub-base/src/main/groovy/pub/ihub/plugin/IHubProjectPluginAware.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-base/src/main/groovy/pub/ihub/plugin/IHubProjectPluginAware.groovy -------------------------------------------------------------------------------- /ihub-base/src/main/groovy/pub/ihub/plugin/IHubProjectTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-base/src/main/groovy/pub/ihub/plugin/IHubProjectTask.groovy -------------------------------------------------------------------------------- /ihub-base/src/main/groovy/pub/ihub/plugin/IHubProperty.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-base/src/main/groovy/pub/ihub/plugin/IHubProperty.groovy -------------------------------------------------------------------------------- /ihub-base/src/main/groovy/pub/ihub/plugin/IHubTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-base/src/main/groovy/pub/ihub/plugin/IHubTask.groovy -------------------------------------------------------------------------------- /ihub-base/src/test/groovy/pub/ihub/plugin/IHubDemoExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-base/src/test/groovy/pub/ihub/plugin/IHubDemoExtension.groovy -------------------------------------------------------------------------------- /ihub-base/src/test/groovy/pub/ihub/plugin/IHubDemoPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-base/src/test/groovy/pub/ihub/plugin/IHubDemoPlugin.groovy -------------------------------------------------------------------------------- /ihub-base/src/test/groovy/pub/ihub/plugin/IHubDemoTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-base/src/test/groovy/pub/ihub/plugin/IHubDemoTask.groovy -------------------------------------------------------------------------------- /ihub-base/src/test/groovy/pub/ihub/plugin/IHubLibsVersionsTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-base/src/test/groovy/pub/ihub/plugin/IHubLibsVersionsTest.groovy -------------------------------------------------------------------------------- /ihub-base/src/test/groovy/pub/ihub/plugin/IHubPluginBaseTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-base/src/test/groovy/pub/ihub/plugin/IHubPluginBaseTest.groovy -------------------------------------------------------------------------------- /ihub-base/src/test/groovy/pub/ihub/plugin/IHubPrintExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-base/src/test/groovy/pub/ihub/plugin/IHubPrintExtension.groovy -------------------------------------------------------------------------------- /ihub-base/src/test/groovy/pub/ihub/plugin/IHubPrintPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-base/src/test/groovy/pub/ihub/plugin/IHubPrintPlugin.groovy -------------------------------------------------------------------------------- /ihub-base/src/test/groovy/pub/ihub/plugin/IHubSimplePlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-base/src/test/groovy/pub/ihub/plugin/IHubSimplePlugin.groovy -------------------------------------------------------------------------------- /ihub-bom/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-bom/build.gradle.kts -------------------------------------------------------------------------------- /ihub-bom/src/main/groovy/pub/ihub/plugin/bom/IHubBomExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-bom/src/main/groovy/pub/ihub/plugin/bom/IHubBomExtension.groovy -------------------------------------------------------------------------------- /ihub-bom/src/main/groovy/pub/ihub/plugin/bom/IHubBomPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-bom/src/main/groovy/pub/ihub/plugin/bom/IHubBomPlugin.groovy -------------------------------------------------------------------------------- /ihub-bom/src/main/groovy/pub/ihub/plugin/bom/impl/Capability.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-bom/src/main/groovy/pub/ihub/plugin/bom/impl/Capability.groovy -------------------------------------------------------------------------------- /ihub-bom/src/main/groovy/pub/ihub/plugin/bom/impl/CapabilitySpecImpl.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-bom/src/main/groovy/pub/ihub/plugin/bom/impl/CapabilitySpecImpl.groovy -------------------------------------------------------------------------------- /ihub-bom/src/main/groovy/pub/ihub/plugin/bom/impl/Dependency.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-bom/src/main/groovy/pub/ihub/plugin/bom/impl/Dependency.groovy -------------------------------------------------------------------------------- /ihub-bom/src/main/groovy/pub/ihub/plugin/bom/impl/DependencySpecImpl.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-bom/src/main/groovy/pub/ihub/plugin/bom/impl/DependencySpecImpl.groovy -------------------------------------------------------------------------------- /ihub-bom/src/main/groovy/pub/ihub/plugin/bom/impl/Exclude.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-bom/src/main/groovy/pub/ihub/plugin/bom/impl/Exclude.groovy -------------------------------------------------------------------------------- /ihub-bom/src/main/groovy/pub/ihub/plugin/bom/impl/ExcludeSpecImpl.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-bom/src/main/groovy/pub/ihub/plugin/bom/impl/ExcludeSpecImpl.groovy -------------------------------------------------------------------------------- /ihub-bom/src/main/groovy/pub/ihub/plugin/bom/impl/Group.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-bom/src/main/groovy/pub/ihub/plugin/bom/impl/Group.groovy -------------------------------------------------------------------------------- /ihub-bom/src/main/groovy/pub/ihub/plugin/bom/impl/GroupSpecImpl.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-bom/src/main/groovy/pub/ihub/plugin/bom/impl/GroupSpecImpl.groovy -------------------------------------------------------------------------------- /ihub-bom/src/main/groovy/pub/ihub/plugin/bom/impl/Module.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-bom/src/main/groovy/pub/ihub/plugin/bom/impl/Module.groovy -------------------------------------------------------------------------------- /ihub-bom/src/main/groovy/pub/ihub/plugin/bom/impl/ModuleSpecImpl.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-bom/src/main/groovy/pub/ihub/plugin/bom/impl/ModuleSpecImpl.groovy -------------------------------------------------------------------------------- /ihub-bom/src/main/groovy/pub/ihub/plugin/bom/impl/Modules.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-bom/src/main/groovy/pub/ihub/plugin/bom/impl/Modules.groovy -------------------------------------------------------------------------------- /ihub-bom/src/main/groovy/pub/ihub/plugin/bom/impl/ModulesSpecImpl.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-bom/src/main/groovy/pub/ihub/plugin/bom/impl/ModulesSpecImpl.groovy -------------------------------------------------------------------------------- /ihub-bom/src/main/groovy/pub/ihub/plugin/bom/specs/ActionSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-bom/src/main/groovy/pub/ihub/plugin/bom/specs/ActionSpec.groovy -------------------------------------------------------------------------------- /ihub-bom/src/main/groovy/pub/ihub/plugin/bom/specs/CapabilitySpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-bom/src/main/groovy/pub/ihub/plugin/bom/specs/CapabilitySpec.groovy -------------------------------------------------------------------------------- /ihub-bom/src/main/groovy/pub/ihub/plugin/bom/specs/ConfigSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-bom/src/main/groovy/pub/ihub/plugin/bom/specs/ConfigSpec.groovy -------------------------------------------------------------------------------- /ihub-bom/src/main/groovy/pub/ihub/plugin/bom/specs/DependencySpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-bom/src/main/groovy/pub/ihub/plugin/bom/specs/DependencySpec.groovy -------------------------------------------------------------------------------- /ihub-bom/src/main/groovy/pub/ihub/plugin/bom/specs/GroupSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-bom/src/main/groovy/pub/ihub/plugin/bom/specs/GroupSpec.groovy -------------------------------------------------------------------------------- /ihub-bom/src/main/groovy/pub/ihub/plugin/bom/specs/ModuleSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-bom/src/main/groovy/pub/ihub/plugin/bom/specs/ModuleSpec.groovy -------------------------------------------------------------------------------- /ihub-bom/src/main/groovy/pub/ihub/plugin/bom/specs/ModulesSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-bom/src/main/groovy/pub/ihub/plugin/bom/specs/ModulesSpec.groovy -------------------------------------------------------------------------------- /ihub-bom/src/main/groovy/pub/ihub/plugin/bom/specs/VersionSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-bom/src/main/groovy/pub/ihub/plugin/bom/specs/VersionSpec.groovy -------------------------------------------------------------------------------- /ihub-bom/src/test/groovy/pub/ihub/plugin/bom/IHubBomPluginTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-bom/src/test/groovy/pub/ihub/plugin/bom/IHubBomPluginTest.groovy -------------------------------------------------------------------------------- /ihub-githooks/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-githooks/build.gradle.kts -------------------------------------------------------------------------------- /ihub-githooks/src/main/groovy/pub/ihub/plugin/githooks/IHubGitHooksExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-githooks/src/main/groovy/pub/ihub/plugin/githooks/IHubGitHooksExtension.groovy -------------------------------------------------------------------------------- /ihub-githooks/src/main/groovy/pub/ihub/plugin/githooks/IHubGitHooksPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-githooks/src/main/groovy/pub/ihub/plugin/githooks/IHubGitHooksPlugin.groovy -------------------------------------------------------------------------------- /ihub-githooks/src/test/groovy/pub/ihub/plugin/githooks/IHubGitHooksPluginTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-githooks/src/test/groovy/pub/ihub/plugin/githooks/IHubGitHooksPluginTest.groovy -------------------------------------------------------------------------------- /ihub-groovy/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-groovy/build.gradle.kts -------------------------------------------------------------------------------- /ihub-groovy/src/main/groovy/pub/ihub/plugin/groovy/IHubGroovyPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-groovy/src/main/groovy/pub/ihub/plugin/groovy/IHubGroovyPlugin.groovy -------------------------------------------------------------------------------- /ihub-groovy/src/test/groovy/pub/ihub/plugin/groovy/IHubGroovyPluginTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-groovy/src/test/groovy/pub/ihub/plugin/groovy/IHubGroovyPluginTest.groovy -------------------------------------------------------------------------------- /ihub-java/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-java/build.gradle.kts -------------------------------------------------------------------------------- /ihub-java/src/main/groovy/pub/ihub/plugin/java/IHubJavaBasePlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-java/src/main/groovy/pub/ihub/plugin/java/IHubJavaBasePlugin.groovy -------------------------------------------------------------------------------- /ihub-java/src/main/groovy/pub/ihub/plugin/java/IHubJavaExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-java/src/main/groovy/pub/ihub/plugin/java/IHubJavaExtension.groovy -------------------------------------------------------------------------------- /ihub-java/src/main/groovy/pub/ihub/plugin/java/IHubJavaPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-java/src/main/groovy/pub/ihub/plugin/java/IHubJavaPlugin.groovy -------------------------------------------------------------------------------- /ihub-java/src/test/groovy/pub/ihub/plugin/java/IHubJavaPluginTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-java/src/test/groovy/pub/ihub/plugin/java/IHubJavaPluginTest.groovy -------------------------------------------------------------------------------- /ihub-javaagent/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-javaagent/build.gradle.kts -------------------------------------------------------------------------------- /ihub-javaagent/src/main/groovy/pub/ihub/plugin/javaagent/IHubJavaagentExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-javaagent/src/main/groovy/pub/ihub/plugin/javaagent/IHubJavaagentExtension.groovy -------------------------------------------------------------------------------- /ihub-javaagent/src/main/groovy/pub/ihub/plugin/javaagent/IHubJavaagentPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-javaagent/src/main/groovy/pub/ihub/plugin/javaagent/IHubJavaagentPlugin.groovy -------------------------------------------------------------------------------- /ihub-javaagent/src/test/groovy/pub/ihub/plugin/javaagent/IHubJavaagentPluginTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-javaagent/src/test/groovy/pub/ihub/plugin/javaagent/IHubJavaagentPluginTest.groovy -------------------------------------------------------------------------------- /ihub-javaagent/src/test/resources/META-INF/gradle-plugins/org.springframework.boot.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-javaagent/src/test/resources/META-INF/gradle-plugins/org.springframework.boot.properties -------------------------------------------------------------------------------- /ihub-kotlin/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-kotlin/build.gradle.kts -------------------------------------------------------------------------------- /ihub-kotlin/src/main/groovy/pub/ihub/plugin/kotlin/IHubKotlinPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-kotlin/src/main/groovy/pub/ihub/plugin/kotlin/IHubKotlinPlugin.groovy -------------------------------------------------------------------------------- /ihub-kotlin/src/test/groovy/pub/ihub/plugin/kotlin/IHubKotlinPluginTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-kotlin/src/test/groovy/pub/ihub/plugin/kotlin/IHubKotlinPluginTest.groovy -------------------------------------------------------------------------------- /ihub-node/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-node/build.gradle.kts -------------------------------------------------------------------------------- /ihub-node/src/main/groovy/pub/ihub/plugin/node/IHubNodeExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-node/src/main/groovy/pub/ihub/plugin/node/IHubNodeExtension.groovy -------------------------------------------------------------------------------- /ihub-node/src/main/groovy/pub/ihub/plugin/node/IHubNodePlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-node/src/main/groovy/pub/ihub/plugin/node/IHubNodePlugin.groovy -------------------------------------------------------------------------------- /ihub-node/src/main/groovy/pub/ihub/plugin/node/cnpm/exec/CnpmExecRunner.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-node/src/main/groovy/pub/ihub/plugin/node/cnpm/exec/CnpmExecRunner.groovy -------------------------------------------------------------------------------- /ihub-node/src/main/groovy/pub/ihub/plugin/node/cnpm/task/CnpmInstallTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-node/src/main/groovy/pub/ihub/plugin/node/cnpm/task/CnpmInstallTask.groovy -------------------------------------------------------------------------------- /ihub-node/src/main/groovy/pub/ihub/plugin/node/cnpm/task/CnpmSetupTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-node/src/main/groovy/pub/ihub/plugin/node/cnpm/task/CnpmSetupTask.groovy -------------------------------------------------------------------------------- /ihub-node/src/main/groovy/pub/ihub/plugin/node/cnpm/task/CnpmSyncTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-node/src/main/groovy/pub/ihub/plugin/node/cnpm/task/CnpmSyncTask.groovy -------------------------------------------------------------------------------- /ihub-node/src/main/groovy/pub/ihub/plugin/node/cnpm/task/CnpmTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-node/src/main/groovy/pub/ihub/plugin/node/cnpm/task/CnpmTask.groovy -------------------------------------------------------------------------------- /ihub-node/src/test/groovy/pub/ihub/plugin/node/IHubNodePluginTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-node/src/test/groovy/pub/ihub/plugin/node/IHubNodePluginTest.groovy -------------------------------------------------------------------------------- /ihub-plugins/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-plugins/build.gradle.kts -------------------------------------------------------------------------------- /ihub-plugins/src/main/groovy/pub/ihub/plugin/IHubPluginsExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-plugins/src/main/groovy/pub/ihub/plugin/IHubPluginsExtension.groovy -------------------------------------------------------------------------------- /ihub-plugins/src/main/groovy/pub/ihub/plugin/IHubPluginsPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-plugins/src/main/groovy/pub/ihub/plugin/IHubPluginsPlugin.groovy -------------------------------------------------------------------------------- /ihub-plugins/src/main/groovy/pub/ihub/plugin/copyright/IHubCopyright.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-plugins/src/main/groovy/pub/ihub/plugin/copyright/IHubCopyright.groovy -------------------------------------------------------------------------------- /ihub-plugins/src/main/groovy/pub/ihub/plugin/copyright/IHubCopyrightPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-plugins/src/main/groovy/pub/ihub/plugin/copyright/IHubCopyrightPlugin.groovy -------------------------------------------------------------------------------- /ihub-plugins/src/main/groovy/pub/ihub/plugin/profiles/IHubProfilesExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-plugins/src/main/groovy/pub/ihub/plugin/profiles/IHubProfilesExtension.groovy -------------------------------------------------------------------------------- /ihub-plugins/src/main/groovy/pub/ihub/plugin/profiles/IHubProfilesPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-plugins/src/main/groovy/pub/ihub/plugin/profiles/IHubProfilesPlugin.groovy -------------------------------------------------------------------------------- /ihub-plugins/src/main/groovy/pub/ihub/plugin/version/IHubVersionExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-plugins/src/main/groovy/pub/ihub/plugin/version/IHubVersionExtension.groovy -------------------------------------------------------------------------------- /ihub-plugins/src/main/groovy/pub/ihub/plugin/version/IHubVersionPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-plugins/src/main/groovy/pub/ihub/plugin/version/IHubVersionPlugin.groovy -------------------------------------------------------------------------------- /ihub-plugins/src/test/groovy/pub/ihub/plugin/IHubPluginsPluginTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-plugins/src/test/groovy/pub/ihub/plugin/IHubPluginsPluginTest.groovy -------------------------------------------------------------------------------- /ihub-plugins/src/test/groovy/pub/ihub/plugin/copyright/IHubCopyrightPluginTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-plugins/src/test/groovy/pub/ihub/plugin/copyright/IHubCopyrightPluginTest.groovy -------------------------------------------------------------------------------- /ihub-plugins/src/test/groovy/pub/ihub/plugin/profiles/IHubProfilesPluginTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-plugins/src/test/groovy/pub/ihub/plugin/profiles/IHubProfilesPluginTest.groovy -------------------------------------------------------------------------------- /ihub-plugins/src/test/groovy/pub/ihub/plugin/version/IHubVersionPluginTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-plugins/src/test/groovy/pub/ihub/plugin/version/IHubVersionPluginTest.groovy -------------------------------------------------------------------------------- /ihub-publish/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-publish/build.gradle.kts -------------------------------------------------------------------------------- /ihub-publish/src/main/groovy/pub/ihub/plugin/publish/IHubPublishExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-publish/src/main/groovy/pub/ihub/plugin/publish/IHubPublishExtension.groovy -------------------------------------------------------------------------------- /ihub-publish/src/main/groovy/pub/ihub/plugin/publish/IHubPublishPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-publish/src/main/groovy/pub/ihub/plugin/publish/IHubPublishPlugin.groovy -------------------------------------------------------------------------------- /ihub-publish/src/test/groovy/pub/ihub/plugin/publish/IHubPublishPluginTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-publish/src/test/groovy/pub/ihub/plugin/publish/IHubPublishPluginTest.groovy -------------------------------------------------------------------------------- /ihub-settings/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-settings/build.gradle.kts -------------------------------------------------------------------------------- /ihub-settings/src/main/groovy/pub/ihub/plugin/IHubSettingsExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-settings/src/main/groovy/pub/ihub/plugin/IHubSettingsExtension.groovy -------------------------------------------------------------------------------- /ihub-settings/src/main/groovy/pub/ihub/plugin/IHubSettingsPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-settings/src/main/groovy/pub/ihub/plugin/IHubSettingsPlugin.groovy -------------------------------------------------------------------------------- /ihub-settings/src/test/groovy/pub/ihub/plugin/IHubSettingsPluginTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-settings/src/test/groovy/pub/ihub/plugin/IHubSettingsPluginTest.groovy -------------------------------------------------------------------------------- /ihub-shadow/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-shadow/build.gradle.kts -------------------------------------------------------------------------------- /ihub-shadow/src/main/groovy/pub/ihub/plugin/shadow/IHubShadowExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-shadow/src/main/groovy/pub/ihub/plugin/shadow/IHubShadowExtension.groovy -------------------------------------------------------------------------------- /ihub-shadow/src/main/groovy/pub/ihub/plugin/shadow/IHubShadowPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-shadow/src/main/groovy/pub/ihub/plugin/shadow/IHubShadowPlugin.groovy -------------------------------------------------------------------------------- /ihub-shadow/src/test/groovy/pub/ihub/plugin/shadow/IHubShadowPluginTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-shadow/src/test/groovy/pub/ihub/plugin/shadow/IHubShadowPluginTest.groovy -------------------------------------------------------------------------------- /ihub-spring/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-spring/build.gradle.kts -------------------------------------------------------------------------------- /ihub-spring/src/main/groovy/pub/ihub/plugin/spring/IHubBootExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-spring/src/main/groovy/pub/ihub/plugin/spring/IHubBootExtension.groovy -------------------------------------------------------------------------------- /ihub-spring/src/main/groovy/pub/ihub/plugin/spring/IHubBootPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-spring/src/main/groovy/pub/ihub/plugin/spring/IHubBootPlugin.groovy -------------------------------------------------------------------------------- /ihub-spring/src/main/groovy/pub/ihub/plugin/spring/IHubNativePlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-spring/src/main/groovy/pub/ihub/plugin/spring/IHubNativePlugin.groovy -------------------------------------------------------------------------------- /ihub-spring/src/test/groovy/pub/ihub/plugin/spring/IHubBootPluginTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-spring/src/test/groovy/pub/ihub/plugin/spring/IHubBootPluginTest.groovy -------------------------------------------------------------------------------- /ihub-verification/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-verification/build.gradle.kts -------------------------------------------------------------------------------- /ihub-verification/src/main/groovy/pub/ihub/plugin/verification/IHubSystemProperties.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-verification/src/main/groovy/pub/ihub/plugin/verification/IHubSystemProperties.groovy -------------------------------------------------------------------------------- /ihub-verification/src/main/groovy/pub/ihub/plugin/verification/IHubTestExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-verification/src/main/groovy/pub/ihub/plugin/verification/IHubTestExtension.groovy -------------------------------------------------------------------------------- /ihub-verification/src/main/groovy/pub/ihub/plugin/verification/IHubTestPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-verification/src/main/groovy/pub/ihub/plugin/verification/IHubTestPlugin.groovy -------------------------------------------------------------------------------- /ihub-verification/src/main/groovy/pub/ihub/plugin/verification/IHubVerificationExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-verification/src/main/groovy/pub/ihub/plugin/verification/IHubVerificationExtension.groovy -------------------------------------------------------------------------------- /ihub-verification/src/main/groovy/pub/ihub/plugin/verification/IHubVerificationPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-verification/src/main/groovy/pub/ihub/plugin/verification/IHubVerificationPlugin.groovy -------------------------------------------------------------------------------- /ihub-verification/src/main/resources/META-INF/codenarc.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-verification/src/main/resources/META-INF/codenarc.groovy -------------------------------------------------------------------------------- /ihub-verification/src/test/groovy/pub/ihub/plugin/verification/IHubVerificationPluginTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/ihub-verification/src/test/groovy/pub/ihub/plugin/verification/IHubVerificationPluginTest.groovy -------------------------------------------------------------------------------- /samples/sample-extensions/basic.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/samples/sample-extensions/basic.gradle -------------------------------------------------------------------------------- /samples/sample-extensions/bom.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/samples/sample-extensions/bom.gradle -------------------------------------------------------------------------------- /samples/sample-groovy/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/samples/sample-groovy/build.gradle -------------------------------------------------------------------------------- /samples/sample-groovy/conf/codenarc/codenarc.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/samples/sample-groovy/conf/codenarc/codenarc.groovy -------------------------------------------------------------------------------- /samples/sample-groovy/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/samples/sample-groovy/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /samples/sample-groovy/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/samples/sample-groovy/settings.gradle -------------------------------------------------------------------------------- /samples/sample-groovy/src/main/groovy/pub/ihub/sample/groovy/HelloWorld.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/samples/sample-groovy/src/main/groovy/pub/ihub/sample/groovy/HelloWorld.groovy -------------------------------------------------------------------------------- /samples/sample-groovy/src/test/groovy/pub/ihub/sample/groovy/HelloWorldTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/samples/sample-groovy/src/test/groovy/pub/ihub/sample/groovy/HelloWorldTest.groovy -------------------------------------------------------------------------------- /samples/sample-multi/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/samples/sample-multi/build.gradle -------------------------------------------------------------------------------- /samples/sample-multi/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/samples/sample-multi/gradle.properties -------------------------------------------------------------------------------- /samples/sample-multi/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/samples/sample-multi/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /samples/sample-multi/rest/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/samples/sample-multi/rest/build.gradle -------------------------------------------------------------------------------- /samples/sample-multi/rest/src/main/java/pub/ihub/sample/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/samples/sample-multi/rest/src/main/java/pub/ihub/sample/Application.java -------------------------------------------------------------------------------- /samples/sample-multi/rest/src/main/java/pub/ihub/sample/rest/HelloController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/samples/sample-multi/rest/src/main/java/pub/ihub/sample/rest/HelloController.java -------------------------------------------------------------------------------- /samples/sample-multi/rest/src/test/java/pub/ihub/sample/rest/HelloControllerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/samples/sample-multi/rest/src/test/java/pub/ihub/sample/rest/HelloControllerTest.java -------------------------------------------------------------------------------- /samples/sample-multi/sdk/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/samples/sample-multi/sdk/build.gradle -------------------------------------------------------------------------------- /samples/sample-multi/sdk/src/main/groovy/pub/ihub/sample/sdk/Response.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/samples/sample-multi/sdk/src/main/groovy/pub/ihub/sample/sdk/Response.groovy -------------------------------------------------------------------------------- /samples/sample-multi/sdk/src/test/groovy/pub/ihub/sample/sdk/ResponseTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/samples/sample-multi/sdk/src/test/groovy/pub/ihub/sample/sdk/ResponseTest.groovy -------------------------------------------------------------------------------- /samples/sample-multi/service/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/samples/sample-multi/service/build.gradle -------------------------------------------------------------------------------- /samples/sample-multi/service/src/main/java/pub/ihub/sample/service/HelloService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/samples/sample-multi/service/src/main/java/pub/ihub/sample/service/HelloService.java -------------------------------------------------------------------------------- /samples/sample-multi/service/src/main/java/pub/ihub/sample/service/config/ServiceAutoConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/samples/sample-multi/service/src/main/java/pub/ihub/sample/service/config/ServiceAutoConfiguration.java -------------------------------------------------------------------------------- /samples/sample-multi/service/src/main/resources/META-INF/spring.factories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/samples/sample-multi/service/src/main/resources/META-INF/spring.factories -------------------------------------------------------------------------------- /samples/sample-multi/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/samples/sample-multi/settings.gradle -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihub-pub/plugins/HEAD/settings.gradle.kts --------------------------------------------------------------------------------