Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
language: java

# Specify JDK versions to test against
jdk:
- openjdk11

# Cache Maven dependencies to speed up builds
cache:
directories:
- $HOME/.mvn/wrapper/

stages:
- name: Building
- name: Testing

jobs:
include:
- stage: Building
before_script:
- echo "Starting build process..."
script:
- mvn clean install
- stage: Testing
before_script:
- echo "Starting test process..."
script:
- mvn verify
after_failure:
- echo "Tests failed. Check the test results for details."
after_success:
- echo "Tests passed successfully."

# Enable notifications via email
notifications:
email:
recipients:
- [email protected]
on_success: always
on_failure: always