This repository was archived by the owner on Nov 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
53 lines (43 loc) · 1.57 KB
/
build.gradle
File metadata and controls
53 lines (43 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
buildscript {
repositories {
jcenter()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "gradle.plugin.com.google.cloud.tools:jib-gradle-plugin:1.8.0"
}
}
apply plugin: 'kotlin'
apply plugin: 'application'
apply plugin: 'com.google.cloud.tools.jib'
group 'org.mozilla.app.push'
version '0.0.1'
mainClassName = "io.ktor.server.netty.EngineMain"
sourceSets {
main.kotlin.srcDirs = main.java.srcDirs = ['src']
test.kotlin.srcDirs = test.java.srcDirs = ['test']
main.resources.srcDirs = ['resources']
test.resources.srcDirs = ['testresources']
}
repositories {
mavenLocal()
jcenter()
maven { url 'https://kotlin.bintray.com/ktor' }
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
compile "io.ktor:ktor-server-netty:$ktor_version"
compile "ch.qos.logback:logback-classic:$logback_version"
compile "io.ktor:ktor-server-core:$ktor_version"
compile "io.ktor:ktor-gson:$ktor_version"
compile 'com.google.firebase:firebase-admin:6.11.0'
compile 'com.google.auth:google-auth-library-oauth2-http:0.20.0'
compile 'ch.qos.logback:logback-classic:1.2.3'
compile group: 'com.zaxxer', name: 'HikariCP', version: '2.7.4'
compile group: 'org.postgresql', name: 'postgresql', version: '42.2.8'
compile group: 'com.google.cloud.sql', name: 'postgres-socket-factory', version: '1.0.15'
testCompile "io.ktor:ktor-server-tests:$ktor_version"
}