forked from ornl-epics/etherip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
44 lines (38 loc) · 968 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
42
43
44
apply plugin: 'java'
apply plugin: 'osgi'
jar.baseName = "etherip-rgh"
version = "1.0.1"
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.+'
}
sourceSets {
main {
java {
srcDir 'src'
include 'etherip/**'
}
}
test {
java {
srcDir 'test'
include 'etherip/**'
}
}
}
jar {
manifest {
attributes(
'Bundle-SymbolicName': "etherip",
'Bundle-Copyright': "Copyright (c) 2012 Oak Ridge National Laboratory",
'Bundle-Description': "EthernetIP Allen Bradley Control Logix/Compact Logix library",
'Bundle-DocURL': "https://github.com/renej-github/etherip",
'Bundle-License': "http://www.eclipse.org/legal/epl-v10.html",
'Bundle-Vendor': "Oak Ridge National Laboratory (modified rgh)"
)
instruction 'Import-Package', '*'
instruction 'Export-Package', '*'
}
}