Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/JavierSegoviaCordoba/hubdle
Project and settings convention plugins which allow to create easily projects with different tools
https://github.com/JavierSegoviaCordoba/hubdle
gradle gradle-kotlin-dsl gradle-multi-project gradle-plugin hacktoberfest kotlin plugin
Last synced: 3 months ago
JSON representation
Project and settings convention plugins which allow to create easily projects with different tools
- Host: GitHub
- URL: https://github.com/JavierSegoviaCordoba/hubdle
- Owner: JavierSegoviaCordoba
- License: apache-2.0
- Created: 2021-03-17T22:00:29.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-05-01T10:56:15.000Z (9 months ago)
- Last Synced: 2024-05-02T01:11:38.203Z (9 months ago)
- Topics: gradle, gradle-kotlin-dsl, gradle-multi-project, gradle-plugin, hacktoberfest, kotlin, plugin
- Language: Kotlin
- Homepage: https://hubdle.javiersc.com
- Size: 73.2 MB
- Stars: 23
- Watchers: 2
- Forks: 9
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
![Kotlin version](https://img.shields.io/badge/kotlin-2.0.21-blueviolet?logo=kotlin&logoColor=white)
[![MavenCentral](https://img.shields.io/maven-central/v/com.javiersc.hubdle/hubdle-gradle-plugin?label=MavenCentral)](https://repo1.maven.org/maven2/com/javiersc/hubdle/hubdle-gradle-plugin/)
[![Snapshot](https://img.shields.io/nexus/s/com.javiersc.hubdle/hubdle-gradle-plugin?server=https%3A%2F%2Foss.sonatype.org%2F&label=Snapshot)](https://oss.sonatype.org/content/repositories/snapshots/com/javiersc/hubdle/hubdle-gradle-plugin/)[![Build](https://img.shields.io/github/actions/workflow/status/JavierSegoviaCordoba/hubdle/build-kotlin.yaml?label=Build&logo=GitHub)](https://github.com/JavierSegoviaCordoba/hubdle/tree/main)
[![Coverage](https://img.shields.io/sonar/coverage/com.javiersc.gradle:hubdle?label=Coverage&logo=SonarCloud&logoColor=white&server=https%3A%2F%2Fsonarcloud.io)](https://sonarcloud.io/dashboard?id=com.javiersc.gradle:hubdle)
[![Quality](https://img.shields.io/sonar/quality_gate/com.javiersc.gradle:hubdle?label=Quality&logo=SonarCloud&logoColor=white&server=https%3A%2F%2Fsonarcloud.io)](https://sonarcloud.io/dashboard?id=com.javiersc.gradle:hubdle)
[![Tech debt](https://img.shields.io/sonar/tech_debt/com.javiersc.gradle:hubdle?label=Tech%20debt&logo=SonarCloud&logoColor=white&server=https%3A%2F%2Fsonarcloud.io)](https://sonarcloud.io/dashboard?id=com.javiersc.gradle:hubdle)# Hubdle
Project and settings convention plugins which allow to create easily projects with different tools:
- Kotlin projects like JVM, Android, Multiplatform, Gradle plugins, with different features, for
example Compose,Kotest, Coroutines, Serialization...
- Autoconfiguration of multiple tools like coverage, analysis, lints, formatting, documentation,
publishing...
- Auto-include projects and version catalogs.## Usage
```kotlin
plugins {
id("com.javiersc.hubdle") version "$version"
}// basic config to get a Kotlin jvm project with coroutines and a custom dependency
hubdle {
kotlin {
jvm {
features {
coroutines()
}main {
dependencies {
implementation("org.example:example:1.0.0")
}
}
}
}
}
```## Configurations
Visit the [website](https://hubdle.javiersc.com/)
## License
```
Copyright 2022 Javier Segovia CórdobaLicensed 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 athttps://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.
```