mirror of
https://github.com/JFormDesigner/FlatLaf.git
synced 2025-12-06 22:10:54 +03:00
JIDE: README.md added and publishing added to build.gradle.kts
This commit is contained in:
@@ -9,6 +9,7 @@ FlatLaf Change Log
|
|||||||
and is no longer interrupted by the scroll buttons.
|
and is no longer interrupted by the scroll buttons.
|
||||||
- TabbedPane: Content pane is no longer opaque. Use antialiasing for painting
|
- TabbedPane: Content pane is no longer opaque. Use antialiasing for painting
|
||||||
separator and content border.
|
separator and content border.
|
||||||
|
- JIDE Common Layer: Support `JideTabbedPane`.
|
||||||
|
|
||||||
|
|
||||||
## 0.17
|
## 0.17
|
||||||
|
|||||||
21
flatlaf-jide-oss/README.md
Normal file
21
flatlaf-jide-oss/README.md
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
FlatLaf addon for JIDE Common Layer
|
||||||
|
===================================
|
||||||
|
|
||||||
|
This addon for FlatLaf adds support for **some**
|
||||||
|
[JIDE Common Layer](https://github.com/jidesoft/jide-oss) components.
|
||||||
|
|
||||||
|
Following JIDE Common Layer components are currently supported by this addon:
|
||||||
|
|
||||||
|
- `JideTabbedPane`
|
||||||
|
|
||||||
|
|
||||||
|
**Note**: We have currently no plans to support additional components. If you're
|
||||||
|
a paid customer of JFormDesigner and need support for other components, email to
|
||||||
|
JFormDesigner support and ask for it. Otherwise, try to implement it yourself
|
||||||
|
and create a pull request.
|
||||||
|
|
||||||
|
|
||||||
|
Download
|
||||||
|
--------
|
||||||
|
|
||||||
|
Not yet available.
|
||||||
@@ -18,6 +18,8 @@ version = rootProject.version
|
|||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
`java-library`
|
`java-library`
|
||||||
|
`maven-publish`
|
||||||
|
id( "com.jfrog.bintray" ) version "1.8.4"
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
@@ -29,3 +31,91 @@ java {
|
|||||||
sourceCompatibility = JavaVersion.VERSION_1_8
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
||||||
targetCompatibility = JavaVersion.VERSION_1_8
|
targetCompatibility = JavaVersion.VERSION_1_8
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tasks {
|
||||||
|
assemble {
|
||||||
|
dependsOn(
|
||||||
|
"sourcesJar",
|
||||||
|
"javadocJar"
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
javadoc {
|
||||||
|
options {
|
||||||
|
this as StandardJavadocDocletOptions
|
||||||
|
tags = listOf( "uiDefault", "clientProperty" )
|
||||||
|
}
|
||||||
|
isFailOnError = false
|
||||||
|
}
|
||||||
|
|
||||||
|
register( "sourcesJar", Jar::class ) {
|
||||||
|
archiveClassifier.set( "sources" )
|
||||||
|
|
||||||
|
from( sourceSets.main.get().allJava )
|
||||||
|
}
|
||||||
|
|
||||||
|
register( "javadocJar", Jar::class ) {
|
||||||
|
archiveClassifier.set( "javadoc" )
|
||||||
|
|
||||||
|
from( javadoc )
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
publishing {
|
||||||
|
publications {
|
||||||
|
create<MavenPublication>( "maven" ) {
|
||||||
|
artifactId = "flatlaf-jide-oss"
|
||||||
|
groupId = "com.formdev"
|
||||||
|
|
||||||
|
from( components["java"] )
|
||||||
|
|
||||||
|
artifact( tasks["sourcesJar"] )
|
||||||
|
artifact( tasks["javadocJar"] )
|
||||||
|
|
||||||
|
pom {
|
||||||
|
name.set( "FlatLaf addon for JIDE Common Layer" )
|
||||||
|
description.set( "Flat Look and Feel addon for JIDE Common Layer" )
|
||||||
|
url.set( "https://github.com/JFormDesigner/FlatLaf" )
|
||||||
|
|
||||||
|
licenses {
|
||||||
|
license {
|
||||||
|
name.set( "The Apache License, Version 2.0" )
|
||||||
|
url.set( "http://www.apache.org/licenses/LICENSE-2.0.txt" )
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
developers {
|
||||||
|
developer {
|
||||||
|
name.set( "Karl Tauber" )
|
||||||
|
organization.set( "FormDev Software GmbH" )
|
||||||
|
organizationUrl.set( "https://www.formdev.com/" )
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
scm {
|
||||||
|
url.set( "https://github.com/JFormDesigner/FlatLaf" )
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bintray {
|
||||||
|
user = System.getenv( "BINTRAY_USER" ) ?: System.getProperty( "bintray.user" )
|
||||||
|
key = System.getenv( "BINTRAY_KEY" ) ?: System.getProperty( "bintray.key" )
|
||||||
|
|
||||||
|
setPublications( "maven" )
|
||||||
|
|
||||||
|
with( pkg ) {
|
||||||
|
repo = "flatlaf"
|
||||||
|
name = "flatlaf-jide-oss"
|
||||||
|
setLicenses( "Apache-2.0" )
|
||||||
|
vcsUrl = "https://github.com/JFormDesigner/FlatLaf"
|
||||||
|
|
||||||
|
with( version ) {
|
||||||
|
name = project.version.toString()
|
||||||
|
}
|
||||||
|
|
||||||
|
publish = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ This addon for FlatLaf adds support for **some** widely used SwingX components.
|
|||||||
Many SwingX components that do not use UI delegates (e.g. `JXButton`, `JXLabel`,
|
Many SwingX components that do not use UI delegates (e.g. `JXButton`, `JXLabel`,
|
||||||
`JXList`, etc) work with FlatLaf without adaptation.
|
`JXList`, etc) work with FlatLaf without adaptation.
|
||||||
|
|
||||||
Following SwingX components, which use UI delegates, are supported by this
|
Following SwingX components, which use UI delegates, are currently supported by
|
||||||
addon:
|
this addon:
|
||||||
|
|
||||||
- `JXBusyLabel`
|
- `JXBusyLabel`
|
||||||
- `JXDatePicker`
|
- `JXDatePicker`
|
||||||
|
|||||||
Reference in New Issue
Block a user