Skip to content

Commit

Permalink
#4150 - Upgrade dependencies
Browse files Browse the repository at this point in the history
- Update Jenkinsfile with additional settings
  • Loading branch information
reckart committed Aug 23, 2023
1 parent d9ee98c commit 20aed6b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ config = [
agentLabel: '',
maven: 'Maven 3',
jdk: 'Zulu 11',
extraMavenArguments: '',
extraMavenArguments: '-U -Ddkpro.core.testCachePath="${WORKSPACE}/cache/dkpro-core-datasets" -Dmaven.artifact.threads=15',
wipeWorkspaceBeforeBuild: true,
wipeWorkspaceAfterBuild: true
]
Expand Down Expand Up @@ -97,7 +97,7 @@ pipeline {
script {
def mavenCommand = 'mvn ' +
params.extraMavenArguments +
' -B -Dmaven.test.failure.ignore=true clean verify';
' -B -Dmaven.test.failure.ignore=true -T 4 -Pjacoco clean verify javadoc:javadoc';

if (isUnix()) {
sh script: mavenCommand
Expand Down Expand Up @@ -130,7 +130,7 @@ pipeline {
script {
def mavenCommand = 'mvn ' +
params.extraMavenArguments +
' -B -Dmaven.test.failure.ignore=true clean verify'
' -B -Dmaven.test.failure.ignore=true -Pjacoco,full-tests clean verify javadoc:javadoc'

if (isUnix()) {
sh script: mavenCommand
Expand Down

0 comments on commit 20aed6b

Please sign in to comment.