Skip to content

Add renovate.json

e3fddf2
Select commit
Loading
Failed to load commit list.
Open

chore: Configure Renovate #17

Add renovate.json
e3fddf2
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded May 8, 2025 in 2m 9s

Build Passed

The build passed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #17 chore: Configure Renovate.
Any changes that have been made to the main branch before the build ran are also included.

Jobs and Stages

This build has three jobs, running in parallel.

Stage 1: Build-Test

This stage passed.

Job JDK ENV OS State
138.1 openjdk11 MVN_ARGS="--settings ./build/.travis.settings.xml" Linux passed
138.2 openjdk11 MVN_ARGS="--settings ./build/.travis.settings.xml" Linux passed
138.3 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!\""
        ]
      }
    ]
  }
}