Re: [VOTE] Release Apache Tomcat 9.0.13

2018-11-03 Thread Mark Thomas
On 02/11/2018 22:39, Igal Sapir wrote:



> I am getting the same test case failures as before, so it doesn't look like
> a regression to me:
>[concat] Testsuites with failed tests:
>[concat]
> TEST-org.apache.tomcat.util.net.openssl.ciphers.TestCipher.NIO.txt [1]
>[concat]
> TEST-org.apache.tomcat.util.net.openssl.ciphers.TestOpenSSLCipherConfigurationParser.NIO.txt
> [2]
> 
> (details below)
> 
> 
>> The proposed 9.0.13 release is:
>> [ ] Broken - do not release
>> [X] Stable - go ahead and release as 9.0.13
>>
>>
> Assuming that my assessment of the failures is correct, my non-binding vote
> is Stable.  Tested on Fedora 28 with OpenSSL 1.1.0i-fips.

Which JDK are you using? It looks like an IBM one. It has been a while
since I tested things with an IBM JDK so some updates might be required.
A FIPS enabled OpenSSL might also cause some failures as it might
disable some ciphers.

Mark

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1845653 - /tomcat/tc8.5.x/trunk/test/org/apache/tomcat/websocket/TestWsWebSocketContainer.java

2018-11-03 Thread markt
Author: markt
Date: Sat Nov  3 12:13:15 2018
New Revision: 1845653

URL: http://svn.apache.org/viewvc?rev=1845653&view=rev
Log:
Java 7 doesn't use TLS v1.2 by default. Make sure the client does for these 
tests.

Modified:

tomcat/tc8.5.x/trunk/test/org/apache/tomcat/websocket/TestWsWebSocketContainer.java

Modified: 
tomcat/tc8.5.x/trunk/test/org/apache/tomcat/websocket/TestWsWebSocketContainer.java
URL: 
http://svn.apache.org/viewvc/tomcat/tc8.5.x/trunk/test/org/apache/tomcat/websocket/TestWsWebSocketContainer.java?rev=1845653&r1=1845652&r2=1845653&view=diff
==
--- 
tomcat/tc8.5.x/trunk/test/org/apache/tomcat/websocket/TestWsWebSocketContainer.java
 (original)
+++ 
tomcat/tc8.5.x/trunk/test/org/apache/tomcat/websocket/TestWsWebSocketContainer.java
 Sat Nov  3 12:13:15 2018
@@ -16,10 +16,14 @@
  */
 package org.apache.tomcat.websocket;
 
+import java.io.File;
+import java.io.FileInputStream;
 import java.io.IOException;
+import java.io.InputStream;
 import java.net.SocketTimeoutException;
 import java.net.URI;
 import java.nio.ByteBuffer;
+import java.security.KeyStore;
 import java.util.ArrayList;
 import java.util.List;
 import java.util.Queue;
@@ -29,6 +33,8 @@ import java.util.concurrent.ExecutionExc
 import java.util.concurrent.Future;
 import java.util.concurrent.TimeUnit;
 
+import javax.net.ssl.SSLContext;
+import javax.net.ssl.TrustManagerFactory;
 import javax.servlet.ServletContextEvent;
 import javax.websocket.ClientEndpointConfig;
 import javax.websocket.ContainerProvider;
@@ -833,9 +839,28 @@ public class TestWsWebSocketContainer ex
 ContainerProvider.getWebSocketContainer();
 ClientEndpointConfig clientEndpointConfig =
 ClientEndpointConfig.Builder.create().build();
