diff --git a/CHANGELOG.md b/CHANGELOG.md index bd890714..84186bcc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ FlatLaf Change Log ================== +## 0.11 + +- Changed Maven groupId to `com.formdev` and artifactId to `flatlaf`. + + ## 0.10 - Use new chevron arrows in "Flat Light" and "Flat Dark" themes, but keep diff --git a/README.md b/README.md index df36347e..960915e9 100644 --- a/README.md +++ b/README.md @@ -28,13 +28,13 @@ Java 8 or newer. Download -------- -[ ![Download](https://api.bintray.com/packages/jformdesigner/flatlaf/flatlaf-core/images/download.svg) ](https://bintray.com/jformdesigner/flatlaf/flatlaf-core/_latestVersion) +[ ![Download](https://api.bintray.com/packages/jformdesigner/flatlaf/flatlaf/images/download.svg) ](https://bintray.com/jformdesigner/flatlaf/flatlaf/_latestVersion) For Maven or Gradle use: Repository: jcenter (https://jcenter.bintray.com/) - Group Id: com.formdev.flatlaf - Artifact Id: flatlaf-core + Group Id: com.formdev + Artifact Id: flatlaf Version: 0.10 diff --git a/flatlaf-core/build.gradle.kts b/flatlaf-core/build.gradle.kts index 53e23944..048a81c3 100644 --- a/flatlaf-core/build.gradle.kts +++ b/flatlaf-core/build.gradle.kts @@ -97,8 +97,8 @@ tasks { publishing { publications { create( "maven" ) { - artifactId = "flatlaf-core" - groupId = "com.formdev.flatlaf" + artifactId = "flatlaf" + groupId = "com.formdev" from( components["java"] ) @@ -133,7 +133,7 @@ bintray { with( pkg ) { repo = "flatlaf" - name = "flatlaf-core" + name = "flatlaf" setLicenses( "Apache-2.0" ) vcsUrl = "https://github.com/JFormDesigner/FlatLaf"