Skip to content

Commit

Permalink
pom for version 1.6.9 of SwingSet3-demos
Browse files Browse the repository at this point in the history
to compile & install: change in JXFrameTest
  • Loading branch information
homebeaver committed Jun 29, 2022
1 parent a7f4692 commit e3097ac
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
18 changes: 9 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<name>swingset3 demos</name>
<description>Demonstrating the abilities of the Swing UI Toolkit swingset2 + swingset3</description>
<version>1.6.9-SNAPSHOT</version>
<version>1.6.9</version>

<inceptionYear>2005</inceptionYear>

Expand Down Expand Up @@ -176,7 +176,7 @@ Unable to find javadoc command: The environment variable JAVA_HOME is not correc
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.12</version>
<version>1.6.13</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
Expand Down Expand Up @@ -239,37 +239,37 @@ Unable to find javadoc command: The environment variable JAVA_HOME is not correc
<dependency>
<groupId>io.github.homebeaver</groupId>
<artifactId>swingx-core</artifactId>
<version>1.6.9-SNAPSHOT</version>
<version>1.6.9</version>
</dependency>
<dependency>
<groupId>io.github.homebeaver</groupId>
<artifactId>swingx-action</artifactId>
<version>1.6.9-SNAPSHOT</version>
<version>1.6.9</version>
</dependency>
<dependency>
<groupId>io.github.homebeaver</groupId>
<artifactId>swingx-autocomplete</artifactId>
<version>1.6.9-SNAPSHOT</version>
<version>1.6.9</version>
</dependency>
<dependency>
<groupId>io.github.homebeaver</groupId>
<artifactId>swingx-plaf</artifactId>
<version>1.6.9-SNAPSHOT</version>
<version>1.6.9</version>
</dependency>
<dependency>
<groupId>io.github.homebeaver</groupId>
<artifactId>swingx-painters</artifactId>
<version>1.6.9-SNAPSHOT</version>
<version>1.6.9</version>
</dependency>
<dependency>
<groupId>io.github.homebeaver</groupId>
<artifactId>swingx-common</artifactId>
<version>1.6.9-SNAPSHOT</version>
<version>1.6.9</version>
</dependency>
<dependency>
<groupId>io.github.homebeaver</groupId>
<artifactId>swingx-testsupport</artifactId>
<version>1.6.9-SNAPSHOT</version>
<version>1.6.9</version>
<scope>provided</scope>
</dependency>

Expand Down
5 changes: 4 additions & 1 deletion src/test/java/com/klst/swingx/JXFrameTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

import org.jdesktop.swingx.JXStatusBar;

import io.github.homebeaver.swingset.demo.DemoJXFrame;
import io.github.homebeaver.swingset.demo.MainJXframe;

public class JXFrameTest {

public static void main(String args[]) {
Expand Down Expand Up @@ -36,7 +39,7 @@ public static void main(String args[]) {
* - closing other WindowFrame closes only this window
*/
public void interactiveMultipleFrames() {
WindowFrame gossip = RootFrame.getInstance(); // RootFrame contains a simple frame manager
DemoJXFrame gossip = MainJXframe.getInstance();; // RootFrame contains a simple frame manager
@SuppressWarnings("unused")
JXStatusBar statusBar = gossip.getStatusBar(); // just to paint it

Expand Down

0 comments on commit e3097ac

Please sign in to comment.