This repository has been archived by the owner on Jul 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
85 lines (73 loc) · 2.47 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
buildscript {
repositories {
mavenCentral()
maven { setUrl("https://maven.vaadin.com/vaadin-prereleases") }
maven { url "https://plugins.gradle.org/m2/" }
}
}
plugins {
id 'war'
id 'com.vaadin'
}
vaadinVersion = '24.2.5'
defaultTasks("build")
repositories {
mavenLocal()
mavenCentral()
maven { setUrl("https://maven.vaadin.com/vaadin-prereleases") }
maven { url "https://plugins.gradle.org/m2/" }
maven { url "https://jitpack.io" }
}
test {
useJUnitPlatform()
}
tasks.withType(Jar) {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}
java {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
// The following pnpmEnable = false is not needed as npm is used by default,
// this is just an example of how to configure the Gradle Vaadin Plugin:
// for more configuraion options please see: https://vaadin.com/docs/latest/guide/start/gradle/#all-options
vaadin {
pnpmEnable = false
DuplicatesStrategy exclude
}
dependencies {
implementation enforcedPlatform("com.vaadin:vaadin-bom:$vaadinVersion")
implementation("com.vaadin:vaadin-core")
implementation 'org.parttio:line-awesome:1.1.0'
compileOnly("jakarta.servlet:jakarta.servlet-api:5.0.0")
implementation('bisq:common')
implementation('bisq:persistence')
implementation('bisq:i18n')
implementation('bisq:security')
implementation('bisq:identity')
implementation('network:network')
implementation('bisq:account')
implementation('bisq:offer')
implementation('bisq:contract')
implementation('bisq:settings')
implementation('bisq:user')
implementation('bisq:chat')
implementation('bisq:presentation')
implementation('bisq:application')
implementation('bisq:support')
implementation('bisq:trade')
implementation('bisq:bonded_roles')
implementation('bisq:bisq_easy')
implementation("wallets:electrum")
implementation("wallets:bitcoind")
implementation libs.google.gson
implementation libs.google.guava
implementation libs.typesafe.config
implementation libs.bundles.jackson
compileOnly 'org.projectlombok:lombok:1.18.24'
annotationProcessor 'org.projectlombok:lombok:1.18.24'
testCompileOnly 'org.projectlombok:lombok:1.18.24'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.24'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
}