Skip to content

Commit

Permalink
Updates to build.gradle for version 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
shifteverywhere committed Nov 23, 2021
1 parent b9de29c commit a022ca4
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,32 @@
// Copyright © 2021 Shift Everywhere AB. All rights reserved.
//
plugins {
id 'java'
id 'java-library'
}

group 'io.dimeformat'
version '1.0.0-SNAPSHOT'
version '1.0.0'

repositories {
mavenCentral()
}

dependencies {
implementation 'com.goterl:lazysodium-java:5.1.1'
implementation 'net.java.dev.jna:jna:5.10.0'
implementation 'org.json:json:20210307'
api 'com.goterl:lazysodium-java:5.1.1'
api 'net.java.dev.jna:jna:5.10.0'
api 'org.json:json:20210307'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
}

test {
useJUnitPlatform()
}
}

tasks.named('jar') {
manifest {
attributes('Implementation-Title': project.name,
'Implementation-Version': project.version)
}
}

0 comments on commit a022ca4

Please sign in to comment.