buildbot success in on tomee-trunk-ubuntu-jvm8

2018-06-11 Thread buildbot
The Buildbot has detected a restored build on builder tomee-trunk-ubuntu-jvm8 
while building tomee. Full details are available at:
https://ci.apache.org/builders/tomee-trunk-ubuntu-jvm8/builds/797

Buildbot URL: https://ci.apache.org/

Buildslave for this Build: bb_qnode5_ubuntu

Build Reason: The SingleBranchScheduler scheduler named 
'on-tomee-trunk-ubuntu-jvm8-commit' triggered this build
Build Source Stamp: [branch master] 40808d57a1268ee263117606da0aafb2a1d406d8
Blamelist: Jonathan Gallimore 

Build succeeded!

Sincerely,
 -The Buildbot





tomee git commit: Don't write this archive to disk

2018-06-11 Thread jgallimore
Repository: tomee
Updated Branches:
  refs/heads/master 68116484a -> 40808d57a


Don't write this archive to disk


Project: http://git-wip-us.apache.org/repos/asf/tomee/repo
Commit: http://git-wip-us.apache.org/repos/asf/tomee/commit/40808d57
Tree: http://git-wip-us.apache.org/repos/asf/tomee/tree/40808d57
Diff: http://git-wip-us.apache.org/repos/asf/tomee/diff/40808d57

Branch: refs/heads/master
Commit: 40808d57a1268ee263117606da0aafb2a1d406d8
Parents: 6811648
Author: Jonathan Gallimore 
Authored: Mon Jun 11 17:24:19 2018 +0100
Committer: Jonathan Gallimore 
Committed: Mon Jun 11 17:24:19 2018 +0100

--
 .../apache/openejb/arquillian/tests/ear/EarCommonsCodecTest.java | 4 
 1 file changed, 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/tomee/blob/40808d57/arquillian/arquillian-tomee-tests/arquillian-tomee-webprofile-tests/src/test/java/org/apache/openejb/arquillian/tests/ear/EarCommonsCodecTest.java
--
diff --git 
a/arquillian/arquillian-tomee-tests/arquillian-tomee-webprofile-tests/src/test/java/org/apache/openejb/arquillian/tests/ear/EarCommonsCodecTest.java
 
b/arquillian/arquillian-tomee-tests/arquillian-tomee-webprofile-tests/src/test/java/org/apache/openejb/arquillian/tests/ear/EarCommonsCodecTest.java
index 7fa3101..572dbcf 100644
--- 
a/arquillian/arquillian-tomee-tests/arquillian-tomee-webprofile-tests/src/test/java/org/apache/openejb/arquillian/tests/ear/EarCommonsCodecTest.java
+++ 
b/arquillian/arquillian-tomee-tests/arquillian-tomee-webprofile-tests/src/test/java/org/apache/openejb/arquillian/tests/ear/EarCommonsCodecTest.java
@@ -54,10 +54,6 @@ public class EarCommonsCodecTest {
 final EnterpriseArchive ear = 
ShrinkWrap.create(EnterpriseArchive.class, 
"codec.ear").addAsModule(ejbJar).addAsModule(webapp);
 ear.addAsLibraries(codecLibs);
 
-System.out.println(ear.toString(true));
-
-ear.as(ZipExporter.class).exportTo(new File("/tmp/codec.ear"));
-
 return ear;
 }