Skip to content

Commit f6f6ffe

Browse files
committed
DEV: convert to gradle project,
UPDATE: update jackson(to 2.8.5), netty(to 5.0-alpha) library
1 parent c2aaaaf commit f6f6ffe

95 files changed

Lines changed: 477 additions & 76 deletions

File tree

Some content is hidden

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

README.kor.md

Lines changed: 1 addition & 2 deletions

README.md

Lines changed: 1 addition & 2 deletions

build.gradle

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
group 'org.onedrive'
2+
version '0.9-beta'
3+
4+
apply plugin: 'java'
5+
apply plugin: 'idea'
6+
7+
sourceCompatibility = 1.7
8+
9+
repositories {
10+
mavenCentral()
11+
}
12+
13+
dependencies {
14+
compile 'com.fasterxml.jackson.core:jackson-annotations:2.8.5+'
15+
compile 'com.fasterxml.jackson.core:jackson-core:2.8.5+'
16+
compile 'com.fasterxml.jackson.core:jackson-databind:2.8.5+'
17+
18+
compile 'com.fasterxml.jackson.module:jackson-module-afterburner:2.8.5+'
19+
20+
compile 'io.netty:netty-buffer:5.0.0.Alpha2+'
21+
compile 'io.netty:netty-codec:5.0.0.Alpha2+'
22+
compile 'io.netty:netty-codec-http:5.0.0.Alpha2+'
23+
compile 'io.netty:netty-common:5.0.0.Alpha2+'
24+
compile 'io.netty:netty-handler:5.0.0.Alpha2+'
25+
compile 'io.netty:netty-resolver:5.0.0.Alpha2+'
26+
compile 'io.netty:netty-transport:5.0.0.Alpha2+'
27+
28+
compile 'org.projectlombok:lombok:1.16.12+'
29+
30+
compile 'org.jetbrains:annotations:15.0+'
31+
32+
testCompile group: 'junit', name: 'junit', version: '4.11+'
33+
}

lib/annotations-java8.jar

-24.6 KB
Binary file not shown.

lib/hamcrest-core-1.3.jar

-44 KB
Binary file not shown.
-339 KB
Binary file not shown.
-56.3 KB
Binary file not shown.

lib/jackson-annotations-2.8.3.jar

-54.3 KB
Binary file not shown.

lib/jackson-core-2.8.3-javadoc.jar

-937 KB
Binary file not shown.

lib/jackson-core-2.8.3-sources.jar

-287 KB
Binary file not shown.

0 commit comments

Comments
 (0)