Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tmslpm/gradle-include-subprojects
Gradle Plugin: Include sources and resources from one subproject in all other subprojects
https://github.com/tmslpm/gradle-include-subprojects
Last synced: about 1 month ago
JSON representation
Gradle Plugin: Include sources and resources from one subproject in all other subprojects
- Host: GitHub
- URL: https://github.com/tmslpm/gradle-include-subprojects
- Owner: tmslpm
- License: mit
- Created: 2024-11-13T03:09:30.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-11-13T03:12:06.000Z (about 1 month ago)
- Last Synced: 2024-11-13T04:19:28.678Z (about 1 month ago)
- Language: Java
- Homepage:
- Size: 62.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license.md
Awesome Lists containing this project
README
# Gradle Plugin : Include Subproject Source
- License: MIT
## Setup
- clone the project
- execute the task publishToMavenLocal
- edit your "build.gradle" and add the plugin```groovy
plugins {
id 'gradle-include-subproject-source' version '1.0.0'
}includeSubprojectSource {
subprojectNames = ["common"]
}
```