Skip to content

Commit

Permalink
Merge pull request #28 from ortus-boxlang/development
Browse files Browse the repository at this point in the history
1.0.0-Beta25
  • Loading branch information
lmajano authored Dec 13, 2024
2 parents 3ce0174 + 6b721f2 commit 458e6da
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 5 deletions.
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: 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

0 comments on commit 458e6da

Please sign in to comment.