-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild.gradle
More file actions
33 lines (27 loc) · 800 Bytes
/
build.gradle
File metadata and controls
33 lines (27 loc) · 800 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
plugins {
id 'com.gradle.build-scan' version '1.15.1'
id 'java'
}
apply plugin: 'com.gradle.build-scan'
apply plugin: 'java'
apply plugin: 'maven'
sourceCompatibility = 1.8
targetCompatibility = 1.8
allprojects {
repositories {
mavenCentral()
maven { url "http://repo.maven.apache.org/maven2" }
maven { url 'https://jitpack.io' }
}
}
dependencies {
compile group: 'com.aparapi', name: 'aparapi', version:'1.9.0'
compile group: 'com.aparapi', name: 'aparapi-jni', version:'1.4.1'
implementation 'com.github.AutonomousCarProject:raspivid-j:0.1.0'
implementation 'org.bidib.com.pi4j:pi4j-distribution:1.2.M1'
}
buildScan {
termsOfServiceUrl = 'https://gradle.com/terms-of-service'
termsOfServiceAgree = 'yes'
}
version '1.0-SNAPSHOT'