Skip to content

Commit c70634b

Browse files
committed
chore: Initial setup
0 parents  commit c70634b

14 files changed

+316
-0
lines changed

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.idea
2+
out/production
3+
.gradle
4+
build
5+
config.properties
6+
.DS_Store
7+
.project
8+
.settings

build.gradle

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
plugins {
2+
id 'java'
3+
id 'application'
4+
}
5+
6+
group 'io.imagekit.sampleapp'
7+
version '1.0-SNAPSHOT'
8+
9+
sourceCompatibility = 1.8
10+
11+
repositories {
12+
mavenCentral()
13+
}
14+
15+
application {
16+
mainClassName 'io.imagekit.sampleapp.App'
17+
}
18+
19+
dependencies {
20+
compile fileTree(include: ['*.jar'], dir: 'libs')
21+
compile project(':imagekit-sdk')
22+
testCompile group: 'junit', name: 'junit', version: '4.12'
23+
}
24+

gradle/wrapper/gradle-wrapper.jar

53.9 KB
Binary file not shown.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Sat Jan 04 19:50:00 IST 2020
2+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.0.1-all.zip
3+
distributionBase=GRADLE_USER_HOME
4+
distributionPath=wrapper/dists
5+
zipStorePath=wrapper/dists
6+
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 172 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 84 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

imagekit-sdk/build.gradle

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
plugins {
2+
id 'java'
3+
id 'java-library'
4+
}
5+
6+
group 'io.imagekit.sdk'
7+
version '0.0.1'
8+
9+
sourceCompatibility = 1.8
10+
11+
repositories {
12+
mavenCentral()
13+
}
14+
15+
dependencies {
16+
compile fileTree(include: ['*.jar'], dir: '../libs')
17+
testCompile group: 'junit', name: 'junit', version: '4.12'
18+
testCompile "org.mockito:mockito-all:2.+"
19+
}

libs/commons-codec-1.13.jar

336 KB
Binary file not shown.

libs/converter-gson-2.3.0.jar

5.71 KB
Binary file not shown.

libs/gson-2.7.jar

227 KB
Binary file not shown.

0 commit comments

Comments
 (0)