mirror of
https://github.com/tadfisher/gradle2nix.git
synced 2026-01-12 07:50:53 -05:00
- Use Apache Ivy to resolve artifact URLs - Update build model with full artifact IDs - Generate Maven module metadata to support dynamic version constraints - Resolve snapshot versions and generate snapshot metadata - Add test fixtures and rewrite Gradle plugin tests - Update dependencies
14 lines
194 B
Kotlin
14 lines
194 B
Kotlin
plugins {
|
|
java
|
|
}
|
|
|
|
repositories {
|
|
jcenter()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("com.squareup.okio:okio:2.2.2")
|
|
implementation("com.squareup.moshi:moshi:1.8.0")
|
|
}
|