Skip to content

Commit

Permalink
v11.4
Browse files Browse the repository at this point in the history
  • Loading branch information
tbee committed Jul 4, 2024
1 parent d6ac211 commit 06b7ba1
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 31 deletions.
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.miglayout</groupId>
<artifactId>miglayout-parent</artifactId>
<version>11.3</version>
<version>11.4</version>
</parent>
<artifactId>miglayout-core</artifactId>
<name>MiGLayout Core</name>
Expand Down
2 changes: 1 addition & 1 deletion demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.miglayout</groupId>
<artifactId>miglayout-parent</artifactId>
<version>11.3</version>
<version>11.4</version>
</parent>
<artifactId>miglayout-demo</artifactId>
<name>MiGLayout Demo</name>
Expand Down
2 changes: 1 addition & 1 deletion examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.miglayout</groupId>
<artifactId>miglayout-parent</artifactId>
<version>11.3</version>
<version>11.4</version>
</parent>
<artifactId>miglayout-examples</artifactId>
<name>MiGLayout Examples</name>
Expand Down
32 changes: 10 additions & 22 deletions javafx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.miglayout</groupId>
<artifactId>miglayout-parent</artifactId>
<version>11.3</version>
<version>11.4</version>
</parent>
<artifactId>miglayout-javafx</artifactId>
<name>MiGLayout JavaFX</name>
Expand All @@ -15,23 +15,9 @@
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.release>11</maven.compiler.release>
<testfx.version>4.0.18</testfx.version>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.testfx</groupId>
<artifactId>testfx-core</artifactId>
<version>4.0.15-alpha</version>
</dependency>
<dependency>
<groupId>org.testfx</groupId>
<artifactId>testfx-junit</artifactId>
<version>4.0.15-alpha</version>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
Expand Down Expand Up @@ -59,16 +45,18 @@
<scope>provided</scope>
</dependency>

<dependency>
<dependency>
<groupId>org.testfx</groupId>
<artifactId>testfx-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<version>${testfx.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testfx</groupId>
<artifactId>testfx-junit</artifactId>
<scope>test</scope>
</dependency>
<version>${testfx.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down
2 changes: 1 addition & 1 deletion nbm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.miglayout</groupId>
<artifactId>miglayout-parent</artifactId>
<version>11.3</version>
<version>11.4</version>
</parent>

<artifactId>lib-miglayout-NB90</artifactId>
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</parent>
<groupId>com.miglayout</groupId>
<artifactId>miglayout-parent</artifactId>
<version>11.3</version>
<version>11.4</version>
<packaging>pom</packaging>
<name>MiGLayout</name>
<description>MiGLayout - Java Layout Manager for Swing, SWT and JavaFX</description>
Expand Down Expand Up @@ -116,7 +116,7 @@
<debuglevel>lines,vars</debuglevel>
<compilerArgs>
<arg>-XDcompilePolicy=simple</arg>
<arg>-Werror</arg>
<!-- <arg>-Werror</arg>-->
<arg>-Xlint:all</arg>
<arg>-Xplugin:ErrorProne \
-Xep:StringCaseLocaleUsage:ERROR
Expand Down Expand Up @@ -269,7 +269,7 @@
<plugin>
<groupId>org.jreleaser</groupId>
<artifactId>jreleaser-maven-plugin</artifactId>
<version>1.8.0</version>
<version>1.13.1</version>
<configuration>
<jreleaser>
<signing>
Expand Down
2 changes: 1 addition & 1 deletion swing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.miglayout</groupId>
<artifactId>miglayout-parent</artifactId>
<version>11.3</version>
<version>11.4</version>
</parent>
<artifactId>miglayout-swing</artifactId>
<name>MiGLayout Swing</name>
Expand Down
2 changes: 1 addition & 1 deletion swt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.miglayout</groupId>
<artifactId>miglayout-parent</artifactId>
<version>11.3</version>
<version>11.4</version>
</parent>
<artifactId>miglayout-swt</artifactId>
<name>MiGLayout SWT</name>
Expand Down

0 comments on commit 06b7ba1

Please sign in to comment.