-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
39 lines (31 loc) · 876 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
plugins {
id 'java'
id 'application'
}
apply plugin: 'groovy'
applicationName = 'javalib'
group 'cz.havranek.opensource.SIMD'
version '1.0'
application {
mainClassName = 'cz.havranek.opensource.SIMD.ByteBufferProcesors.Bitwise.Main'
}
jar {
manifest {
attributes 'Implementation-Title': 'uppercase',
'Implementation-Version': version,
'Main-Class': 'cz.havranek.opensource.SIMD.ByteBufferProcesors.Bitwise.Main'
}
from sourceSets.main.output
dependsOn configurations.runtimeClasspath
from {
configurations.runtimeClasspath.findAll { it.name.endsWith('jar') }.collect { zipTree(it) }
}
}
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile "org.codehaus.groovy:groovy-all:2.5.7"
testCompile "org.spockframework:spock-core:1.3-groovy-2.5"
}