-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.gradle
53 lines (46 loc) · 1.11 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
plugins {
id 'java-library-distribution'
id 'jacoco'
id 'maven'
}
group = 'com.github.CST-Group'
description = "The Multipurpose Enhanced Cognitive Architecture (MECA)"
sourceCompatibility = 1.8
targetCompatibility = 1.8
version = '0.2.1'
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
maven {
url "https://github.com/rosjava/rosjava_mvn_repo/raw/master"
}
maven {
url "http://repository.springsource.com/maven/bundles/release"
}
maven {
url "http://repository.springsource.com/maven/bundles/external"
}
}
dependencies {
api 'com.github.CST-Group:cst:0.3.1'
testImplementation group: 'junit', name: 'junit', version: '4.12'
testImplementation 'org.ros.rosjava_messages:std_msgs:0.5.11'
testImplementation 'org.ros.rosjava_messages:rosjava_test_msgs:0.3.0'
}
task javadocJar(type: Jar) {
classifier = 'javadoc'
from javadoc
}
task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts
{
archives javadocJar, sourcesJar
}
jacocoTestReport {
reports {
xml.enabled true
}
}