Compare commits

..

3 Commits
0.10 ... 0.11

Author SHA1 Message Date
Karl Tauber
267567d0a0 release 0.11 2019-10-08 13:31:08 +02:00
Karl Tauber
230bc28ddd changed Maven groupId to com.formdev and artifactId to flatlaf 2019-10-08 13:25:59 +02:00
Karl Tauber
57c9ffc2ba Demo: use com.formdev:svgSalamander:1.1.2.1 2019-10-08 10:11:11 +02:00
5 changed files with 16 additions and 11 deletions

View File

@@ -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

View File

@@ -20,22 +20,22 @@ Demo
----
Download
[flatlaf-demo-0.10.jar](https://download.formdev.com/flatlaf/flatlaf-demo-0.10.jar)
and run it with `java -jar flatlaf-demo-0.10.jar` (or double-click it). Requires
[flatlaf-demo-0.11.jar](https://download.formdev.com/flatlaf/flatlaf-demo-0.11.jar)
and run it with `java -jar flatlaf-demo-0.11.jar` (or double-click it). Requires
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
Version: 0.10
Group Id: com.formdev
Artifact Id: flatlaf
Version: 0.11
License

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
version = "0.10"
version = "0.11"
// check required Java version
if( JavaVersion.current() < JavaVersion.VERSION_1_8 )

View File

@@ -97,8 +97,8 @@ tasks {
publishing {
publications {
create<MavenPublication>( "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"

View File

@@ -28,7 +28,7 @@ dependencies {
implementation( project( ":flatlaf-core" ) )
implementation( "com.miglayout:miglayout-swing:5.2" )
implementation( "com.jgoodies:jgoodies-forms:1.9.0" )
implementation( "guru.nidi.com.kitfox:svgSalamander:1.1.2" )
implementation( "com.formdev:svgSalamander:1.1.2.1" )
}
java {