Skip to content

chore(deps): update dependency org.apache.maven.plugins:maven-source-…

df72d09
Select commit
Loading
Failed to load commit list.
Open

chore(deps): update dependency org.apache.maven.plugins:maven-source-plugin to v3.4.0 #167

chore(deps): update dependency org.apache.maven.plugins:maven-source-…
df72d09
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded Nov 29, 2025 in 7m 59s

Build Passed

The build passed, just like the previous build.

Details

This is a normal build for the renovate/maven-source-plugin-version branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.

Build Configuration

Build Option Setting
Language Java
Operating System Linux (Focal)
JDK Version openjdk11
Build Configuration
{
  "language": "java",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "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 = master 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",
    "[ \"${TRAVIS_PULL_REQUEST}\" == \"false\" ] && openssl aes-256-cbc -K $encrypted_6de0fb2f002f_key -iv $encrypted_6de0fb2f002f_iv -in directlink.env.enc -out directlink.env -d || true",
    "[ \"${TRAVIS_PULL_REQUEST}\" == \"false\" ] && openssl aes-256-cbc -K $encrypted_3d8a3eb98382_key -iv $encrypted_3d8a3eb98382_iv -in transit.env.enc -out transit.env -d || true",
    "[ \"${TRAVIS_PULL_REQUEST}\" == \"false\" ] && openssl aes-256-cbc -K $encrypted_fc092b9428d6_key -iv $encrypted_fc092b9428d6_iv -in cis.env.enc -out cis.env -d || true",
    "[ \"${TRAVIS_PULL_REQUEST}\" == \"false\" ] && openssl aes-256-cbc -K $encrypted_89a9eb4f9417_key -iv $encrypted_89a9eb4f9417_iv -in dns.env.enc -out dns.env -d || true"
  ],
  "jobs": {
    "include": [
      {
        "stage": "Build-Test",
        "jdk": "openjdk11",
        "install": [
          "true"
        ],
        "script": [
          "build/setMavenVersion.sh",
          "mvn verify -fae -DskipITs $MVN_ARGS"
        ],
        "after_success": [
          "build/publishCodeCoverage.sh"
        ]
      },
      {
        "stage": "Semantic-Release",
        "install": [
          "nvm install 20",
          "npm install -g npm@latest",
          "pip install --user bump2version",
          "npm install @semantic-release/changelog",
          "npm install @semantic-release/exec",
          "npm install @semantic-release/git",
          "npm install @semantic-release/github"
        ],
        "script": [
          "npx semantic-release"
        ]
      },
      {
        "stage": "Publish-Release",
        "jdk": "openjdk11",
        "name": "Publish-Javadoc",
        "install": [
          "true"
        ],
        "script": [
          "build/setMavenVersion.sh",
          "mvn clean javadoc:aggregate $MVN_ARGS",
          "build/publishJavadoc.sh"
        ],
        "after_success": [
          "echo \"Javadocs successfully published to gh-pages!\""
        ]
      },
      {
        "jdk": "openjdk11",
        "name": "Publish-To-Maven-Central",
        "install": [
          "true"
        ],
        "script": [
          "build/setupSigning.sh",
          "build/setMavenVersion.sh",
          "mvn deploy $MVN_ARGS -DskipTests -P central"
        ],
        "after_success": [
          "echo \"Maven artifacts successfully published to Maven Central!\""
        ]
      }
    ]
  }
}