Skip to content

Commit

Permalink
released 11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tbee committed Oct 8, 2023
1 parent 59eb209 commit 4d12448
Show file tree
Hide file tree
Showing 10 changed files with 32 additions and 15 deletions.
4 changes: 2 additions & 2 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
<parent>
<groupId>com.miglayout</groupId>
<artifactId>miglayout-parent</artifactId>
<version>11.2-SNAPSHOT</version>
<version>11.2</version>
</parent>
<artifactId>miglayout-core</artifactId>
<name>MiGLayout Core</name>
<description>MiGLayout - core layout logic</description>

<url>http://www.miglayout.com/</url>
</project>
3 changes: 2 additions & 1 deletion demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@
<parent>
<groupId>com.miglayout</groupId>
<artifactId>miglayout-parent</artifactId>
<version>11.2-SNAPSHOT</version>
<version>11.2</version>
</parent>
<artifactId>miglayout-demo</artifactId>
<name>MiGLayout Demo</name>
<description>MiGLayout - Demo's for Swing and SWT</description>
<url>http://www.miglayout.com/</url>

<dependencies>
<dependency>
Expand Down
3 changes: 2 additions & 1 deletion examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@
<parent>
<groupId>com.miglayout</groupId>
<artifactId>miglayout-parent</artifactId>
<version>11.2-SNAPSHOT</version>
<version>11.2</version>
</parent>
<artifactId>miglayout-examples</artifactId>
<name>MiGLayout Examples</name>
<description>MiGLayout - Examples for Swing and SWT</description>
<url>http://www.miglayout.com/</url>

<dependencies>
<dependency>
Expand Down
3 changes: 2 additions & 1 deletion ideutil/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@
<parent>
<groupId>com.miglayout</groupId>
<artifactId>miglayout-parent</artifactId>
<version>11.2-SNAPSHOT</version>
<version>11.2</version>
</parent>
<artifactId>miglayout-ideutil</artifactId>
<name>MiGLayout IDEUtil</name>
<description>MiGLayout - IDEUtil class for EDI integration</description>
<url>http://www.miglayout.com/</url>

<dependencies>
<dependency>
Expand Down
3 changes: 2 additions & 1 deletion javafx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@
<parent>
<groupId>com.miglayout</groupId>
<artifactId>miglayout-parent</artifactId>
<version>11.2-SNAPSHOT</version>
<version>11.2</version>
</parent>
<artifactId>miglayout-javafx</artifactId>
<name>MiGLayout JavaFX</name>
<description>MiGLayout - Layout Manager for JavaFX</description>
<url>http://www.miglayout.com/</url>

<properties>
<maven.compiler.target>11</maven.compiler.target>
Expand Down
4 changes: 3 additions & 1 deletion nbm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@
<parent>
<groupId>com.miglayout</groupId>
<artifactId>miglayout-parent</artifactId>
<version>11.2-SNAPSHOT</version>
<version>11.2</version>
</parent>

<artifactId>lib-miglayout-NB90</artifactId>
<packaging>nbm</packaging>

<name>MiGLayout NetBeans platform library wrapper</name>
<description>MiGLayout NetBeans platform library wrapper</description>
<url>http://www.miglayout.com/</url>

<dependencies>
<dependency>
Expand Down
12 changes: 7 additions & 5 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.2-SNAPSHOT</version>
<version>11.2</version>
<packaging>pom</packaging>
<name>MiGLayout</name>
<description>MiGLayout - Java Layout Manager for Swing, SWT and JavaFX</description>
Expand All @@ -33,6 +33,7 @@
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.release>${java.version}</maven.compiler.release>
<error-prone.version>2.19.1</error-prone.version>
<!-- <altDeploymentRepository>local::file:./target/staging-deploy</altDeploymentRepository>-->
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -111,7 +112,6 @@
</distributionManagement>

<build>

<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down Expand Up @@ -222,6 +222,7 @@
</execution>
</executions>
</plugin>

<!-- include a javadoc jar -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down Expand Up @@ -274,7 +275,8 @@
<plugin>
<groupId>org.jreleaser</groupId>
<artifactId>jreleaser-maven-plugin</artifactId>
<version>1.5.1</version>
<version>1.8.0</version>
<!-- <inherited>false</inherited>-->
<configuration>
<jreleaser>
<signing>
Expand All @@ -293,8 +295,8 @@
<active>ALWAYS</active>
<snapshotUrl>https://oss.sonatype.org/content/repositories/snapshots</snapshotUrl>
<url>https://oss.sonatype.org/service/local</url>
<closeRepository>true</closeRepository>
<releaseRepository>true</releaseRepository>
<closeRepository>false</closeRepository> <!-- false, see release.txt -->
<releaseRepository>false</releaseRepository> <!-- false, see release.txt -->
<stagingRepositories>target/staging-deploy</stagingRepositories>
</maven-central>
</nexus2>
Expand Down
9 changes: 8 additions & 1 deletion release.txt
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
mvnw clean deploy jreleaser:full-release -DaltDeploymentRepository=local::file:./target/staging-deploy
JRelease does not work in Maven multimodule project: it creates many repo's (one for each module).

Releasing:
- mvnw clean deploy jreleaser:full-release -DaltDeploymentRepository=local::file:./target/staging-deploy
requires certificates in ~/.jreleaser/config.toml
- goto https://oss.sonatype.org
- find the latest repo, check the contents, close and release manually
- drop the other repos
3 changes: 2 additions & 1 deletion swing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@
<parent>
<groupId>com.miglayout</groupId>
<artifactId>miglayout-parent</artifactId>
<version>11.2-SNAPSHOT</version>
<version>11.2</version>
</parent>
<artifactId>miglayout-swing</artifactId>
<name>MiGLayout Swing</name>
<description>MiGLayout - Java Layout Manager for Swing</description>
<url>http://www.miglayout.com/</url>

<dependencies>
<dependency>
Expand Down
3 changes: 2 additions & 1 deletion swt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@
<parent>
<groupId>com.miglayout</groupId>
<artifactId>miglayout-parent</artifactId>
<version>11.2-SNAPSHOT</version>
<version>11.2</version>
</parent>
<artifactId>miglayout-swt</artifactId>
<name>MiGLayout SWT</name>
<description>MiGLayout - Java Layout Manager for SWT</description>
<url>http://www.miglayout.com/</url>

<dependencies>
<dependency>
Expand Down

0 comments on commit 4d12448

Please sign in to comment.