-
Notifications
You must be signed in to change notification settings - Fork 26
Migration to Gradle (new) #100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Replaces the Ant-based build system with Gradle for improved dependency management, build automation, and extensibility. This change introduces Gradle build scripts for all subprojects, including configuration for code compilation, testing, JAR creation, and distribution. It also adds wrapper files and associated configurations to simplify build execution. The migration facilitates a more modern and maintainable build process, aligning with industry best practices and enabling future enhancements. Signed-off-by: Nico Piel <nicopiel@mailbox.org>
Signed-off-by: Nico Piel <nicopiel@mailbox.org>
Signed-off-by: Nico Piel <nicopiel@mailbox.org>
Signed-off-by: Nico Piel <nicopiel@mailbox.org>
Signed-off-by: Nico Piel <nicopiel@mailbox.org>
Signed-off-by: Nico Piel <nicopiel@mailbox.org>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me
I'm curious what the diff would be between the official mirth 4.5.2 distribution and the result of this gradle build. I'll see if I can find some time to experiment this weekend.
Replaces the Ant-based build system with Gradle for improved dependency management, build automation, and extensibility. This change introduces Gradle build scripts for all subprojects, including configuration for code compilation, testing, JAR creation, and distribution. It also adds wrapper files and associated configurations to simplify build execution. The migration facilitates a more modern and maintainable build process, aligning with industry best practices and enabling future enhancements. Signed-off-by: Nico Piel <nicopiel@mailbox.org>
Signed-off-by: Nico Piel <nicopiel@mailbox.org>
Signed-off-by: Nico Piel <nicopiel@mailbox.org>
Signed-off-by: Nico Piel <nicopiel@mailbox.org>
Signed-off-by: Nico Piel <nicopiel@mailbox.org>
Signed-off-by: Nico Piel <nicopiel@mailbox.org>
Signed-off-by: Nico Piel <nicopiel@mailbox.org>
Signed-off-by: Nico Piel <nicopiel@mailbox.org>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I left some trivial comments on project files and on the generated Java source files from Gradle.
I will need to do some builds and think about how to test that Gradle is producing a correct OIE build.
Signed-off-by: Nico Piel <nico.piel@hotmail.de>
Signed-off-by: Nico Piel <nicopiel@mailbox.org>
Signed-off-by: Nico Piel <nicopiel@mailbox.org>
Excluded Donkey tests Signed-off-by: Nico Piel <nicopiel@mailbox.org>
Signed-off-by: Nico Piel <nicopiel@mailbox.org>
Doing it the other way around now Signed-off-by: Nico Piel <nicopiel@mailbox.org>
Second attempt at a migration from Ant to Gradle. Compiles and start successfully.
Use
./gradlew dist -x test
(Donkey tests still fail)Fixes #52