Skip to content

Commit

Permalink
simplify Jenkinsfile
Browse files Browse the repository at this point in the history
Signed-off-by: olivier lamy <olamy@apache.org>
  • Loading branch information
olamy committed Dec 29, 2018
1 parent 513708a commit 884d9ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 39 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -7,3 +7,4 @@ target
.DS_Store
.site-content
out
*.iml
40 changes: 1 addition & 39 deletions Jenkinsfile
Expand Up @@ -16,43 +16,5 @@
* specific language governing permissions and limitations
* under the License.
*/
/**
*
*
* Jenkins Pipeline configuration.
*
*/

def labels = 'ubuntu'
def buildJdk = 'JDK 1.8 (latest)'
def buildMvn = 'Maven 3.5.2'
def deploySettings = 'DefaultMavenSettingsProvider.1331204114925'

node(labels) {

cleanWs()

stage ('Clone Sources') {
checkout scm
}

stage ('Build') {
withMaven(
maven: buildMvn,
jdk: buildJdk,
mavenSettingsConfig: deploySettings
) {
sh "mvn clean install -B -U -e -fae -Dmaven.compiler.fork=false"
}
}

stage ('Deploy') {
withMaven(
maven: buildMvn,
jdk: buildJdk,
mavenSettingsConfig: deploySettings
) {
sh "mvn deploy -Dmaven.test.skip=true -B -U -e -fae -Dmaven.compiler.fork=false"
}
}
}
asfStandardBuild cmdline:"clean deploy"

0 comments on commit 884d9ca

Please sign in to comment.