Skip to content

Commit

Permalink
set source and target level, upgrade utility, mavenlocal
Browse files Browse the repository at this point in the history
  • Loading branch information
xzel23 committed Sep 30, 2017
1 parent f950b10 commit b49398b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
allprojects {
apply plugin: 'maven'
apply plugin: 'maven-publish'
apply plugin: 'java'
apply plugin: 'findbugs'
apply plugin: 'pmd'
apply plugin: 'jacoco'

sourceCompatibility = 1.8
targetCompatibility = 1.8

group = 'com.dua3.meja'

Expand All @@ -21,7 +25,7 @@ allprojects {
compile "org.apache.poi:poi-ooxml-schemas:${poiVersion}"

// use local project if 'localBuild' was set
def utilityVersion = "0.1.11"
def utilityVersion = "0.2"
if (project.hasProperty('localBuild')) {
compile 'com.dua3.utility:utility:+'
} else {
Expand Down Expand Up @@ -155,3 +159,5 @@ task allJar(type: Jar, dependsOn: [subprojects.tasks['classes'], alljavadoc]) {
task dist(dependsOn: [depJar, srcJar, docJar, allJar]) {
println "creating distribution files"
}

defaultTasks 'build', 'publishToMavenLocal', 'install'

0 comments on commit b49398b

Please sign in to comment.