Skip to content
Snippets Groups Projects
Commit c214a37a authored by Jens Bendisposto's avatar Jens Bendisposto
Browse files

fixed build

parent 01d0e63e
No related branches found
No related tags found
No related merge requests found
project.version = '1.0.1-SNAPSHOT'; project.version = '1.0.1-SNAPSHOT';
project.group = 'de.stups' project.group = 'de.stups'
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'eu.appsatori:gradle-fatjar-plugin:0.2-rc1'
}
}
apply plugin: 'java' apply plugin: 'java'
apply plugin: 'eclipse' apply plugin: 'eclipse'
apply plugin: 'maven' apply plugin: 'maven'
apply plugin: 'fatjar'
repositories { repositories {
maven { maven {
...@@ -55,18 +68,17 @@ test { ...@@ -55,18 +68,17 @@ test {
} }
jar { jar {
from(configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }) { include '**/*.class'
exclude "META-INF/*.SF" include '**/*.java'
exclude "META-INF/*.DSA" exclude '**.*.scc'
exclude "META-INF/*.RSA" from 'build/temp'
include '**/*.dat'
include '**/*.properties'
from configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
} }
manifest {
attributes 'Implementation-Title': 'ProB Kodkod',
'Implementation-Version': project.version,
'Built-Date': new Date(),
'Built-JDK': System.getProperty('java.version')
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment