Skip to content

Commit 89cdf93

Browse files
committedDec 3, 2019
Login WebView; gradle build
1 parent 922bc89 commit 89cdf93

File tree

87 files changed

+367
-155
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+367
-155
lines changed
 

‎.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,9 @@
2323
hs_err_pid*
2424
/*.iml
2525
.idea/
26+
.gradle/
27+
/gradle
28+
/gradlew
29+
/gradlew.bat
30+
/build/
31+
/out/

‎build.gradle

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
plugins {
2+
id 'java'
3+
id 'org.jetbrains.intellij' version '0.4.14'
4+
}
5+
6+
group 'com.shuzijun.leetcode'
7+
version 'V5.4'
8+
9+
sourceCompatibility = 1.8
10+
targetCompatibility = 1.8
11+
12+
repositories {
13+
mavenCentral()
14+
maven {
15+
url "https://repo.panda-lang.org/"
16+
}
17+
}
18+
19+
dependencies {
20+
compile 'com.alibaba:fastjson:1.2.47'
21+
compile 'org.jsoup:jsoup:1.11.3'
22+
compile 'io.sentry:sentry:1.7.9'
23+
compile 'org.panda-lang:pandomium:67.0.6'
24+
}
25+
26+
// See https://github.com/JetBrains/gradle-intellij-plugin/
27+
intellij {
28+
pluginName 'leetcode-editor'
29+
//version 'IU-193.5233.102'
30+
//type 'IU'
31+
downloadSources false
32+
updateSinceUntilBuild false
33+
buildSearchableOptions.enabled(false)
34+
localPath 'use idea path'
35+
alternativeIdePath 'use idea path'
36+
37+
prepareSandbox {
38+
from('src/main/natives') { into(getPluginName()+'/natives') }
39+
}
40+
41+
}
42+
43+
tasks.withType(JavaCompile) {
44+
options.encoding = "UTF-8"
45+
}
46+
47+

0 commit comments

Comments
 (0)
Please sign in to comment.