maxs-logger-java is a Java utility for generating MAXS log files, supporting notification logging, attribute
validation, and file output in XML format.
- Log messages with different severity levels (
INFO,WARNING,ERROR, etc.) - Validate required and non-zero attributes
- Output notifications to
.maxsXML files - Integration with REXS model components
- Java 17
Add the dependency to your project:
<dependency>
<groupId>io.github.fva-net</groupId>
<artifactId>maxs-logger-java</artifactId>
<version><!-- use latest released version here --></version>
</dependency>- Java 17+
- Maven
- Clone the repository.
- Build with Maven:
mvn clean install
Import and use the MaxsLogger class to log messages
Run unit and integration tests with:
mvn test