Rewrite based on code from the GitHub Dependency Graph Gradle Plugin

This commit is contained in:
Tad Fisher
2023-10-06 16:01:15 -07:00
parent 68327d0c5d
commit 00f8deb8f2
151 changed files with 6425 additions and 3491 deletions

View File

@@ -1,7 +1,7 @@
buildscript {
repositories {
maven {
url 'http://localhost:9999/'
url System.getProperty("org.nixos.gradle2nix.m2")
}
}
dependencies {

View File

@@ -1,7 +1,8 @@
plugins {
java
}
dependencies {
implementation("org.apache:test:1.0.0")
}
}

View File

@@ -1,6 +1,6 @@
dependencyResolutionManagement {
repositories {
maven { url = uri("http://localhost:9999") }
maven { url = uri(System.getProperty("org.nixos.gradle2nix.m2")) }
}
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
}
}