Skip to content

Commit

Permalink
Merge pull request #21 from ortus-boxlang/development
Browse files Browse the repository at this point in the history
1.0.0-Beta18
  • Loading branch information
lmajano authored Oct 11, 2024
2 parents fa913b4 + 958c4b1 commit 858ac38
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#Fri Sep 27 20:20:29 UTC 2024
boxlangVersion=1.0.0-beta17
#Fri Oct 04 19:25:39 UTC 2024
boxlangVersion=1.0.0-beta18
jdkVersion=21
version=1.0.0-beta17
version=1.0.0-beta18
group=ortus.boxlang
5 changes: 5 additions & 0 deletions src/main/java/ortus/boxlang/servlet/BoxLangServlet.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@

import ortus.boxlang.runtime.BoxRuntime;
import ortus.boxlang.runtime.scopes.Key;
import ortus.boxlang.runtime.types.IStruct;
import ortus.boxlang.web.WebRequestExecutor;
import ortus.boxlang.web.exchange.BoxHTTPServletExchange;

Expand Down Expand Up @@ -89,6 +90,10 @@ public void init( ServletConfig config ) throws ServletException {
this.runtime.getInterceptorService().register( new ServletMappingInterceptor( config.getServletContext() ) );

System.out.println( "Ortus BoxLang Servlet initialized!" );
IStruct versionInfo = runtime.getVersionInfo();
System.out.println(
"Ortus BoxLang Version: " + versionInfo.getAsString( Key.of( "version" ) ) + " (Built On: " + versionInfo.getAsString( Key.of( "buildDate" ) )
+ ")" );
}

/**
Expand Down

0 comments on commit 858ac38

Please sign in to comment.