diff --git a/build.gradle b/build.gradle index f6820f8..8c925d1 100644 --- a/build.gradle +++ b/build.gradle @@ -358,8 +358,8 @@ task packageWar( type: War ){ println "+ War created in the distributions folder" } } -task buildRuntime( type: Copy ){ - dependsOn( packageWar ) +task buildRuntime( type: Copy, dependsOn: packageWar ){ + finalizedBy( "zipEngine" ) from( 'build/distributions' ) { include "${project.name}-${version}.war" include "box.json" @@ -380,6 +380,18 @@ task buildRuntime( type: Copy ){ } } +/** + * ZIp up a test server + */ +task zipEngine( type: Zip ) { + archiveFileName = "boxlang-servlet-${version}.zip" + destinationDirectory = file( "build/distributions" ) + from( "build/forgebox" ) { + include "box.json" + include "*.war" + } +} + /** * TEMPORARY until we publish to maven * Task to download the latest jar from https://ortus-temp.s3.amazonaws.com/jericho/libs/boxlang-1.0.0-all.jar diff --git a/changelog.md b/changelog.md index 04ff806..03a8a18 100644 --- a/changelog.md +++ b/changelog.md @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.0-beta24] - 2024-12-02 + ## [1.0.0-beta23] - 2024-11-23 ## [1.0.0-beta22] - 2024-11-15 @@ -57,7 +59,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - First iteration of this runtime -[Unreleased]: https://github.com/ortus-boxlang/boxlang-servlet/compare/v1.0.0-beta23...HEAD +[Unreleased]: https://github.com/ortus-boxlang/boxlang-servlet/compare/v1.0.0-beta24...HEAD + +[1.0.0-beta24]: https://github.com/ortus-boxlang/boxlang-servlet/compare/v1.0.0-beta23...v1.0.0-beta24 [1.0.0-beta23]: https://github.com/ortus-boxlang/boxlang-servlet/compare/v1.0.0-beta22...v1.0.0-beta23 diff --git a/gradle.properties b/gradle.properties index fadb91c..38a1691 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ -#Sat Nov 23 12:55:59 UTC 2024 -boxlangVersion=1.0.0-beta24 +#Mon Dec 02 11:44:52 UTC 2024 +boxlangVersion=1.0.0-beta25 jdkVersion=21 -version=1.0.0-beta24 +version=1.0.0-beta25 group=ortus.boxlang