Skip to content
This repository was archived by the owner on Dec 31, 2020. It is now read-only.

Fix for Issue "Optional loading of JQuery and JQuery-ui #13" #14

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
pipeline {
environment {
JAVA_TOOL_OPTIONS = '-Duser.home=/var/jenkins_home'
}
agent {
docker {
image 'maven:3.6.1-jdk-8-alpine'
args '-e MAVEN_CONFIG=/var/jenkins_home/.m2'
}
}
stages {
stage('Preparation') {
steps {
git url: 'https://github.com/rlsutton1/GridStack.git', credentialsId: 'bitbucket'
}
}
stage('Build') {
steps {
sh 'mvn -B -Dmaven.test.skip=true -DskipTests -f gridstack-addon/pom.xml clean package'
}
}
stage('Deliver') {
steps {
sh 'mvn jar:jar install:install help:evaluate -Dexpression=project.name -f gridstack-addon/pom.xml'
}
}
}
post {
always {
emailext attachLog: true,
to: '$DEFAULT_RECIPIENTS',
subject: '$DEFAULT_SUBJECT',
body: '$DEFAULT_CONTENT'
}
}
}

2 changes: 1 addition & 1 deletion gridstack-addon/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>org.vaadin.alump.gridstack</groupId>
<artifactId>gridstack-addon</artifactId>
<packaging>bundle</packaging>
<version>0.3.1-SNAPSHOT</version>
<version>0.3.1-nj</version>
<name>GridStack Add-on</name>

<properties>
Expand Down
Loading