Configure Mend for GitHub Enterprise #18
Open
Travis CI / Travis CI - Branch
succeeded
Sep 17, 2025 in 2m 18s
Build Passed
The build passed.
Details
This is a normal build for the whitesource/configure branch. You should be able to reproduce it by checking out the branch locally.
Jobs and Stages
This build has three jobs, running in parallel.
Stage 1: Build-Test
This stage passed.
| Job | JDK | ENV | OS | State |
|---|---|---|---|---|
| openjdk11 | MVN_ARGS="--settings ./build/.travis.settings.xml" | Linux | passed | |
| openjdk11 | MVN_ARGS="--settings ./build/.travis.settings.xml" | Linux | passed | |
| openjdk17 | MVN_ARGS="--settings ./build/.travis.settings.xml" | Linux | passed |
Build Configuration
| Build Option | Setting |
|---|---|
| Language | Java |
| Operating System | Linux (Bionic) |
| JDK Version | openjdk11 |
Build Configuration
{
"language": "java",
"os": [
"linux"
],
"dist": "bionic",
"jdk": [
"openjdk11"
],
"notifications": {
"email": [
{
"enabled": true
}
]
},
"branches": {
"except": [
"gh-pages"
]
},
"cache": {
"directories": [
"$HOME/.m2"
]
},
"env": [
"global={:MVN_ARGS=>\"\\\"--settings ./build/.travis.settings.xml\\\"\"}"
],
"stages": [
{
"name": "Build-Test"
},
{
"name": "Semantic-Release",
"if": "branch = main AND type = push AND fork = false"
},
{
"name": "Publish-Release",
"if": "tag IS present"
}
],
"before_install": [
"sudo apt-get update",
"env | grep TRAVIS",
"pyenv global 3.8"
],
"jobs": {
"include": [
{
"stage": "Build-Test",
"jdk": "openjdk11",
"install": [
"true"
],
"script": [
"build/setMavenVersion.sh",
"mvn verify -fae -DskipITs $MVN_ARGS"
]
},
{
"jdk": "openjdk11",
"install": [
"true"
],
"script": [
"mvn verify -fae -DskipITs $MVN_ARGS"
]
},
{
"jdk": "openjdk17",
"install": [
"true"
],
"script": [
"mvn verify -fae -DskipITs $MVN_ARGS"
]
},
{
"stage": "Publish-Release",
"jdk": "openjdk11",
"name": "Publish-Javadoc",
"install": [
"true"
],
"if": "tag IS present",
"script": [
"build/setMavenVersion.sh",
"mvn clean javadoc:aggregate $MVN_ARGS",
"build/publishJavadoc.sh"
],
"after_success": [
"echo \"Javadocs successfully published to gh-pages!\""
]
}
]
}
}
Loading