Skip to content

Commit 89cdf93

Browse files
committed
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

Lines changed: 6 additions & 0 deletions
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

Lines changed: 47 additions & 0 deletions
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+

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
-Dfile.encoding=utf-8

resources/lib/fastjson-1.2.47.jar

-534 KB
Binary file not shown.

resources/lib/jackson-core-2.9.9.jar

-318 KB
Binary file not shown.

resources/lib/jsoup-1.11.3.jar

-386 KB
Binary file not shown.

resources/lib/sentry-1.7.9.jar

-152 KB
Binary file not shown.

settings.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
rootProject.name = 'leetcode-editor'
2+
3+

src/com/shuzijun/leetcode/plugin/actions/LoginAction.java

Lines changed: 0 additions & 155 deletions
This file was deleted.

0 commit comments

Comments
 (0)