| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
This project is used to test the javaxt-core library, providing test coverage for various components and utilities.
The project consists of two main modules that work together to test the javaxt-core library:
mvn clean install# Build using a specific branch (e.g., 'dev')
mvn clean install -Djavaxt.core.branch=dev
# Build using a feature branch
mvn clean install -Djavaxt.core.branch=feat/54
# Build using a specific commit/tag
mvn clean install -Djavaxt.core.branch=v1.11.3# Build using local javaxt-core source directory
mvn clean install -Djavaxt.core.local.dir=/path/to/javaxt-core/src
# Example with Windows path (point to src directory)
mvn clean install -Djavaxt.core.local.dir=C:\path\to\javaxt-core\src
Note: The local directory should point to the source directory containing the javaxt-core Java files (typically the src directory), not necessarily a Maven project. The files will be copied and compiled directly in the test project.
mvn test# Run tests against a specific branch
mvn test -Djavaxt.core.branch=dev
# Run tests against a feature branch
mvn test -Djavaxt.core.branch=feat/54# Run tests against local javaxt-core source
mvn test -Djavaxt.core.local.dir=/path/to/javaxt-core/src
# Example with Windows path (point to src directory)
mvn test -Djavaxt.core.local.dir=C:\path\to\javaxt-core\srcA jar file is created during the "package" phase and can be used to interactively test javaxt-core features.
# Build jar file (See above for more options)
mvn clean package
# Execute tests via command line
java -jar dist/javaxt-core-test.jar -test ...When adding new tests:
| Back | FazBrowse Home | New Git URL |