-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
72 lines (63 loc) · 2.52 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
plugins {
id 'java'
id 'idea'
id 'org.jetbrains.kotlin.jvm' version '1.6.10'
id 'org.jetbrains.kotlinx.kover' version '0.4.2'
id 'org.jetbrains.kotlin.plugin.serialization' version '1.6.10'
id 'org.openstreetmap.josm' version '0.7.1'
}
group 'org.openstreetmap.josm.plugins.dl.russiaaddresshelper'
version '0.9.3'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.apache.commons:commons-text:1.9'
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.6.10'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0-native-mt'
implementation "com.charleskorn.kaml:kaml:0.40.0"
implementation 'com.github.kittinunf.fuel:fuel:2.3.1'
implementation 'com.github.kittinunf.fuel:fuel-coroutines:2.3.1'
implementation 'com.github.kittinunf.fuel:fuel-jackson:2.3.1'
implementation 'junit:junit:4.13.1'
compile 'com.fasterxml.jackson.core:jackson-core:2.4.1'
compile 'com.fasterxml.jackson.core:jackson-annotations:2.4.1'
compile 'com.fasterxml.jackson.core:jackson-databind:2.4.1'
packIntoJar 'org.apache.commons:commons-text:1.9'
packIntoJar 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0-native-mt'
packIntoJar 'org.jetbrains.kotlin:kotlin-stdlib:1.6.0'
packIntoJar 'com.charleskorn.kaml:kaml:0.40.0'
packIntoJar 'com.github.kittinunf.fuel:fuel:2.3.1'
packIntoJar 'com.github.kittinunf.fuel:fuel-coroutines:2.3.1'
packIntoJar 'com.github.kittinunf.fuel:fuel-jackson:2.3.1'
testImplementation 'org.junit.vintage:junit-vintage-engine:5.8.2'
testImplementation 'org.mockito.kotlin:mockito-kotlin:5.1.0'
testImplementation("org.openstreetmap.josm:josm-unittest:") { changing = true }
testImplementation 'com.github.tomakehurst:wiremock-jre8:2.32.0'
testImplementation 'org.junit.jupiter:junit-jupiter:5.8.2'
testImplementation 'org.skyscreamer:jsonassert:1.5.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
}
test {
useJUnitPlatform()
}
sourceSets {
test {
resources {
srcDirs = ["src/test/data"]
}
}
}
josm {
pluginName = "russia-address-helper"
debugPort = 1729
josmCompileVersion = 18902
manifest {
description = "Плагин JOSM для загрузки адресов из ЕГРН "
mainClass = "org.openstreetmap.josm.plugins.dl.russiaaddresshelper.RussiaAddressHelperPlugin"
minJosmVersion = 17919
author = "Stepan I. and TakutoRU"
canLoadAtRuntime = false
iconPath = "images/icon.svg"
}
}