Skip to content
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

1.0.0-Beta25 #28

Merged
merged 3 commits into from
Dec 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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
Expand Down
6 changes: 5 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -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
Loading