Skip to content

Commit

Permalink
Merge pull request #23 from d4l-data4life/feature/prepare-release-1.2.0
Browse files Browse the repository at this point in the history
Prepare release 1.2.0
  • Loading branch information
wmontwe authored Jan 7, 2021
2 parents a4d8c75 + cf3b98c commit 9dbb016
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 10 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ toc::[]

=== Changed

* BREAKING module name changed from `hc-fhir-sdk-java` to `fhir-java`

=== Removed

=== Fixed
Expand All @@ -28,6 +26,14 @@ toc::[]

=== Migration

== https://github.com/d4l-data4life/hc-fhir-sdk-java/compare/v1.1.0...v1.2.0[1.2.0]

=== Changed

* BREAKING module name changed from `hc-fhir-sdk-java` to `fhir-java`

=== Migration

You need to update your Gradle dependency declaration from "care.data4life.hc-fhir-sdk-java:hc-fhir-sdk-java:{version}" to:

[source, gradle]
Expand Down
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:library_version: 1.1.0
:library_version: 1.2.0
:toc: macro
:toclevels: 2
:toc-title:
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/LibraryConfig.kt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ object LibraryConfig {
val publish = PublishConfig
object PublishConfig {
const val name = LibraryConfig.name
const val groupId = LibraryConfig.group
const val groupId = "${LibraryConfig.group}.${LibraryConfig.name}"
const val description = "Minimal FHIR 3 + 4 standard models and data types for Android and Java."
const val year = "2020"

Expand Down
6 changes: 2 additions & 4 deletions buildSrc/src/main/kotlin/scripts/publishing-config.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ plugins {
`maven-publish`
}

group = ProjectConfig.library.group

tasks.named<JacocoReport>("jacocoTestReport") {
reports {
xml.isEnabled = true
Expand Down Expand Up @@ -76,8 +74,8 @@ publishing {
}

publications {
create<MavenPublication>("mavenJava") {
groupId = "${ProjectConfig.library.publish.groupId}.${ProjectConfig.library.publish.name}"
withType<MavenPublication> {
groupId = ProjectConfig.library.publish.groupId

from(components["java"])
artifact(tasks["sourcesJar"])
Expand Down
2 changes: 0 additions & 2 deletions buildSrc/src/main/kotlin/scripts/publishing.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ package scripts
import org.gradle.api.tasks.Exec

plugins {
"maven-publish"

id("care.data4life.git-publish")
}

Expand Down
2 changes: 2 additions & 0 deletions fhir-java/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ plugins {
id("scripts.publishing-config")
}

group = ProjectConfig.library.group

java {
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7
Expand Down

0 comments on commit 9dbb016

Please sign in to comment.