Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/omico/dehell
Easily export information about the dependencies used.
https://github.com/omico/dehell
dependencies gradle gradle-plugin
Last synced: about 1 month ago
JSON representation
Easily export information about the dependencies used.
- Host: GitHub
- URL: https://github.com/omico/dehell
- Owner: Omico
- License: apache-2.0
- Created: 2024-01-20T03:38:53.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-08-05T07:16:53.000Z (4 months ago)
- Last Synced: 2024-08-05T08:42:33.857Z (4 months ago)
- Topics: dependencies, gradle, gradle-plugin
- Language: Kotlin
- Homepage:
- Size: 122 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dehell
> What the hell? Incoming dependencies. Such a dependency hell.
## Usage
```kotlin
repositories {
maven(url = "https://maven.omico.me")
}```
### Android
```kotlin
plugins {
id("me.omico.dehell") version "0.2.0"
}dehell {
variant = "release"
debug = true
output = file("src/main/res/raw/dehell-dependencies.json")
rules {
match(
name = "Jetpack",
url = "https://developer.android.com/jetpack/androidx/explorer",
by = DehellMatchBy.Group,
type = DehellMatchType.Prefix,
value = "androidx.",
)
match(
name = "Jetpack Compose",
url = "https://developer.android.com/jetpack/androidx/explorer",
by = DehellMatchBy.Group,
type = DehellMatchType.Prefix,
value = "androidx.compose.",
)
ignore(
by = DehellMatchBy.Group,
type = DehellMatchType.Exact,
values = arrayOf(
"com.example",
"org.jetbrains",
),
)
}
}
```## License
```txt
Copyright 2024 OmicoLicensed 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.
```