forked from arcus-smart-home/arcusipcd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
41 lines (34 loc) · 769 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
38
39
40
41
buildscript {
repositories {
mavenCentral()
}
}
subprojects {
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'maven'
apply plugin: 'maven-publish'
repositories {
mavenCentral()
}
dependencies {
testCompile 'org.hamcrest:hamcrest-core:1.2',
'junit:junit:4.8.2',
'nl.jqno.equalsverifier:equalsverifier:1.5'
}
group = 'com.arcussmarthome'
version = '1.1.0-SNAPSHOT'
// Shared manifest for all jar files
ext.sharedManifest = manifest {
attributes(
'Implementation-Title': project.name,
'Implementation-Version': project.version,
)
}
jar {
manifest = project.manifest {
from sharedManifest
}
manifest.attributes provider: 'arcus'
}
}