[struts] 01/01: Merge pull request #293 from JCgH4164838Gh792C124B5/local_25x_LibUpd

2018-12-17 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a commit to branch struts-2-5-x
in repository https://gitbox.apache.org/repos/asf/struts.git

commit c3205888b4ab862511c5e9a28a9550847b4f18a4
Merge: b431755 ce9789c
Author: Lukasz Lenart 
AuthorDate: Mon Dec 17 15:42:52 2018 +0100

Merge pull request #293 from JCgH4164838Gh792C124B5/local_25x_LibUpd

Update Struts 2.5.19 to use latest OGNL 3.1.x release available.

 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



[struts] branch struts-2-5-x updated (b431755 -> c320588)

2018-12-17 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to branch struts-2-5-x
in repository https://gitbox.apache.org/repos/asf/struts.git.


from b431755  Improve optgroup list attributes test
 add ce9789c  Update Struts 2.5.19 to use latest OGNL 3.1.x release 
available.
 new c320588  Merge pull request #293 from 
JCgH4164838Gh792C124B5/local_25x_LibUpd

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



[struts] branch master updated: Increases PermSize for Maven

2018-12-17 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/struts.git


The following commit(s) were added to refs/heads/master by this push:
 new 99b06f6  Increases PermSize for Maven
99b06f6 is described below

commit 99b06f6b761c6009220a78bbeaeb48a304cc4671
Author: Lukasz Lenart 
AuthorDate: Mon Dec 17 14:49:02 2018 +0100

Increases PermSize for Maven
---
 Jenkinsfile | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/Jenkinsfile b/Jenkinsfile
index 0b5ebcc..5834162 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -22,6 +22,9 @@ pipeline {
   stages {
 stage('Build') {
   steps {
+environment {
+  MAVEN_OPTS = "-Xmx1024m -XX:MaxPermSize=256m"
+}
 sh 'mvn --version'
 sh 'mvn clean source:jar javadoc:jar install deploy -DskipWiki 
-Dhttps.protocols=TLSv1,TLSv1.1,TLSv1.2'
}



[struts] branch master updated: Adds example Jenkinsfile

2018-12-17 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/struts.git


The following commit(s) were added to refs/heads/master by this push:
 new a37f072  Adds example Jenkinsfile
a37f072 is described below

commit a37f0725accba77541ef3febc41a0a5ff907d2fa
Author: Lukasz Lenart 
AuthorDate: Mon Dec 17 10:48:39 2018 +0100

Adds example Jenkinsfile
---
 Jenkinsfile | 30 ++
 1 file changed, 30 insertions(+)

diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 000..0b5ebcc
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,30 @@
+pipeline {
+
+  agent {
+label 'ubuntu'
+  }
+
+  options {
+buildDiscarder logRotator(daysToKeepStr: '14', numToKeepStr: '10')
+timeout(80)
+disableConcurrentBuilds()
+  }
+
+  tools {
+jdk 'JDK 1.7 (latest)'
+maven 'Maven 3 (latest)'
+  }
+
+  triggers {
+pollSCM 'H/15 * * * *'
+  }
+
+  stages {
+stage('Build') {
+  steps {
+sh 'mvn --version'
+sh 'mvn clean source:jar javadoc:jar install deploy -DskipWiki 
-Dhttps.protocols=TLSv1,TLSv1.1,TLSv1.2'
+   }
+}
+  }
+}