-
Notifications
You must be signed in to change notification settings - Fork 9
/
build.gradle
56 lines (48 loc) · 1.34 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
buildscript {
repositories {
maven { url 'http://dl.bintray.com/jetbrains/intellij-plugin-service' }
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath "gradle.plugin.org.jetbrains.intellij.plugins:gradle-intellij-plugin:0.4.2"
}
}
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.4.1'
}
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile ('com.tinify:tinify:1.6.2') {
// exclude group: 'com.google.code.gson', module: 'gson'
// exclude group: 'com.squareup.okhttp3', module: 'okhttp'
// exclude group: 'com.squareup.okio', module: 'okio'
}
compile ('io.sentry:sentry:1.7.16') {
exclude group: 'org.slf4j', module: 'slf4j-api'
exclude group: 'com.fasterxml.jackson.core', module: 'jackson-core'
}
}
intellij {
version ideVersion
updateSinceUntilBuild false
plugins = [
"coverage",
"java-i18n",
"remote-run",
"properties",
]
}
group 'com.nvlad'
version '1.0.9'
patchPluginXml {
changeNotes """
- Update "Usage this month" value on Open plugin settings or press Apply
- Catch TinyPNG service errors.
"""
}