forked from mirrors/nixpkgs
36 lines
1.1 KiB
Diff
36 lines
1.1 KiB
Diff
|
From 232c692240b9c52b95bd38ba7aecb11e7077cf31 Mon Sep 17 00:00:00 2001
|
||
|
From: Maximilian Bosch <maximilian@mbosch.me>
|
||
|
Date: Sat, 26 Feb 2022 12:33:13 +0100
|
||
|
Subject: [PATCH] Fetch buildconfig during gradle build inside Nix FOD
|
||
|
|
||
|
---
|
||
|
build.gradle | 5 +++++
|
||
|
1 file changed, 5 insertions(+)
|
||
|
|
||
|
diff --git a/build.gradle b/build.gradle
|
||
|
index cbb587f..3b06e80 100644
|
||
|
--- a/build.gradle
|
||
|
+++ b/build.gradle
|
||
|
@@ -82,6 +82,9 @@ static String getVersion() {
|
||
|
|
||
|
repositories {
|
||
|
maven {url "https://gitlab.com/api/v4/groups/6853927/-/packages/maven"} // https://gitlab.com/groups/signald/-/packages
|
||
|
+ maven {
|
||
|
+ url "https://plugins.gradle.org/m2/"
|
||
|
+ }
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
@@ -102,6 +105,8 @@ dependencies {
|
||
|
implementation 'io.prometheus:simpleclient_httpserver:0.14.1'
|
||
|
implementation 'com.squareup.okhttp3:logging-interceptor:4.9.3'
|
||
|
implementation 'io.sentry:sentry:5.6.1'
|
||
|
+ implementation 'com.github.gmazzo.buildconfig:com.github.gmazzo.buildconfig.gradle.plugin:3.0.3'
|
||
|
+ implementation 'org.jetbrains.kotlin:kotlin-scripting-jvm:1.4.31'
|
||
|
testImplementation 'org.junit.jupiter:junit-jupiter:5.8.2'
|
||
|
}
|
||
|
|
||
|
--
|
||
|
2.33.1
|
||
|
|