From 5f18376ce828ce2ce7565ada3531c1ba3ad8130d Mon Sep 17 00:00:00 2001 From: Tobias Manske Date: Tue, 23 Feb 2021 13:39:33 +0100 Subject: [PATCH] Fix grammar IJ post --- content/posts/2021-02-23-maven-ij-designer.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/posts/2021-02-23-maven-ij-designer.md b/content/posts/2021-02-23-maven-ij-designer.md index 637197b..3cac5b3 100644 --- a/content/posts/2021-02-23-maven-ij-designer.md +++ b/content/posts/2021-02-23-maven-ij-designer.md @@ -15,10 +15,10 @@ showTOC: false In 2021 I worked in a small team of students on an old fashioned Java swing application. To design our forms rather fast, we chose to opt for the IJ-GUI designer. -That was a rather annoying mistake, trying to package that thing just hours before the deadline. -We then opted to just let IntelliJ compile the .forms into .java directly, which then cluttered our version control. +That turned out to be a rather annoying mistake, trying to package the Software just hours before the deadline.We were unable to come up with a solution to compile the forms on our build server in that short time. +So, we then opted to just let IntelliJ compile the .forms into .java directly, which then cluttered our version control. -So today I present you a minimal `pom.xml` compiling forms on the fly. A complete minimal working example can be found on my private git: [git.tobiasmanske.de](https://git.tobiasmanske.de/user/rad4day/public/intellij-forms-maven-example/tree/) +Today I present you the fix: A minimal `pom.xml` compiling forms on the fly. A complete minimal working example can be found on my private git: [git.tobiasmanske.de](https://git.tobiasmanske.de/user/rad4day/public/intellij-forms-maven-example/tree/) ```xml