Skip to content

Commit 7748efd

Browse files
committed
Init commit
1 parent a94870a commit 7748efd

File tree

15 files changed

+1140
-0
lines changed

15 files changed

+1140
-0
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Ignore Gradle project-specific cache directory
2+
.gradle
3+
4+
# Ignore Gradle build output directory
5+
build

.idea/gradle.xml

+19
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/workspace.xml

+210
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle.kts

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2+
3+
/*
4+
* This file was generated by the Gradle 'init' task.
5+
*
6+
* This generated file contains a sample Kotlin library project to get you started.
7+
*/
8+
9+
plugins {
10+
// Apply the Kotlin JVM plugin to add support for Kotlin on the JVM.
11+
id("org.jetbrains.kotlin.jvm").version("1.3.31")
12+
}
13+
14+
repositories {
15+
// Use jcenter for resolving dependencies.
16+
// You can declare any Maven/Ivy/file repository here.
17+
jcenter()
18+
mavenCentral()
19+
}
20+
21+
//deps
22+
val awsLambdaCoreVersion = "1.2.0"
23+
val awsLambdaEventsVersion = "2.2.6"
24+
val javaxVersion = "3.1.0"
25+
26+
//test deps
27+
val javalinVersion = "3.3.0"
28+
29+
dependencies {
30+
// Use the Kotlin JDK 8 standard library.
31+
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
32+
33+
implementation("com.amazonaws:aws-lambda-java-events:$awsLambdaEventsVersion")
34+
implementation("com.amazonaws:aws-lambda-java-core:$awsLambdaCoreVersion")
35+
implementation("javax.servlet:javax.servlet-api:$javaxVersion")
36+
37+
// Use the Kotlin test library.
38+
testImplementation("io.javalin:javalin:$javalinVersion")
39+
testImplementation("org.jetbrains.kotlin:kotlin-test")
40+
41+
// Use the Kotlin JUnit integration.
42+
testImplementation("org.jetbrains.kotlin:kotlin-test-junit")
43+
}
44+
45+
configure<JavaPluginConvention> {
46+
sourceCompatibility = JavaVersion.VERSION_1_8
47+
targetCompatibility = JavaVersion.VERSION_1_8
48+
}
49+
tasks.withType<KotlinCompile> {
50+
kotlinOptions.jvmTarget = "1.8"
51+
}

gradle/wrapper/gradle-wrapper.jar

54.3 KB
Binary file not shown.
+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.5.1-bin.zip
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)