We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5de1439 commit cb154a2Copy full SHA for cb154a2
Jenkinsfile
@@ -6,7 +6,7 @@ node {
6
checkout scm
7
}
8
stage('Build and deployment') {
9
- sh "./gradlew clean test install publish -Djava.awt.headless=true"
+ sh "./gradlew clean build publish -Djava.awt.headless=true"
10
11
12
build.gradle
@@ -44,7 +44,7 @@ plugins {
44
45
description = 'The Gradle plugin to set up Silverpeas. It is used both to install or to upgrade Silverpeas.'
46
group = 'org.silverpeas'
47
-version = '6.2-SNAPSHOT'
+version = '6.1-SNAPSHOT'
48
49
50
/* cache management
@@ -78,6 +78,8 @@ repositories {
78
79
80
java {
81
+ sourceCompatibility = JavaVersion.VERSION_1_8
82
+ targetCompatibility = JavaVersion.VERSION_1_8
83
withSourcesJar()
84
85
0 commit comments