-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild.gradle
More file actions
40 lines (32 loc) · 848 Bytes
/
build.gradle
File metadata and controls
40 lines (32 loc) · 848 Bytes
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
//Gradle file library ev3dev-lang-java / examples
//Author: Juan Antonio Breña Moral
buildscript {
repositories {
jcenter()
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
}
maven { url "https://jitpack.io" }
}
}
subprojects {
version = "2.4.16"
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
dependencies {
implementation("com.github.ev3dev-lang-java:ev3dev-lang-java:2.5.3")
implementation("com.github.ev3dev-lang-java:lejos-navigation:0.2.0")
implementation("ch.qos.logback:logback-classic:1.2.3")
}
//Compile
compileJava {
sourceCompatibility = 11
targetCompatibility = 11
}
}