Skip to content

Commit

Permalink
gradle config
Browse files Browse the repository at this point in the history
  • Loading branch information
doridori committed Nov 25, 2015
1 parent 023f5f8 commit b63f5fd
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
apply plugin: 'java'
apply plugin: 'maven-publish'

sourceCompatibility = 1.7
version = '0.9'
version = '0.9.0'

task wrapper(type: Wrapper) {
gradleVersion = '2.3'
Expand All @@ -14,4 +15,15 @@ repositories {
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
testCompile 'org.mockito:mockito-all:1.10.19'
}

publishing {
publications {
releaseJar(MavenPublication) {
groupId 'com.kodroid'
artifactId 'engine'

from components.java
}
}
}

0 comments on commit b63f5fd

Please sign in to comment.