Skip to content

EntityKnowledgeMapBuilder handles additional boolean,reportDataChange…

19dd94e
Select commit
Loading
Failed to load commit list.
Open

initial development of entity based changelogs #371

EntityKnowledgeMapBuilder handles additional boolean,reportDataChange…
19dd94e
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Mar 31, 2026 in 2m 49s

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 #371 initial development of entity based changelogs.
Any changes that have been made to the main 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 (Noble)
JDK Version openjdk17
Build Configuration
{
  "language": "java",
  "os": [
    "linux"
  ],
  "dist": "noble",
  "install": [
    "true"
  ],
  "addons": {
    "sonarcloud": {
      "organization": "alfasoftware",
      "token": {
        "secure": "Rk0cQ9JL2/DB8xrKjaU/m9HEvZllokUZ8c7Q+6g3DHwOsMvZi1OoCdUtDXf9Zl0xtdFPMvoWsGPeZ6+sZK9evHscvRH83hVMTrTabWK4+QL660QeMXboBprwuBIpAI0XBCfNcslsT3zPd/e4v35FHPdvRr1yOQlibrjEgs1MZo6/LQ7QgRNJAHsskiqOOJS6LLDHceYJEW7wd/y7R0BvXoxch6xQhDOFvowoc22/cEyUVCSCMMas74hD//veSXdHt0CNOY+H+/PAzAYsbM0rkJnrysqO8UgLZwpnP/Mjsoi0InoisvriSl9MYgQwMAfcrtVxxR94vt4Pu62LXsnt6ufGfwFBrdTh1Rna05fzTAmm9bwywIR2UsMwNeM4iDoz+Rc2ImnwMKRipn5lib5kCOlwqjTv6NVi0oV5XEzTfU51HIrQMmmsq60YwMZgcYwckHoVVOojv29dAjLe0Z/LbfUH8MHprt8/MdWA8ir2egxHHW3dXVY11MgDKzQ2RyYb1uPNJgkVfZDm7uHDcj13dFR61Gy1mTdrtpnWx1ojU2IJQ4oKuGb04RbqQ5lCq7dgsHlaeaAJFMlcn1I6IOk8t6QkYy/3vhSXgkZpQAO3K5Zp4aaGZD90sYdQO3JQNCe2S8mhgEGOqsAdxytFygCaMxOKG5NV9qxVilkzfGPvmqM="
      }
    }
  },
  "jdk": [
    "openjdk17"
  ],
  "before_script": [
    "export JAVA_HOME=$(dirname $(dirname $(readlink -f $(which java))))",
    "echo \"JAVA_HOME is set to $JAVA_HOME\""
  ],
  "jobs": {
    "include": [
      {
        "if": "repo = alfasoftware/morf AND branch = main AND NOT type = pull_request",
        "name": "Test",
        "script": [
          "git fetch --unshallow --quiet",
          "mvn clean verify sonar:sonar -Pcoverage -B -U"
        ]
      },
      {
        "if": "repo = alfasoftware/morf AND NOT tag IS present AND NOT branch = main AND NOT type = pull_request",
        "name": "Test",
        "script": [
          "git fetch --unshallow --quiet",
          "mvn clean verify sonar:sonar -Pcoverage -B -U -Dsonar.branch.name=$TRAVIS_BRANCH"
        ]
      },
      {
        "if": "repo = alfasoftware/morf AND head_repo = alfasoftware/morf AND type = pull_request",
        "name": "Test",
        "script": [
          "git fetch --unshallow --quiet",
          "mvn clean verify sonar:sonar -Pcoverage -B -U -Dsonar.pullrequest.key=$TRAVIS_PULL_REQUEST -Dsonar.pullrequest.branch=$TRAVIS_PULL_REQUEST_BRANCH -Dsonar.pullrequest.base=$TRAVIS_BRANCH"
        ]
      },
      {
        "if": "repo = alfasoftware/morf AND tag IS present AND NOT type = pull_request AND sender in (capgen628, gilleain, jsimlo, therealluigi, okeating, wnicholson)",
        "name": "Deploy From Tag",
        "script": [
          "echo $GPG_SECRET_KEYS | base64 --decode | $GPG_EXECUTABLE --batch --yes --import",
          "echo $GPG_OWNERTRUST | base64 --decode | $GPG_EXECUTABLE --batch --yes --import-ownertrust",
          "mvn clean deploy --settings .maven-settings.xml -B -U -Prelease"
        ]
      },
      {
        "if": "(repo = alfasoftware/morf AND NOT head_repo = alfasoftware/morf AND type = pull_request) OR NOT repo = alfasoftware/morf",
        "name": "Test",
        "script": [
          "mvn clean test -B -U"
        ]
      }
    ]
  },
  "cache": {
    "directories": [
      "$HOME/.m2/repository",
      "$HOME/.sonar/cache"
    ]
  }
}