mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 04:33:57 +00:00
7372d298cd
ChangeLogs: * https://gitlab.com/signald/signald/-/blob/0.18.5/releases/0.18.0.md * https://gitlab.com/signald/signald/-/blob/0.18.5/releases/0.18.1.md * https://gitlab.com/signald/signald/-/blob/0.18.5/releases/0.18.2.md * https://gitlab.com/signald/signald/-/blob/0.18.5/releases/0.18.3.md * https://gitlab.com/signald/signald/-/blob/0.18.5/releases/0.18.4.md * https://gitlab.com/signald/signald/-/blob/0.18.5/releases/0.18.5.md
72 lines
2.1 KiB
Diff
72 lines
2.1 KiB
Diff
From f319e1db47ae1eeddb6021cafe7b4f8551a702d7 Mon Sep 17 00:00:00 2001
|
|
From: Maximilian Bosch <maximilian@mbosch.me>
|
|
Date: Sat, 26 Feb 2022 12:36:15 +0100
|
|
Subject: [PATCH 2/2] buildconfig/local deps fixes
|
|
|
|
---
|
|
build.gradle | 26 ++++++++++++++++++--------
|
|
1 file changed, 18 insertions(+), 8 deletions(-)
|
|
|
|
diff --git a/build.gradle b/build.gradle
|
|
index eaa6e0e..9a2f4e2 100644
|
|
--- a/build.gradle
|
|
+++ b/build.gradle
|
|
@@ -10,11 +10,21 @@ import org.gradle.nativeplatform.platform.internal.ArchitectureInternal
|
|
import org.gradle.nativeplatform.platform.internal.DefaultNativePlatform
|
|
import org.gradle.nativeplatform.platform.internal.OperatingSystemInternal
|
|
|
|
+buildscript {
|
|
+ repositories {
|
|
+ maven {
|
|
+ url(uri("@deps@"))
|
|
+ }
|
|
+ }
|
|
+ dependencies {
|
|
+ classpath "com.github.gmazzo:gradle-buildconfig-plugin:3.0.3"
|
|
+ }
|
|
+}
|
|
+
|
|
plugins {
|
|
- id 'com.github.gmazzo.buildconfig' version '3.0.3'
|
|
- id 'org.beryx.runtime' version '1.12.7'
|
|
id 'application'
|
|
}
|
|
+apply plugin: "com.github.gmazzo.buildconfig"
|
|
|
|
compileJava.options.encoding = 'UTF-8'
|
|
|
|
@@ -83,7 +93,10 @@ static String getVersion() {
|
|
|
|
repositories {
|
|
maven {url "https://gitlab.com/api/v4/groups/6853927/-/packages/maven"} // https://gitlab.com/groups/signald/-/packages
|
|
- mavenCentral()
|
|
+ mavenLocal()
|
|
+ maven {
|
|
+ url uri("@deps@")
|
|
+ }
|
|
}
|
|
|
|
dependencies {
|
|
@@ -104,6 +117,8 @@ dependencies {
|
|
implementation 'io.prometheus:simpleclient_httpserver:0.15.0'
|
|
implementation 'com.squareup.okhttp3:logging-interceptor:4.9.3'
|
|
implementation 'io.sentry:sentry:5.7.3'
|
|
+ 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'
|
|
}
|
|
|
|
@@ -167,8 +182,3 @@ allprojects {
|
|
}
|
|
}
|
|
}
|
|
-
|
|
-runtime {
|
|
- options = ['--strip-java-debug-attributes', '--compress', '2', '--no-header-files', '--no-man-pages']
|
|
- modules = ['java.base', 'java.management', 'java.naming', 'java.sql', 'java.xml', 'jdk.crypto.ec', 'jdk.httpserver', 'java.desktop', 'jdk.unsupported']
|
|
-}
|
|
\ No newline at end of file
|
|
--
|
|
2.36.0
|
|
|