feat(3p/apereo-cas): initial Nix derivation (no TVL-specific config yet)

Change-Id: Ie7d52370dd554b110bbfa041b943fcf246373b94
Reviewed-on: https://cl.tvl.fyi/c/depot/+/933
Tested-by: BuildkiteCI
Reviewed-by: tazjin <mail@tazj.in>
This commit is contained in:
Luke Granger-Brown 2020-07-05 19:08:36 +00:00 committed by lukegb
parent 4b9fde0abe
commit 1915fbccd6
5 changed files with 137 additions and 43 deletions

View file

@ -10,12 +10,17 @@ import static org.gradle.internal.logging.text.StyledTextOutput.Style
buildscript {
repositories {
mavenLocal()
mavenCentral()
jcenter()
maven {
url "https://oss.sonatype.org/content/repositories/snapshots"
mavenContent { snapshotsOnly() }
if (rootProject.hasProperty("cacheLocation")) {
mavenLocal()
maven { url cacheLocation }
} else {
mavenLocal()
mavenCentral()
jcenter()
maven {
url "https://oss.sonatype.org/content/repositories/snapshots"
mavenContent { snapshotsOnly() }
}
}
}