Browse Source

Pull request #12245: REPORT-93559 提升jxbrowser 7.26

Merge in DESIGN/design from ~VITO/c-design:release/11.0 to release/11.0

* commit '1e1da080d604d90cc62f61dc2c39aa518e5ed330':
  REPORT-93559 提升jxbrowser 7.26
release/11.0
vito-刘恒霖 1 year ago
parent
commit
96931812e2
  1. 10
      build.gradle

10
build.gradle

@ -14,6 +14,7 @@ ext {
outputPath = "build"
ignoreTestFailureSetting = true
languageLevelSetting = 1.8
jxBrowserVersion = '7.26'
}
applyGlobalConfigPathIfExist()
@ -66,8 +67,8 @@ allprojects {
implementation 'com.fr.cbb:fine-universal-skeleton:' + cbbVersion
implementation 'com.install4j:install4j-runtime:8.0.4'
implementation 'com.fr.third:jxbrowser:6.23'
implementation 'com.fr.third:jxbrowser-v7:7.22'
implementation 'com.fr.third:jxbrowser-swing-v7:7.22'
implementation "com.fr.third:jxbrowser-v7:${jxBrowserVersion}"
implementation "com.fr.third:jxbrowser-swing-v7:${jxBrowserVersion}"
implementation 'com.fr.third.server:servlet-api:3.0'
implementation 'org.swingexplorer:swexpl:2.0.1'
implementation 'org.swingexplorer:swag:1.0'
@ -95,12 +96,11 @@ allprojects {
if (OperatingSystem.current().isMacOsX()) {
dependencies {
implementation 'com.fr.third:jxbrowser-mac:6.23'
implementation 'com.fr.third:jxbrowser-mac-v7:7.22'
implementation "com.fr.third:jxbrowser-mac-v7:${jxBrowserVersion}"
}
} else if (OperatingSystem.current().isWindows()) {
dependencies {
implementation 'com.fr.third:jxbrowser-win64:6.23'
implementation 'com.fr.third:jxbrowser-win64-v7:7.22'
implementation "com.fr.third:jxbrowser-win64-v7:${jxBrowserVersion}"
}
}
}

Loading…
Cancel
Save