-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
37 lines (32 loc) · 881 Bytes
/
build.gradle
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
group 'com.ivieleague'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'kotlin'
apply plugin: 'application'
sourceCompatibility = 1.7
repositories {
mavenCentral()
jcenter()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compile 'org.pegdown:pegdown:1.6.0'
compile 'org.xhtmlrenderer:flying-saucer-pdf:9.0.8'
}
buildscript {
ext.kotlin_version = '1.0.0-rc-1036'
repositories {
mavenCentral()
maven {
url 'https://plugins.gradle.org/m2/'
}
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
sourceSets {
main.java.srcDirs += 'src/com.ivieleague.discrete_math_markdown.main/kotlin'
}
mainClassName = "com.ivieleague.discrete_math_markdown.MainKt"