This is an automated email from the ASF dual-hosted git repository.
jleroux pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git
The following commit(s) were added to refs/heads/trunk by this push:
new 5622843b06 Fixed: We have build problems in branches with plugins
(OFBIZ-11284)
5622843b06 is described below
commit 5622843b06392a6f614e942ad36493eeceaf433e
Author: Jacques Le Roux <[email protected]>
AuthorDate: Tue Feb 14 16:13:03 2023 +0100
Fixed: We have build problems in branches with plugins (OFBIZ-11284)
Replaces "trunk" by current branch (can be trunk too). In Javadoc uses 17
not 8
---
build.gradle | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/build.gradle b/build.gradle
index 03fb776250..31af6dcb19 100644
--- a/build.gradle
+++ b/build.gradle
@@ -95,10 +95,10 @@ distributions.main.contents.from(rootDir) {
}
javadoc {
- title='OFBiz trunk API'
+ title="OFBiz " + getCurrentGitBranch() + " API"
failOnError = true
options {
- source '8'
+ source '17'
encoding 'UTF-8'
charSet 'UTF-8'
// Those external Javadoc links should correspond to the actual
@@ -591,7 +591,7 @@ task createTenant(group: ofbizServer, description: 'Create
a new tenant in your
// ========== Documentation tasks ==========
tasks.withType(AsciidoctorTask) { task ->
outputOptions {
- // I hate we have to do this - but jruby (asciidoctorj-pdf) and
windows don't mix well
+ // I hate we have to do this - but JRuby (asciidoctorj-pdf) and
Windows don't mix well
if (System.properties['os.name'].toLowerCase().contains('windows')) {
backends 'html5'
} else {
@@ -600,7 +600,7 @@ tasks.withType(AsciidoctorTask) { task ->
}
attributes \
'doctype': 'book',
- 'revnumber': 'Trunk',
+ 'revnumber': getCurrentGitBranch(),
'experimental': '',
'allow-uri-read': true,
'icons': 'font',