-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathbuild.gradle
65 lines (58 loc) · 1.62 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
/*
* This file was generated by the Gradle 'init' task.
*
* This is a general purpose Gradle build.
* Learn how to create Gradle builds at https://guides.gradle.org/creating-new-gradle-builds
*/
plugins {
id 'java'
id 'org.jetbrains.intellij' version '1.17.2'
}
group 'cn.ieclipse.smartim'
version '3.1.0.223'
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
maven {
url = 'https://repo.maven.apache.org/maven2'
}
}
dependencies {
implementation fileTree(dir: 'lib', includes: ['*.jar'])
implementation 'org.slf4j:slf4j-api:1.7.25'
implementation 'ch.qos.logback:logback-classic:1.3.12'
implementation 'ch.qos.logback:logback-core:1.3.12'
implementation 'com.squareup.okhttp3:okhttp:3.14.4'
implementation 'com.squareup.okhttp3:logging-interceptor:3.14.4'
implementation 'com.google.code.gson:gson:2.9.1'
implementation 'com.github.jamling.JavaUtils:core:933b1c6551'
implementation('dom4j:dom4j:1.6.1') {
exclude group: 'xml-apis'
}
testImplementation 'junit:junit:4.13.1'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version = 'IC-2023.3.6'
}
patchPluginXml {
sinceBuild = '223'
untilBuild = ''
}
publishPlugin {
token = project.getProperty "intellijPublishToken"
}
tasks.withType(JavaCompile) {
sourceCompatibility = "17"
targetCompatibility = "17"
options.encoding = 'UTF-8'
options.compilerArgs += ['-Xlint:unchecked', '-Xlint:deprecation', '-parameters']
}
sourceSets {
main {
java.srcDirs = ['src']
resources.srcDirs = ['resources']
}
test {
}
}