move additional build data in its own constants class

This commit is contained in:
Julian Krings
2025-09-20 17:25:20 +02:00
parent a7d874d37f
commit c998fd1fd9
5 changed files with 43 additions and 48 deletions
@@ -0,0 +1,7 @@
package com.volmit.iris;
// The constants are replaced before compilation
public interface BuildConstants {
String ENVIRONMENT = "${environment}";
String COMMIT = "${commit}";
}