Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
* 2508 Update to Java 17 and Gradle 7.6
* 2517 Update Spring/Springboot
  * 2554 @LOB fields broken
  * 2558 PAC4J configuration
  * 2551 External Metadata Resolver title not being displayed on Dashboard

Approved-by: Doug Sonaty
Approved-by: Chad Redman
3 contributors

Users who have contributed to this file

@chasegawa @jj @dima767
plugins {
id 'base'
id 'net.researchgate.release' version '3.0.0'
id 'com.github.breadmoirai.github-release' version '2.2.9'
}
subprojects {
tasks.withType(Test) {
maxHeapSize = "3g"
}
}
// tasks.findByName('release').dependsOn project.getTasksByName('test', true)
githubRelease {
token project.'i2.github.token'
owner project.'i2.github.owner'
repo project.'i2.github.repo'
releaseAssets project('backend').getTasksByName('bootWar', false).outputs
overwrite true
apiEndpoint project.'i2.github.apiEndpoint'
}
release {
git {
pushToRemote.set(project.'i2.git.remote')
requireBranch.set(project.'i2.git.branch')
}
}
// Update and run this to update the gradle-wrapper.jar and gradle-wrapper.properties file in the project
task gv76(type: Wrapper) {
gradleVersion = '7.6' // current as of 1-23-23
}
afterReleaseBuild.dependsOn project.getTasksByName('githubRelease', false)
afterReleaseBuild.dependsOn project.getTasksByName('dockerTagsPush', true)