Skip to content

Commit

Permalink
[Java] Use type safe Java version in build script.
Browse files Browse the repository at this point in the history
  • Loading branch information
mjpt777 committed Mar 20, 2019
1 parent 65b477e commit 15be6dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Expand Up @@ -30,7 +30,7 @@ defaultTasks 'clean', 'build', 'shadowJar', 'install'

def agronaGroup = 'org.agrona'
def agronaVersion = '0.9.35-SNAPSHOT'
def agronaJavaVersion = '1.8'
def agronaJavaVersion = JavaVersion.VERSION_1_8

group = agronaGroup
version = agronaVersion
Expand Down Expand Up @@ -113,7 +113,7 @@ subprojects {
apply plugin: 'signing'
apply plugin: 'eclipse'
apply plugin: 'io.freefair.javadoc-links'

group = agronaGroup
version = agronaVersion

Expand Down Expand Up @@ -295,7 +295,7 @@ project(':agrona-agent') {
'Can-Retransform-Classes': 'true',
'Automatic-Module-Name': 'org.agrona.agent.all'
)

relocate 'net.bytebuddy', 'org.agrona.shadow.net.bytebuddy'
}

Expand Down

0 comments on commit 15be6dc

Please sign in to comment.