forked from shuzijun/leetcode-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
71 lines (54 loc) · 1.72 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
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.4.16'
id "de.undercouch.download" version "4.0.2"
}
group 'com.shuzijun.leetcode'
version (System.getenv('LD_VERSION')==null ? "6.8":System.getenv('LD_VERSION')) + (project.build_env.isEmpty() ? "" : "-") + project.build_env
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile 'com.alibaba:fastjson:1.2.47'
compile 'org.jsoup:jsoup:1.11.3'
compile('io.sentry:sentry:1.7.9') {
exclude module: 'slf4j-api'
}
compile 'org.scilab.forge:jlatexmath:1.0.7'
compile 'org.apache.commons:commons-lang3:3.9'
//compile fileTree(dir: 'src/main/resources/lib', include: ['*.jar'])
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
pluginName 'leetcode-editor'
version '2020.2'
type 'IU'
downloadSources false
updateSinceUntilBuild false
buildSearchableOptions.enabled(false)
/* updateSinceUntilBuild false
localPath project.idea_local_path
alternativeIdePath project.idea_local_path*/
prepareSandbox {
from("src/main/natives" + (project.build_env.isEmpty() ? "" : "-") + project.build_env) { into(getPluginName() + '/natives') }
}
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
/*
task downloadJCEF(type: Copy) {
if (project.build_env.isEmpty()) {
return
}
def tempFile = new File(buildDir, "/download/natives-" + project.build_env + ".zip")
download {
src("https://github.com/shuzijun/leetcode-editor/releases/download/" + project.jcef_version + "/natives-" + project.build_env + ".zip")
dest tempFile
}
from zipTree(tempFile)
into "src/main/"
}
*/