+
+// Create the SSL Context
+// Java 7 doesn't default to TLSv1.2 but the tests do
+SSLContext sslContext = SSLContext.getInstance("TLSv1.2");
+
+// Trust store
+File keyStoreFile = new File(TesterSupport.CA_JKS);
+KeyStore ks = KeyStore.getInstance("JKS");
+try (InputStream is = new FileInputStream(keyStoreFile)) {
+ks.load(is, 
org.apache.tomcat.websocket.Constants.SSL_TRUSTSTORE_PWD_DEFAULT.toCharArray());
+}
+
+TrustManagerFactory tmf = TrustManagerFactory.getInstance(
+TrustManagerFactory.getDefaultAlgorithm());
+tmf.init(ks);
+
+sslContext.init(null, tmf.getTrustManagers(), null);
+
 clientEndpointConfig.getUserProperties().put(
-org.apache.tomcat.websocket.Constants.SSL_TRUSTSTORE_PROPERTY,
-TesterSupport.CA_JKS);
+org.apache.tomcat.websocket.Constants.SSL_CONTEXT_PROPERTY,
+sslContext);
+
 Session wsSession = wsContainer.connectToServer(
 TesterProgrammaticEndpoint.class,
 clientEndpointConfig,



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[GUMP@vmgump-vm3]: Project taglibs-parent (in module tomcat-taglibs) failed

2018-11-03 Thread Gump
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at gene...@gump.apache.org.

Project taglibs-parent has an issue affecting its community integration.
The current state of this project is 'Failed', with reason 'Update Failed'.

Full details are available at:
http://vmgump-vm3.apache.org/tomcat-taglibs/taglibs-parent/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole pom output [pom.xml] identifier set to project name
 -INFO- Failed with reason update failed
 -DEBUG- Extracted fallback artifacts from Gump Repository

To subscribe to this information via syndicated feeds:
- RSS: http://vmgump-vm3.apache.org/tomcat-taglibs/taglibs-parent/rss.xml
- Atom: http://vmgump-vm3.apache.org/tomcat-taglibs/taglibs-parent/atom.xml

== Gump Tracking Only ===
Produced by Apache Gump(TM) version 2.3.
Gump Run 20181103120205, vmgump-vm3.apache.org:vmgump:20181103120205
Gump E-mail Identifier (unique within run) #6.

--
Apache Gump
http://gump.apache.org/ [Instance: vmgump-vm3]

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[GUMP@vmgump-vm3]: Project tomcat-tc7.0.x-validate-eoln (in module tomcat-7.0.x) failed

2018-11-03 Thread Bill Barker
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at gene...@gump.apache.org.

Project tomcat-tc7.0.x-validate-eoln has an issue affecting its community 
integration.
The current state of this project is 'Failed', with reason 'Update Failed'.

Full details are available at:

http://vmgump-vm3.apache.org/tomcat-7.0.x/tomcat-tc7.0.x-validate-eoln/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -INFO- Failed with reason update failed

To subscribe to this information via syndicated feeds:
- RSS: 
http://vmgump-vm3.apache.org/tomcat-7.0.x/tomcat-tc7.0.x-validate-eoln/rss.xml
- Atom: 
http://vmgump-vm3.apache.org/tomcat-7.0.x/tomcat-tc7.0.x-validate-eoln/atom.xml

== Gump Tracking Only ===
Produced by Apache Gump(TM) version 2.3.
Gump Run 20181103120205, vmgump-vm3.apache.org:vmgump:20181103120205
Gump E-mail Identifier (unique within run) #10.

--
Apache Gump
http://gump.apache.org/ [Instance: vmgump-vm3]

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[GUMP@vmgump-vm3]: Project tomcat-tc7.0.x-dbcp (in module tomcat-7.0.x) failed

2018-11-03 Thread Bill Barker
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at gene...@gump.apache.org.

Project tomcat-tc7.0.x-dbcp has an issue affecting its community integration.
The current state of this project is 'Failed', with reason 'Update Failed'.

Full details are available at:
http://vmgump-vm3.apache.org/tomcat-7.0.x/tomcat-tc7.0.x-dbcp/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -INFO- Failed with reason update failed
 -DEBUG- Extracted fallback artifacts from Gump Repository

To subscribe to this information via syndicated feeds:
- RSS: http://vmgump-vm3.apache.org/tomcat-7.0.x/tomcat-tc7.0.x-dbcp/rss.xml
- Atom: http://vmgump-vm3.apache.org/tomcat-7.0.x/tomcat-tc7.0.x-dbcp/atom.xml

== Gump Tracking Only ===
Produced by Apache Gump(TM) version 2.3.
Gump Run 20181103120205, vmgump-vm3.apache.org:vmgump:20181103120205
Gump E-mail Identifier (unique within run) #11.

--
Apache Gump
http://gump.apache.org/ [Instance: vmgump-vm3]

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[GUMP@vmgump-vm3]: Project taglibs-standard-spec (in module tomcat-taglibs) failed

2018-11-03 Thread Gump
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at gene...@gump.apache.org.

Project taglibs-standard-spec has an issue affecting its community integration.
The current state of this project is 'Failed', with reason 'Update Failed'.

Full details are available at:
http://vmgump-vm3.apache.org/tomcat-taglibs/taglibs-standard-spec/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole jar output [taglibs-standard-spec-*[0-9T].jar] identifier set to 
project name
 -INFO- Failed with reason update failed
 -DEBUG- Extracted fallback artifacts from Gump Repository

To subscribe to this information via syndicated feeds:
- RSS: http://vmgump-vm3.apache.org/tomcat-taglibs/taglibs-standard-spec/rss.xml
- Atom: 
http://vmgump-vm3.apache.org/tomcat-taglibs/taglibs-standard-spec/atom.xml

== Gump Tracking Only ===
Produced by Apache Gump(TM) version 2.3.
Gump Run 20181103120205, vmgump-vm3.apache.org:vmgump:20181103120205
Gump E-mail Identifier (unique within run) #15.

--
Apache Gump
http://gump.apache.org/ [Instance: vmgump-vm3]

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: [VOTE] Release Apache Tomcat 9.0.13

2018-11-03 Thread Igal Sapir
On Sat, Nov 3, 2018 at 3:50 AM Mark Thomas  wrote:

> On 02/11/2018 22:39, Igal Sapir wrote:
>
> 
>
> > I am getting the same test case failures as before, so it doesn't look
> like
> > a regression to me:
> >[concat] Testsuites with failed tests:
> >[concat]
> > TEST-org.apache.tomcat.util.net.openssl.ciphers.TestCipher.NIO.txt [1]
> >[concat]
> >
> TEST-org.apache.tomcat.util.net.openssl.ciphers.TestOpenSSLCipherConfigurationParser.NIO.txt
> > [2]
> >
> > (details below)
> >
> >
> >> The proposed 9.0.13 release is:
> >> [ ] Broken - do not release
> >> [X] Stable - go ahead and release as 9.0.13
> >>
> >>
> > Assuming that my assessment of the failures is correct, my non-binding
> vote
> > is Stable.  Tested on Fedora 28 with OpenSSL 1.1.0i-fips.
>
> Which JDK are you using? It looks like an IBM one. It has been a while
> since I tested things with an IBM JDK so some updates might be required.
>

I am pretty sure that I've never installed the IBM JDK on any machine.
This one IIRC is from Oracle:

$ javac -version
javac 1.8.0_181
$ java -version
java version "1.8.0_181"
Java(TM) SE Runtime Environment (build 1.8.0_181-b13)
Java HotSpot(TM) 64-Bit Server VM (build 25.181-b13, mixed mode)

I will upgrade to u191 from Oracle and then test again.


> A FIPS enabled OpenSSL might also cause some failures as it might
> disable some ciphers.
>

I am guessing by the version name of OpenSSL that FIPS is enabled:

$ openssl version
OpenSSL 1.1.0i-fips  14 Aug 2018

$ uname -a
Linux local 4.18.16-200.fc28.x86_64 #1 SMP Sat Oct 20 23:53:47 UTC 2018
x86_64 x86_64 x86_64 GNU/Linux

Should I make a mental note that these are false positives or should we
pursue it further and update the test cases to remove ciphers that should
not be used?

Thanks,

Igal


Re: [VOTE] Release Apache Tomcat 9.0.13

2018-11-03 Thread Mark Thomas
On 03/11/2018 16:20, Igal Sapir wrote:
> On Sat, Nov 3, 2018 at 3:50 AM Mark Thomas  wrote:
> 
>> On 02/11/2018 22:39, Igal Sapir wrote:
>>
>> 
>>
>>> I am getting the same test case failures as before, so it doesn't look
>> like
>>> a regression to me:
>>>[concat] Testsuites with failed tests:
>>>[concat]
>>> TEST-org.apache.tomcat.util.net.openssl.ciphers.TestCipher.NIO.txt [1]
>>>[concat]
>>>
>> TEST-org.apache.tomcat.util.net.openssl.ciphers.TestOpenSSLCipherConfigurationParser.NIO.txt
>>> [2]
>>>
>>> (details below)
>>>
>>>
 The proposed 9.0.13 release is:
 [ ] Broken - do not release
 [X] Stable - go ahead and release as 9.0.13


>>> Assuming that my assessment of the failures is correct, my non-binding
>> vote
>>> is Stable.  Tested on Fedora 28 with OpenSSL 1.1.0i-fips.
>>
>> Which JDK are you using? It looks like an IBM one. It has been a while
>> since I tested things with an IBM JDK so some updates might be required.
>>
> 
> I am pretty sure that I've never installed the IBM JDK on any machine.
> This one IIRC is from Oracle:
> 
> $ javac -version
> javac 1.8.0_181
> $ java -version
> java version "1.8.0_181"
> Java(TM) SE Runtime Environment (build 1.8.0_181-b13)
> Java HotSpot(TM) 64-Bit Server VM (build 25.181-b13, mixed mode)
> 
> I will upgrade to u191 from Oracle and then test again.
> 
> 
>> A FIPS enabled OpenSSL might also cause some failures as it might
>> disable some ciphers.
>>
> 
> I am guessing by the version name of OpenSSL that FIPS is enabled:
> 
> $ openssl version
> OpenSSL 1.1.0i-fips  14 Aug 2018

That is very odd as the only OpenSSL branch that is FIPS certified is 1.0.2.

> $ uname -a
> Linux local 4.18.16-200.fc28.x86_64 #1 SMP Sat Oct 20 23:53:47 UTC 2018
> x86_64 x86_64 x86_64 GNU/Linux
> 
> Should I make a mental note that these are false positives or should we
> pursue it further and update the test cases to remove ciphers that should
> not be used?

They look like false positives at this point.

Now is probably a good time to complete the planned expansion of unit
tests on Gump for Tomcat Native so we have coverage of all the OpenSSL
versions.

Mark

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: [VOTE] Release Apache Tomcat 9.0.13

2018-11-03 Thread Igal Sapir
On Sat, Nov 3, 2018 at 9:28 AM Mark Thomas  wrote:

> On 03/11/2018 16:20, Igal Sapir wrote:
> > On Sat, Nov 3, 2018 at 3:50 AM Mark Thomas  wrote:
> >
> >> On 02/11/2018 22:39, Igal Sapir wrote:
> >>
> >> 
> >>
> >>> I am getting the same test case failures as before, so it doesn't look
> >> like
> >>> a regression to me:
> >>>[concat] Testsuites with failed tests:
> >>>[concat]
> >>> TEST-org.apache.tomcat.util.net.openssl.ciphers.TestCipher.NIO.txt [1]
> >>>[concat]
> >>>
> >>
> TEST-org.apache.tomcat.util.net.openssl.ciphers.TestOpenSSLCipherConfigurationParser.NIO.txt
> >>> [2]
> >>>
> >>> (details below)
> >>>
> >>>
>  The proposed 9.0.13 release is:
>  [ ] Broken - do not release
>  [X] Stable - go ahead and release as 9.0.13
> 
> 
> >>> Assuming that my assessment of the failures is correct, my non-binding
> >> vote
> >>> is Stable.  Tested on Fedora 28 with OpenSSL 1.1.0i-fips.
> >>
> >> Which JDK are you using? It looks like an IBM one. It has been a while
> >> since I tested things with an IBM JDK so some updates might be required.
> >>
> >
> > I am pretty sure that I've never installed the IBM JDK on any machine.
> > This one IIRC is from Oracle:
> >
> > $ javac -version
> > javac 1.8.0_181
> > $ java -version
> > java version "1.8.0_181"
> > Java(TM) SE Runtime Environment (build 1.8.0_181-b13)
> > Java HotSpot(TM) 64-Bit Server VM (build 25.181-b13, mixed mode)
> >
> > I will upgrade to u191 from Oracle and then test again.
> >
> >
> >> A FIPS enabled OpenSSL might also cause some failures as it might
> >> disable some ciphers.
> >>
> >
> > I am guessing by the version name of OpenSSL that FIPS is enabled:
> >
> > $ openssl version
> > OpenSSL 1.1.0i-fips  14 Aug 2018
>
> That is very odd as the only OpenSSL branch that is FIPS certified is
> 1.0.2.
>
> > $ uname -a
> > Linux local 4.18.16-200.fc28.x86_64 #1 SMP Sat Oct 20 23:53:47 UTC 2018
> > x86_64 x86_64 x86_64 GNU/Linux
> >
> > Should I make a mental note that these are false positives or should we
> > pursue it further and update the test cases to remove ciphers that should
> > not be used?
>
> They look like false positives at this point.
>

Is it possible to mark some test cases as "Warnings" rather than "Errors"?
So that if they fail they will not fail the whole test?


> Now is probably a good time to complete the planned expansion of unit
> tests on Gump for Tomcat Native so we have coverage of all the OpenSSL
> versions.
>

I'd be happy to help if given some guidance

Best,

Igal


svn commit: r1845673 - in /tomcat/tc8.5.x/tags/TOMCAT_8_5_35: ./ build.properties.default webapps/docs/changelog.xml

2018-11-03 Thread markt
Author: markt
Date: Sat Nov  3 17:16:33 2018
New Revision: 1845673

URL: http://svn.apache.org/viewvc?rev=1845673&view=rev
Log:
Tag 8.5.35

Added:
tomcat/tc8.5.x/tags/TOMCAT_8_5_35/   (props changed)
  - copied from r1845669, tomcat/tc8.5.x/trunk/
Modified:
tomcat/tc8.5.x/tags/TOMCAT_8_5_35/build.properties.default
tomcat/tc8.5.x/tags/TOMCAT_8_5_35/webapps/docs/changelog.xml

Propchange: tomcat/tc8.5.x/tags/TOMCAT_8_5_35/
--
bugtraq:append = false

Propchange: tomcat/tc8.5.x/tags/TOMCAT_8_5_35/
--
bugtraq:label = Bugzilla ID (optional)

Propchange: tomcat/tc8.5.x/tags/TOMCAT_8_5_35/
--
--- bugtraq:logregex (added)
+++ bugtraq:logregex Sat Nov  3 17:16:33 2018
@@ -0,0 +1,2 @@
+(https?\://(bz|issues)\.apache\.org/bugzilla/show_bug.cgi\?id=\d+|BZ\s?\d+)
+(\d+)

Propchange: tomcat/tc8.5.x/tags/TOMCAT_8_5_35/
--
bugtraq:message = Fix https://bz.apache.org/bugzilla/show_bug.cgi?id=%BUGID%

Propchange: tomcat/tc8.5.x/tags/TOMCAT_8_5_35/
--
bugtraq:url = https://bz.apache.org/bugzilla/show_bug.cgi?id=%BUGID%

Propchange: tomcat/tc8.5.x/tags/TOMCAT_8_5_35/
--
--- svn:ignore (added)
+++ svn:ignore Sat Nov  3 17:16:33 2018
@@ -0,0 +1,8 @@
+.*
+build.properties
+logs
+nbproject
+output
+work
+*.iml
+temp

Propchange: tomcat/tc8.5.x/tags/TOMCAT_8_5_35/
--
--- svn:mergeinfo (added)
+++ svn:mergeinfo Sat Nov  3 17:16:33 2018
@@ -0,0 +1,2 @@
+/tomcat/tc8.0.x/trunk:1809644
+/tomcat/trunk:1734785,1734799,1734845,1734928,1735041,1735044,1735480,1735577,1735597,1735599-1735600,1735615,1736145,1736162,1736209,1736280,1736297,1736299,1736489,1736646,1736703,1736836,1736849,1737104-1737105,1737112,1737117,1737119-1737120,1737155,1737157,1737192,1737280,1737339,1737632,1737664,1737715,1737748,1737785,1737834,1737860,1737903,1737959,1738005,1738007,1738014-1738015,1738018,1738022,1738039,1738043,1738059-1738060,1738147,1738149,1738174-1738175,1738261,1738589,1738623-1738625,1738643,1738816,1738850,1738855,1738946-1738948,1738953-1738954,1738979,1738982,1739079-1739081,1739087,1739113,1739153,1739172,1739176,1739191,1739474,1739492,1739726,1739762,1739775,1739814,1739817-1739818,1739975,1740131,1740324,1740465,1740495,1740508-1740509,1740520,1740535,1740707,1740803,1740810,1740969,1740980,1740991,1740997,1741015,1741033,1741036,1741058,1741060,1741080,1741147,1741159,1741164,1741173,1741181,1741190,1741197,1741202,1741208,1741213,1741221,1741225,1741232,1741409
 
,1741501,1741677,1741892,1741896,1741984,1742023,1742042,1742071,1742090,1742093,1742101,1742105,1742111,1742139,1742146,1742148,1742166,1742181,1742184,1742187,1742246,1742248-1742251,1742263-1742264,1742268,1742276,1742369,1742387,1742448,1742509-1742512,1742917,1742919,1742933,1742975-1742976,1742984,1742986,1743019,1743115,1743117,1743124-1743125,1743134,1743425,1743554,1743679,1743696-1743698,1743700-1743701,1744058,1744064-1744065,1744125,1744149,1744194,1744229,1744270,1744323,1744432,1744684,1744697,1744705,1744713,1744760,1744786,1745083,1745142-1745143,1745145,1745177,1745179-1745180,1745227,1745248,1745254,1745337,1745467,1745473,1745535,1745576,1745735,1745744,1746304,1746306-1746307,1746319,1746327,1746338,1746340-1746341,1746344,1746427,1746441,1746473,1746490,1746492,1746495-1746496,1746499-1746501,1746503-1746507,1746509,1746549,1746551,1746554,1746556,1746558,1746584,1746620,1746649,1746724,1746939,1746989,1747014,1747028,1747035,1747210,1747225,1747234,1747253,1747
 
404,1747506,1747536,1747924,1747980,1747993,1748001,1748253,1748452,1748547,1748629,1748676,1748715,1749287,1749296,1749328,1749373,1749465,1749506,1749508,1749665-1749666,1749763,1749865-1749866,1749898,1749978,1749980,1750011,1750015,1750056,1750480,1750617,1750634,1750692,1750697,1750700,1750703,1750707,1750714,1750718,1750723,1750774,1750899,1750975,1750995,1751061,1751097,1751173,1751438,1751447,1751463,1751702,1752212,1752737,1752745,1753078,1753080,1753358,1753363,1754111,1754140-1754141,1754281,1754310,1754445,1754467,1754494,1754496,1754528,1754532-1754533,1754613,1754714,1754874,1754941,1754944,1754950-1754951,1755005,1755007,1755009,1755132,1755180-1755181,1755185,1755190,1755204-1755206,1755208,1755214,1755224,1755227,1755230,1755629,1755646-1755647,1755650,1755653,1755675,1755680,1755683,1755693,1755717,1755731-1755737,1755812,1755828,1755884,1755890,1755918-1755919,1755942,1755958,1755960,1755970,1755993,1756013,1756019,1756039,1756056,1756083-1756114,1756175,1756288-1
 
756289,1756408-1756410,1756778,1756798,1756878,1756898,

svn commit: r1845674 - in /tomcat/trunk: build.properties.default res/maven/mvn-pub.xml res/maven/mvn.properties.default webapps/docs/changelog.xml

2018-11-03 Thread markt
Author: markt
Date: Sat Nov  3 17:20:14 2018
New Revision: 1845674

URL: http://svn.apache.org/viewvc?rev=1845674&view=rev
Log:
Update version number for next development cycle

Modified:
tomcat/trunk/build.properties.default
tomcat/trunk/res/maven/mvn-pub.xml
tomcat/trunk/res/maven/mvn.properties.default
tomcat/trunk/webapps/docs/changelog.xml

Modified: tomcat/trunk/build.properties.default
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/build.properties.default?rev=1845674&r1=1845673&r2=1845674&view=diff
==
--- tomcat/trunk/build.properties.default (original)
+++ tomcat/trunk/build.properties.default Sat Nov  3 17:20:14 2018
@@ -25,7 +25,7 @@
 # - Version Control Flags -
 version.major=9
 version.minor=0
-version.build=13
+version.build=14
 version.patch=0
 version.suffix=-dev
 

Modified: tomcat/trunk/res/maven/mvn-pub.xml
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/res/maven/mvn-pub.xml?rev=1845674&r1=1845673&r2=1845674&view=diff
==
--- tomcat/trunk/res/maven/mvn-pub.xml (original)
+++ tomcat/trunk/res/maven/mvn-pub.xml Sat Nov  3 17:20:14 2018
@@ -76,7 +76,7 @@
 
 
 
-
+
   
 
   

Modified: tomcat/trunk/res/maven/mvn.properties.default
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/res/maven/mvn.properties.default?rev=1845674&r1=1845673&r2=1845674&view=diff
==
--- tomcat/trunk/res/maven/mvn.properties.default (original)
+++ tomcat/trunk/res/maven/mvn.properties.default Sat Nov  3 17:20:14 2018
@@ -39,7 +39,7 @@ maven.asf.release.repo.url=https://repos
 maven.asf.release.repo.repositoryId=apache.releases.https
 
 # Release version info
-maven.asf.release.deploy.version=9.0.13
+maven.asf.release.deploy.version=9.0.14
 
 #Where do we load the libraries from
 tomcat.lib.path=../../output/build/lib

Modified: tomcat/trunk/webapps/docs/changelog.xml
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=1845674&r1=1845673&r2=1845674&view=diff
==
--- tomcat/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/trunk/webapps/docs/changelog.xml Sat Nov  3 17:20:14 2018
@@ -44,7 +44,9 @@
   They eventually become mixed with the numbered issues (i.e., numbered
   issues do not "pop up" wrt. others).
 -->
-
+
+
+
   
 
   



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: [VOTE] Release Apache Tomcat 9.0.13

2018-11-03 Thread Mark Thomas
On 03/11/2018 16:54, Igal Sapir wrote:
> On Sat, Nov 3, 2018 at 9:28 AM Mark Thomas  wrote:
>> On 03/11/2018 16:20, Igal Sapir wrote:
>>> On Sat, Nov 3, 2018 at 3:50 AM Mark Thomas  wrote:
 On 02/11/2018 22:39, Igal Sapir wrote:



>>> Should I make a mental note that these are false positives or should we
>>> pursue it further and update the test cases to remove ciphers that should
>>> not be used?
>>
>> They look like false positives at this point.
>>
> 
> Is it possible to mark some test cases as "Warnings" rather than "Errors"?
> So that if they fail they will not fail the whole test?

Not that I am aware of.

>> Now is probably a good time to complete the planned expansion of unit
>> tests on Gump for Tomcat Native so we have coverage of all the OpenSSL
>> versions.
> 
> I'd be happy to help if given some guidance

(Note: Gump seems to be having issues performing 'svn up' at the moment.
Check any failures carefully in case this is the cause.)

The plan was as follows:
- Build all current OpenSSL versions (currently 4)
- Build Tomcat Native 1.2.x for each OpenSSL version (i.e. 4)
- No Tomcat Native 1.1.x builds
- Test 9.0.x with all Native/OpenSSL combinations (i.e. 4)
- Test 8.5.x with Native/OpenSSL 1.1.1 (latest LTS)
- Test 7.0.x with Native/OpenSSL 1.0.2 (other LTS)

The OpenSSL build and Tomcat Native builds with each OpenSSL version
have already been configured.

The Tomcat Native 1.1.x build has been disabled.

The 8.5.x and 7.0.x are configured as desired. So it is just 9.0.x that
needs completing. It should, largely, be a copy/paste exercise:

The Gump metadata is here:
http://svn.apache.org/repos/asf/gump/metadata/project/

All ASF committers have write access.

There is one file for each major Tomcat version.
Each  block represents one Tomcat build or one test run.

If you look in tomcat-trunk.xml you will see


This runs the unit tests with the APR connector. It is configured with:



which means it uses Tomcat Native build with OpenSSL master (or just
OpenSSL master when using OpenSSL directly) for the tests.

Currently we have:

Tomcat 9.0.x testing APR/native with OpenSSL master

This needs to be exapnded to:
Tomcat 9.0.x testing APR/native with
 - OpenSSL master
 - OpenSSL 1.1.1
 - OpenSSL 1.1.0
 - OpenSSL 1.0.2

We also have NIO tests running with JSSE. It would be prudent to add 4
more test runs for each of the OpenSSL versions with NIO as well.

Essentially, you edit the metadata file and then wait until the next
test run (they run at , 0600, 1200 and 1800 UTC) and see if it
worked. Repeat until all the test runs are passing.

Mark

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[VOTE] Release Apache Tomcat 8.5.35

2018-11-03 Thread Mark Thomas
The proposed Apache Tomcat 8.5.35 release is now available for voting.

The major changes compared to the 8.5.34 release are:

- support for TLSv1.3 when used with a JRE or OpenSSl version that
  supports it

- multiple improvements to the RewriteValve

- correct several regressions in the JSP compiler


Along with lots of other bug fixes and improvements.

It can be obtained from:
https://dist.apache.org/repos/dist/dev/tomcat/tomcat-8/v8.5.35/
The Maven staging repo is:
https://repository.apache.org/content/repositories/orgapachetomcat-1197/
The svn tag is:
http://svn.apache.org/repos/asf/tomcat/tc8.5.x/tags/TOMCAT_8_5_35/

The proposed 8.5.35 release is:
[ ] Broken - do not release
[ ] Stable - go ahead and release as 8.5.35

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r30639 - in /dev/tomcat/tomcat-8/v8.5.35: ./ bin/ bin/embed/ bin/extras/ src/

2018-11-03 Thread markt
Author: markt
Date: Sat Nov  3 18:01:48 2018
New Revision: 30639

Log:
Upload 8.5.35 for voting

Added:
dev/tomcat/tomcat-8/v8.5.35/
dev/tomcat/tomcat-8/v8.5.35/KEYS
dev/tomcat/tomcat-8/v8.5.35/README.html
dev/tomcat/tomcat-8/v8.5.35/RELEASE-NOTES
dev/tomcat/tomcat-8/v8.5.35/bin/
dev/tomcat/tomcat-8/v8.5.35/bin/README.html
dev/tomcat/tomcat-8/v8.5.35/bin/apache-tomcat-8.5.35-deployer.tar.gz   
(with props)
dev/tomcat/tomcat-8/v8.5.35/bin/apache-tomcat-8.5.35-deployer.tar.gz.asc
dev/tomcat/tomcat-8/v8.5.35/bin/apache-tomcat-8.5.35-deployer.tar.gz.sha512
dev/tomcat/tomcat-8/v8.5.35/bin/apache-tomcat-8.5.35-deployer.zip   (with 
props)
dev/tomcat/tomcat-8/v8.5.35/bin/apache-tomcat-8.5.35-deployer.zip.asc
dev/tomcat/tomcat-8/v8.5.35/bin/apache-tomcat-8.5.35-deployer.zip.sha512
dev/tomcat/tomcat-8/v8.5.35/bin/apache-tomcat-8.5.35-fulldocs.tar.gz   
(with props)
dev/tomcat/tomcat-8/v8.5.35/bin/apache-tomcat-8.5.35-fulldocs.tar.gz.asc
dev/tomcat/tomcat-8/v8.5.35/bin/apache-tomcat-8.5.35-fulldocs.tar.gz.sha512
dev/tomcat/tomcat-8/v8.5.35/bin/apache-tomcat-8.5.35-windows-x64.zip   
(with props)
dev/tomcat/tomcat-8/v8.5.35/bin/apache-tomcat-8.5.35-windows-x64.zip.asc
dev/tomcat/tomcat-8/v8.5.35/bin/apache-tomcat-8.5.35-windows-x64.zip.sha512
dev/tomcat/tomcat-8/v8.5.35/bin/apache-tomcat-8.5.35-windows-x86.zip   
(with props)
dev/tomcat/tomcat-8/v8.5.35/bin/apache-tomcat-8.5.35-windows-x86.zip.asc
dev/tomcat/tomcat-8/v8.5.35/bin/apache-tomcat-8.5.35-windows-x86.zip.sha512
dev/tomcat/tomcat-8/v8.5.35/bin/apache-tomcat-8.5.35.exe   (with props)
dev/tomcat/tomcat-8/v8.5.35/bin/apache-tomcat-8.5.35.exe.asc
dev/tomcat/tomcat-8/v8.5.35/bin/apache-tomcat-8.5.35.exe.sha512
dev/tomcat/tomcat-8/v8.5.35/bin/apache-tomcat-8.5.35.tar.gz   (with props)
dev/tomcat/tomcat-8/v8.5.35/bin/apache-tomcat-8.5.35.tar.gz.asc
dev/tomcat/tomcat-8/v8.5.35/bin/apache-tomcat-8.5.35.tar.gz.sha512
dev/tomcat/tomcat-8/v8.5.35/bin/apache-tomcat-8.5.35.zip   (with props)
dev/tomcat/tomcat-8/v8.5.35/bin/apache-tomcat-8.5.35.zip.asc
dev/tomcat/tomcat-8/v8.5.35/bin/apache-tomcat-8.5.35.zip.sha512
dev/tomcat/tomcat-8/v8.5.35/bin/embed/
dev/tomcat/tomcat-8/v8.5.35/bin/embed/apache-tomcat-8.5.35-embed.tar.gz   
(with props)
dev/tomcat/tomcat-8/v8.5.35/bin/embed/apache-tomcat-8.5.35-embed.tar.gz.asc

dev/tomcat/tomcat-8/v8.5.35/bin/embed/apache-tomcat-8.5.35-embed.tar.gz.sha512
dev/tomcat/tomcat-8/v8.5.35/bin/embed/apache-tomcat-8.5.35-embed.zip   
(with props)
dev/tomcat/tomcat-8/v8.5.35/bin/embed/apache-tomcat-8.5.35-embed.zip.asc
dev/tomcat/tomcat-8/v8.5.35/bin/embed/apache-tomcat-8.5.35-embed.zip.sha512
dev/tomcat/tomcat-8/v8.5.35/bin/extras/
dev/tomcat/tomcat-8/v8.5.35/bin/extras/catalina-jmx-remote.jar   (with 
props)
dev/tomcat/tomcat-8/v8.5.35/bin/extras/catalina-jmx-remote.jar.asc
dev/tomcat/tomcat-8/v8.5.35/bin/extras/catalina-jmx-remote.jar.sha512
dev/tomcat/tomcat-8/v8.5.35/bin/extras/catalina-ws.jar   (with props)
dev/tomcat/tomcat-8/v8.5.35/bin/extras/catalina-ws.jar.asc
dev/tomcat/tomcat-8/v8.5.35/bin/extras/catalina-ws.jar.sha512
dev/tomcat/tomcat-8/v8.5.35/src/
dev/tomcat/tomcat-8/v8.5.35/src/apache-tomcat-8.5.35-src.tar.gz   (with 
props)
dev/tomcat/tomcat-8/v8.5.35/src/apache-tomcat-8.5.35-src.tar.gz.asc
dev/tomcat/tomcat-8/v8.5.35/src/apache-tomcat-8.5.35-src.tar.gz.sha512
dev/tomcat/tomcat-8/v8.5.35/src/apache-tomcat-8.5.35-src.zip   (with props)
dev/tomcat/tomcat-8/v8.5.35/src/apache-tomcat-8.5.35-src.zip.asc
dev/tomcat/tomcat-8/v8.5.35/src/apache-tomcat-8.5.35-src.zip.sha512

Added: dev/tomcat/tomcat-8/v8.5.35/KEYS
==
--- dev/tomcat/tomcat-8/v8.5.35/KEYS (added)
+++ dev/tomcat/tomcat-8/v8.5.35/KEYS Sat Nov  3 18:01:48 2018
@@ -0,0 +1,616 @@
+This file contains the PGP&GPG keys of various Apache developers.
+Please don't use them for email unless you have to. Their main
+purpose is code signing.
+
+Apache users: pgp < KEYS
+Apache developers:
+(pgpk -ll  && pgpk -xa ) >> this file.
+  or
+(gpg --fingerprint --list-sigs 
+ && gpg --armor --export ) >> this file.
+
+Apache developers: please ensure that your key is also available via the
+PGP keyservers (such as pgpkeys.mit.edu).
+
+
+Type Bits/KeyIDDate   User ID
+pub  2048/F22C4FED 2001/07/02 Andy Armstrong 
+
+-BEGIN PGP PUBLIC KEY BLOCK-
+Version: PGPfreeware 7.0.3 for non-commercial use 
+
+mQGiBDtAWuURBADZ0KUEyUkSUiTA09e7tvEbX25STsjxrR+DNTainCls+XlkVOij
+gBv216lqge9tIsS0L6hCP4OQbFf/64qVtJssX4QXdyiZGb5wpmcj0Mz602Ew8r+N
+I0S5NvmogoYWW7BlP4r61jNxO5zrr03KaijM5r4ipJdLUxyOmM6P2jRPUwCg/5gm
+bpqiYl7pXX5FgDeB36tmD+UD/06iLqOnoiKO0vMbOk7URclhCObMNrHqxTxozMTS
+B9soYURbIeArei+plYo2n+1qB12ayybjhVu3uksXRdT9bEkyxMfslvLbIpDAG8Cz
+gNftTbKx/MVS7cQU0II8BKo2Akr

svn commit: r1845681 - in /tomcat/tc8.5.x/trunk: build.properties.default res/maven/mvn.properties.default webapps/docs/changelog.xml

2018-11-03 Thread markt
Author: markt
Date: Sat Nov  3 18:16:20 2018
New Revision: 1845681

URL: http://svn.apache.org/viewvc?rev=1845681&view=rev
Log:
Update version number for next development cycle

Modified:
tomcat/tc8.5.x/trunk/build.properties.default
tomcat/tc8.5.x/trunk/res/maven/mvn.properties.default
tomcat/tc8.5.x/trunk/webapps/docs/changelog.xml

Modified: tomcat/tc8.5.x/trunk/build.properties.default
URL: 
http://svn.apache.org/viewvc/tomcat/tc8.5.x/trunk/build.properties.default?rev=1845681&r1=1845680&r2=1845681&view=diff
==
--- tomcat/tc8.5.x/trunk/build.properties.default (original)
+++ tomcat/tc8.5.x/trunk/build.properties.default Sat Nov  3 18:16:20 2018
@@ -25,7 +25,7 @@
 # - Version Control Flags -
 version.major=8
 version.minor=5
-version.build=35
+version.build=36
 version.patch=0
 version.suffix=-dev
 

Modified: tomcat/tc8.5.x/trunk/res/maven/mvn.properties.default
URL: 
http://svn.apache.org/viewvc/tomcat/tc8.5.x/trunk/res/maven/mvn.properties.default?rev=1845681&r1=1845680&r2=1845681&view=diff
==
--- tomcat/tc8.5.x/trunk/res/maven/mvn.properties.default (original)
+++ tomcat/tc8.5.x/trunk/res/maven/mvn.properties.default Sat Nov  3 18:16:20 
2018
@@ -39,7 +39,7 @@ maven.asf.release.repo.url=https://repos
 maven.asf.release.repo.repositoryId=apache.releases.https
 
 # Release version info
-maven.asf.release.deploy.version=8.5.35
+maven.asf.release.deploy.version=8.5.36
 
 #Where do we load the libraries from
 tomcat.lib.path=../../output/build/lib

Modified: tomcat/tc8.5.x/trunk/webapps/docs/changelog.xml
URL: 
http://svn.apache.org/viewvc/tomcat/tc8.5.x/trunk/webapps/docs/changelog.xml?rev=1845681&r1=1845680&r2=1845681&view=diff
==
--- tomcat/tc8.5.x/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/tc8.5.x/trunk/webapps/docs/changelog.xml Sat Nov  3 18:16:20 2018
@@ -44,7 +44,9 @@
   They eventually become mixed with the numbered issues. (I.e., numbered
   issues do not "pop up" wrt. others).
 -->
-
+
+
+
   
 
   



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: [VOTE] Release Apache Tomcat 9.0.13

2018-11-03 Thread Igal Sapir
Mark,

On Sat, Nov 3, 2018 at 10:37 AM Mark Thomas  wrote:

> On 03/11/2018 16:54, Igal Sapir wrote:
> > On Sat, Nov 3, 2018 at 9:28 AM Mark Thomas  wrote:
> >> On 03/11/2018 16:20, Igal Sapir wrote:
> >>> On Sat, Nov 3, 2018 at 3:50 AM Mark Thomas  wrote:
>  On 02/11/2018 22:39, Igal Sapir wrote:
>
> 
>
> >> Now is probably a good time to complete the planned expansion of unit
> >> tests on Gump for Tomcat Native so we have coverage of all the OpenSSL
> >> versions.
> >
> > I'd be happy to help if given some guidance
>
> (Note: Gump seems to be having issues performing 'svn up' at the moment.
> Check any failures carefully in case this is the cause.)
>
> The plan was as follows:
> - Build all current OpenSSL versions (currently 4)
> - Build Tomcat Native 1.2.x for each OpenSSL version (i.e. 4)
> - No Tomcat Native 1.1.x builds
> - Test 9.0.x with all Native/OpenSSL combinations (i.e. 4)
> - Test 8.5.x with Native/OpenSSL 1.1.1 (latest LTS)
> - Test 7.0.x with Native/OpenSSL 1.0.2 (other LTS)
>
> The OpenSSL build and Tomcat Native builds with each OpenSSL version
> have already been configured.
>
> The Tomcat Native 1.1.x build has been disabled.
>
> The 8.5.x and 7.0.x are configured as desired. So it is just 9.0.x that
> needs completing. It should, largely, be a copy/paste exercise:
>
> The Gump metadata is here:
> http://svn.apache.org/repos/asf/gump/metadata/project/
>
> All ASF committers have write access.
>
> There is one file for each major Tomcat version.
> Each  block represents one Tomcat build or one test run.
>
> If you look in tomcat-trunk.xml you will see
> 
>
> This runs the unit tests with the APR connector. It is configured with:
>id="openssl" reference="outputpath"/>
>reference="home"/>
>
> which means it uses Tomcat Native build with OpenSSL master (or just
> OpenSSL master when using OpenSSL directly) for the tests.
>
> Currently we have:
>
> Tomcat 9.0.x testing APR/native with OpenSSL master
>
> This needs to be exapnded to:
> Tomcat 9.0.x testing APR/native with
>  - OpenSSL master
>  - OpenSSL 1.1.1
>  - OpenSSL 1.1.0
>  - OpenSSL 1.0.2
>
> We also have NIO tests running with JSSE. It would be prudent to add 4
> more test runs for each of the OpenSSL versions with NIO as well.
>
> Essentially, you edit the metadata file and then wait until the next
> test run (they run at , 0600, 1200 and 1800 UTC) and see if it
> worked. Repeat until all the test runs are passing.
>

Thank you for the detailed information.  I will be travelling in the coming
days but will look into this and hopefully make myself useful as soon as I
can.

Thanks,

Igal


[Bug 62881] New: Switch Windows signing to local signing tool

2018-11-03 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=62881

Bug ID: 62881
   Summary: Switch Windows signing to local signing tool
   Product: Tomcat 9
   Version: 9.0.x
  Hardware: PC
Status: NEW
  Severity: enhancement
  Priority: P2
 Component: Packaging
  Assignee: dev@tomcat.apache.org
  Reporter: ma...@apache.org
  Target Milestone: -

Digicert / Symantec provide a local tool for interfacing with the code signing
service.

https://docs.digicert.com/api-developer-portal/secure-app-service-api/downloads-and-resources/sas-csp-for-windows-hash-signing/

The primary advantage is that files do not need to up uploaded for signing.

This enhancement is to switch the Tomcat build to using this tool, removing the
need for the SignCode AntTask.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: [VOTE] Release Apache Tomcat 8.5.35

2018-11-03 Thread Igal Sapir
On Sat, Nov 3, 2018 at 10:55 AM Mark Thomas  wrote:

> The proposed Apache Tomcat 8.5.35 release is now available for voting.
>
> The major changes compared to the 8.5.34 release are:
>
> - support for TLSv1.3 when used with a JRE or OpenSSl version that
>   supports it
>
> - multiple improvements to the RewriteValve
>
> - correct several regressions in the JSP compiler
>
>
> Along with lots of other bug fixes and improvements.
>
> It can be obtained from:
> https://dist.apache.org/repos/dist/dev/tomcat/tomcat-8/v8.5.35/
> The Maven staging repo is:
> https://repository.apache.org/content/repositories/orgapachetomcat-1197/
> The svn tag is:
> http://svn.apache.org/repos/asf/tomcat/tc8.5.x/tags/TOMCAT_8_5_35/
>
> The proposed 8.5.35 release is:
> [ ] Broken - do not release
> [X] Stable - go ahead and release as 8.5.35
>

+1  NB

Ran build, test, and application that I'm currently working on.  Test shows
same false positives as on trunk so I'm ignoring those.

Igal


[GUMP@vmgump-vm3]: Project tomcat-native-1.2-1.0.2-buildconf (in module tomcat-native-1.2-1.0.2) failed

2018-11-03 Thread Bill Barker
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at gene...@gump.apache.org.

Project tomcat-native-1.2-1.0.2-buildconf has an issue affecting its community 
integration,
 and has been outstanding for 84 runs.
The current state of this project is 'Failed', with reason 'Update Failed'.

Full details are available at:

http://vmgump-vm3.apache.org/tomcat-native-1.2-1.0.2/tomcat-native-1.2-1.0.2-buildconf/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -INFO- Failed with reason update failed

To subscribe to this information via syndicated feeds:
- RSS: 
http://vmgump-vm3.apache.org/tomcat-native-1.2-1.0.2/tomcat-native-1.2-1.0.2-buildconf/rss.xml
- Atom: 
http://vmgump-vm3.apache.org/tomcat-native-1.2-1.0.2/tomcat-native-1.2-1.0.2-buildconf/atom.xml

== Gump Tracking Only ===
Produced by Apache Gump(TM) version 2.3.
Gump Run 2018110413, vmgump-vm3.apache.org:vmgump:2018110413
Gump E-mail Identifier (unique within run) #4.

--
Apache Gump
http://gump.apache.org/ [Instance: vmgump-vm3]

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[GUMP@vmgump-vm3]: Project tomcat-native-1.2-1.1.0-buildconf (in module tomcat-native-1.2-1.1.0) failed

2018-11-03 Thread Bill Barker
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at gene...@gump.apache.org.

Project tomcat-native-1.2-1.1.0-buildconf has an issue affecting its community 
integration,
 and has been outstanding for 84 runs.
The current state of this project is 'Failed', with reason 'Update Failed'.

Full details are available at:

http://vmgump-vm3.apache.org/tomcat-native-1.2-1.1.0/tomcat-native-1.2-1.1.0-buildconf/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -INFO- Failed with reason update failed

To subscribe to this information via syndicated feeds:
- RSS: 
http://vmgump-vm3.apache.org/tomcat-native-1.2-1.1.0/tomcat-native-1.2-1.1.0-buildconf/rss.xml
- Atom: 
http://vmgump-vm3.apache.org/tomcat-native-1.2-1.1.0/tomcat-native-1.2-1.1.0-buildconf/atom.xml

== Gump Tracking Only ===
Produced by Apache Gump(TM) version 2.3.
Gump Run 2018110413, vmgump-vm3.apache.org:vmgump:2018110413
Gump E-mail Identifier (unique within run) #6.

--
Apache Gump
http://gump.apache.org/ [Instance: vmgump-vm3]

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[GUMP@vmgump-vm3]: Project taglibs-parent (in module tomcat-taglibs) failed

2018-11-03 Thread Gump
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at gene...@gump.apache.org.

Project taglibs-parent has an issue affecting its community integration,
 and has been outstanding for 3 runs.
The current state of this project is 'Failed', with reason 'Update Failed'.

Full details are available at:
http://vmgump-vm3.apache.org/tomcat-taglibs/taglibs-parent/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole pom output [pom.xml] identifier set to project name
 -INFO- Failed with reason update failed
 -DEBUG- Extracted fallback artifacts from Gump Repository

To subscribe to this information via syndicated feeds:
- RSS: http://vmgump-vm3.apache.org/tomcat-taglibs/taglibs-parent/rss.xml
- Atom: http://vmgump-vm3.apache.org/tomcat-taglibs/taglibs-parent/atom.xml

== Gump Tracking Only ===
Produced by Apache Gump(TM) version 2.3.
Gump Run 2018110413, vmgump-vm3.apache.org:vmgump:2018110413
Gump E-mail Identifier (unique within run) #12.

--
Apache Gump
http://gump.apache.org/ [Instance: vmgump-vm3]

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[GUMP@vmgump-vm3]: Project tomcat-native-1.2-1.1.0-configure (in module tomcat-native-1.2-1.1.0) failed

2018-11-03 Thread Bill Barker
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at gene...@gump.apache.org.

Project tomcat-native-1.2-1.1.0-configure has an issue affecting its community 
integration,
 and has been outstanding for 19 runs.
The current state of this project is 'Failed', with reason 'Update Failed'.

Full details are available at:

http://vmgump-vm3.apache.org/tomcat-native-1.2-1.1.0/tomcat-native-1.2-1.1.0-configure/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -INFO- Failed with reason update failed

To subscribe to this information via syndicated feeds:
- RSS: 
http://vmgump-vm3.apache.org/tomcat-native-1.2-1.1.0/tomcat-native-1.2-1.1.0-configure/rss.xml
- Atom: 
http://vmgump-vm3.apache.org/tomcat-native-1.2-1.1.0/tomcat-native-1.2-1.1.0-configure/atom.xml

== Gump Tracking Only ===
Produced by Apache Gump(TM) version 2.3.
Gump Run 2018110413, vmgump-vm3.apache.org:vmgump:2018110413
Gump E-mail Identifier (unique within run) #13.

--
Apache Gump
http://gump.apache.org/ [Instance: vmgump-vm3]

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[GUMP@vmgump-vm3]: Project tomcat-native-1.2-1.1.0-make (in module tomcat-native-1.2-1.1.0) failed

2018-11-03 Thread Bill Barker
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at gene...@gump.apache.org.

Project tomcat-native-1.2-1.1.0-make has an issue affecting its community 
integration,
 and has been outstanding for 19 runs.
The current state of this project is 'Failed', with reason 'Update Failed'.

Full details are available at:

http://vmgump-vm3.apache.org/tomcat-native-1.2-1.1.0/tomcat-native-1.2-1.1.0-make/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -INFO- Failed with reason update failed

To subscribe to this information via syndicated feeds:
- RSS: 
http://vmgump-vm3.apache.org/tomcat-native-1.2-1.1.0/tomcat-native-1.2-1.1.0-make/rss.xml
- Atom: 
http://vmgump-vm3.apache.org/tomcat-native-1.2-1.1.0/tomcat-native-1.2-1.1.0-make/atom.xml

== Gump Tracking Only ===
Produced by Apache Gump(TM) version 2.3.
Gump Run 2018110413, vmgump-vm3.apache.org:vmgump:2018110413
Gump E-mail Identifier (unique within run) #14.

--
Apache Gump
http://gump.apache.org/ [Instance: vmgump-vm3]

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[GUMP@vmgump-vm3]: Project taglibs-standard-spec (in module tomcat-taglibs) failed

2018-11-03 Thread Gump
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at gene...@gump.apache.org.

Project taglibs-standard-spec has an issue affecting its community integration,
 and has been outstanding for 3 runs.
The current state of this project is 'Failed', with reason 'Update Failed'.

Full details are available at:
http://vmgump-vm3.apache.org/tomcat-taglibs/taglibs-standard-spec/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Sole jar output [taglibs-standard-spec-*[0-9T].jar] identifier set to 
project name
 -INFO- Failed with reason update failed
 -DEBUG- Extracted fallback artifacts from Gump Repository

To subscribe to this information via syndicated feeds:
- RSS: http://vmgump-vm3.apache.org/tomcat-taglibs/taglibs-standard-spec/rss.xml
- Atom: 
http://vmgump-vm3.apache.org/tomcat-taglibs/taglibs-standard-spec/atom.xml

== Gump Tracking Only ===
Produced by Apache Gump(TM) version 2.3.
Gump Run 2018110413, vmgump-vm3.apache.org:vmgump:2018110413
Gump E-mail Identifier (unique within run) #21.

--
Apache Gump
http://gump.apache.org/ [Instance: vmgump-vm3]

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org