Skip to content

Commit

Permalink
Remove release plugin and simplify Gradle build.
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentg committed Feb 11, 2015
1 parent 5d619be commit 1501cf7
Showing 1 changed file with 3 additions and 16 deletions.
19 changes: 3 additions & 16 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,36 +1,23 @@
buildscript {
repositories {
mavenCentral()
maven {
url 'http://maven.tmatesoft.com/content/repositories/releases/'
}
}
dependencies {
classpath 'au.com.ish.gradle:release:2.2.2'
}
}

apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'application'
apply plugin: 'release'

release {
failOnSnapshotDependencies = true
allowLocalModifications = true
releaseDryRun = false
scm = 'git'
}
version = release.projectVersion
version = '0.1.3'

sourceCompatibility = 1.7
mainClassName = "org.truffautronic.Main"
repositories {
mavenCentral()
}
dependencies {
compile group: 'com.thoughtworks.xstream', name: 'xstream', version: '1.4.+'
testCompile group: 'junit', name: 'junit', version: '4.+'
compile 'com.thoughtworks.xstream:xstream:1.4.+'
testCompile 'junit:junit:4.+'
}

jar {
Expand Down

0 comments on commit 1501cf7

Please sign in to comment.