Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade MongoDB Driver to 5.0.1 and Morphia to 2.4 #18

Draft
wants to merge 4 commits into
base: master
Choose a base branch
from

feat: Update version for new release

858d779
Select commit
Loading
Failed to load commit list.
Draft

Upgrade MongoDB Driver to 5.0.1 and Morphia to 2.4 #18

feat: Update version for new release
858d779
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Apr 29, 2024 in 1m 56s

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 #18 Upgrade MongoDB Driver to 5.0.1 and Morphia to 2.4.
Any changes that have been made to the master branch before the build ran are also included.

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 (Xenial)
JDK Version openjdk11
Build Configuration
{
  "language": "java",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "sudo": false,
  "services": [
    "mongodb"
  ],
  "jdk": [
    "openjdk11"
  ],
  "cache": {
    "directories": [
      "$HOME/.m2/repository"
    ]
  },
  "before_install": [
    "gpg --fast-import gpg.asc"
  ],
  "install": [
    "echo \"<settings><servers><server><id>ossrh</id><username>\\${env.SONATYPE_USER}</username><password>\\${env.SONATYPE_PASSWORD}</password></server></servers></settings>\" > ~/.m2/settings.xml",
    "if [[ $TRAVIS_PULL_REQUEST = false ]] && [[ $TRAVIS_BRANCH = master || $TRAVIS_BRANCH = dev-* ]] || [[ $TRAVIS_TAG = v* ]]; then GOAL=deploy; else GOAL=install; fi",
    "if [[ $TRAVIS_TAG = v* ]]; then ADDITIONAL_PROFILES=release; mvn -q -U org.seedstack:seedstack-maven-plugin:release; fi"
  ],
  "script": [
    "mvn -U -Pbuild-number,compatibility,javadoc,quality,$ADDITIONAL_PROFILES $GOAL"
  ],
  "after_success": [
    "mvn -q coveralls:report -DrepoToken=$COVERALLS_TOKEN"
  ]
}