Skip to content

Commit

Permalink
Fixed gradle deprecated features
Browse files Browse the repository at this point in the history
  • Loading branch information
grzesiek2010 committed Oct 2, 2023
1 parent 203f37b commit 252054d
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -79,15 +79,14 @@ tasks.register('installLocal') {

if (!project.hasProperty("android")) {
jar {
baseName = 'javarosa'
// Be sure to update version in pom.xml to match
// snapshot release = x.x.x-SNAPSHOT
// production release = x.x.x
version = '4.3.0-SNAPSHOT'
archiveName = baseName + '-' + version + '.jar'
archiveVersion = '4.3.0-SNAPSHOT'
archiveBaseName = "javarosa"

manifest {
attributes 'Manifest-Version': "$jar.version"
attributes 'Manifest-Version': "$jar.archiveVersion"
}
}

Expand All @@ -98,7 +97,9 @@ if (!project.hasProperty("android")) {

jacocoTestReport {
reports {
xml.enabled true
xml {
enabled false
}
}
}

Expand Down

0 comments on commit 252054d

Please sign in to comment.