Discussion:
[GitHub] ant pull request #54: Let’s use Ivy (properly!) and drop Maven Ant tasks, ...
twogee
2017-12-26 20:56:38 UTC
Permalink
GitHub user twogee opened a pull request:

https://github.com/apache/ant/pull/54

Let’s use Ivy (properly!) and drop Maven Ant tasks, Commons OpenPGP, 



 Python, etc. The implementation is incomplete, please comment.
I put extraneous stuff in `attic` subdirectory for reference.
`release/upload.xml` could very well be integrated in build.xml (because of `project.version`).
`fetch.xml` does not implement all targets nor updating Ivy distribution
(could be done by restricting ivy:resolve to a particular conf). 🎅

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/twogee/ant dog-food-ivy

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/ant/pull/54.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #54

----
commit 86494a660fe9f3d202de3b4b069bf0b65a29c500
Author: twogee <***@...>
Date: 2017-12-26T20:51:41Z

Let’s use Ivy (properly!) and drop Maven Ant tasks, Commons OpenPGP, Python, etc

----


---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2017-12-27 06:09:12 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Linux/16/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2017-12-27 06:10:05 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Windows/22/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
bodewig
2017-12-27 12:10:54 UTC
Permalink
Github user bodewig commented on the issue:

https://github.com/apache/ant/pull/54

I don't have any problem with you replacing stuff that works with other stuff that works as well. But before you put too much effort into it, maybe you should look through https://github.com/apache/ant/blob/master/ReleaseInstructions to see what is and what is not used during a release at all.

As I've preformed a few releases myself let me start by telling you that I have run `fetch.xml` when we upgraded BCEL but usually don't use it at all as my workspace already contains everything I need to build a release.

I have never used `build-osx-pkg.py` (and am not aware of anybody ever using it, `buildosxpackage` has never been true for me and there is no `pkg` file in http://archive.apache.org/dist/ant/binaries/) or `signit.xml` (as I prefer to use the command line for that, I think Antoine has used it in the past).

As I usually am not an Ivy user I'd prefer my everyday build of Ant to not require me to place Ivy on the CLASSPATH, I'm totally content with not integrating upload with the normal build process as uploading is a very rare exceptional use case only ever performed by a single person. But that's just my preference, YMMV.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
twogee
2017-12-27 17:00:29 UTC
Permalink
Github user twogee commented on the issue:

https://github.com/apache/ant/pull/54

I would like to point out one distinction: I would like to replace the stuff that works (sort of) with **less** stuff that does the same job, and hopefully more. Besides, my beef with Maven Ant tasks was that they morphed into Aether Ant tasks, and then Maven Resolver Ant tasks and changed syntax along the way, and I couldn't add Bintray using Maven Ant tasks (at least in a nontrivial way).

`buildoxspackage` is a requested feature, and it does no harm to keep it, albeit in a simple native implementation.

The point with `signit.xml` is that Ivy does it all in one go with `upload.xml` and with less stuff in `ivy.xml`

I can change `fetch.xml` so that release conf goes into a separate place, and so Ivy + BouncyCastle are kept out of sight (unlike Maven Ant tasks).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
bodewig
2017-12-27 20:28:21 UTC
Permalink
Github user bodewig commented on the issue:

https://github.com/apache/ant/pull/54

I didn't suggest to remove the `buildosxpackage` feature, just that you are putting quite a bit of effort into an area that is probably never used - at least not much.

As I said, I don't use `signit` at all and I do not want to give the passphrase to my PGP key on the command line. As long as I can keep using the gpg command line and Ivy will then upload the signatures I've created, I'm fine with it.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
twogee
2017-12-27 21:55:47 UTC
Permalink
Github user twogee commented on the issue:

https://github.com/apache/ant/pull/54

`buildosxpackage` was peanuts compared to getting rid of `root` system property kludge for surefire in tests.

BTW, Ivy `signer` saves you work with

1. signing in advance
2. having to declare all signatures in `ivy.xml`
3. publishing extraneous checksums for signatures

I'd rather add another ivy.xml for distributions that would use filesystem resolver to publish signed distributions into the svn repo... [svn resolver](https://github.com/massdosage/ivysvn) for Ivy seems a bit of an overkill.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
twogee
2017-12-27 22:21:53 UTC
Permalink
Github user twogee commented on the issue:

https://github.com/apache/ant/pull/54

Re password input: isn't there a [task](https://ant.apache.org/manual/Tasks/input.html) with SecureInputHandler for that?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
bodewig
2017-12-28 10:05:10 UTC
Permalink
Github user bodewig commented on the issue:

https://github.com/apache/ant/pull/54

For the changes you plan to introduce to the release process I urge you to not change things just because they look better to you. As it stands I'd be your main user and I'm fine with the process as it is and am completely happy with signing artifacts manually (which happens whenever I cut a release, so twice every few months at best).

Our Nexus is going to create extraneous checksums anyway, no matter what Ivy does. Not sure about your second point (I don't declare anything anywhere). You are completely losing me when you talk about the svn resolver, I don't see any reason to use Ivy in order to publish artifacts to dist.apache.org at all.



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
twogee
2017-12-28 11:02:22 UTC
Permalink
Github user twogee commented on the issue:

https://github.com/apache/ant/pull/54

I am very well aware of your role. I hope we agree about KISS or continuous improvement, though.

In particular, regarding the second point, please compare `release/ivy.xml` with `ivy.xml` (too bad the diff is so huge that Git thinks they're two different files). The price of simplification to pay, so to speak, is signing while uploading. If you're not willing to discuss that, we can leave the whole upload discussion out and only focus on fetch. However, there is one more point with distributions (zip and tar), if you bear with me.

It is my understanding of the release process that distributions are manually copied and checked into Subversion. My point was that the process could be better documented by creating an extra ivy.xml which would be used by upload (or upload-like) process and thus be semi-automated.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
bodewig
2017-12-28 11:45:03 UTC
Permalink
Github user bodewig commented on the issue:

https://github.com/apache/ant/pull/54

Sorry if I sounds bossy here, this is not at all what I'm trying to be. It's more like your user asking you to verify your product improvements are actually improvements for them. :-)

I'm certainly not against improvements, neither continuous nor as bigger bangs.

TBH I don't really care for the content of a write-once Ivy file much, but that may be just me. Maybe I'm (a bit) old-fashioned, I actually really want to upload files to Nexus and svn manually rather than automate this, as this is the step where I personally verify all artifacts one more time before calling for a vote.

We probably should move the upload discussion to the dev list and really focus on the fetch part here.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
bodewig
2017-12-28 16:33:36 UTC
Permalink
Github user bodewig commented on the issue:

https://github.com/apache/ant/pull/54
Post by bodewig
We probably should move the upload discussion to the dev list
https://lists.apache.org/thread.html/2a951ca8c7808e604e243567157898730cba4d41f575d92adabaf264@%3Cdev.ant.apache.org%3E


---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
twogee
2017-12-28 17:42:11 UTC
Permalink
Github user twogee commented on the issue:

https://github.com/apache/ant/pull/54

Good idea. Meanwhile, I'd like commit the pkg-distribution target sans python to avoid distraction.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2017-12-31 09:42:48 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Windows/23/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2017-12-31 09:43:29 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Linux/17/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-01-16 19:57:17 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Linux/18/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-01-16 21:07:32 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Windows/24/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-01-16 21:12:16 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Linux/19/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-01-16 21:56:47 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Windows/25/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
twogee
2018-01-18 22:30:51 UTC
Permalink
Github user twogee commented on the issue:

https://github.com/apache/ant/pull/54

I revised the documentation as suggested and added correct entries for Groovy in the process.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-01-18 22:38:25 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Windows/26/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-01-18 23:29:36 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Linux/20/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-01-19 06:38:53 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Linux/21/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-01-19 06:39:45 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Windows/27/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-01-19 09:34:10 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Linux/22/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-01-19 09:35:12 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Windows/28/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-01-19 10:29:32 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Linux/23/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-01-19 10:31:04 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Windows/29/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-01-19 17:18:14 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Windows/30/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-01-19 17:19:05 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Linux/24/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-01-20 08:48:03 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Linux/25/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-01-20 08:49:27 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Windows/31/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-01-20 09:27:44 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Windows/32/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-01-20 09:27:45 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Linux/26/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-01-20 09:43:49 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Linux/27/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-01-20 09:46:07 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Windows/33/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-01-21 11:45:53 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Linux/28/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-01-21 11:46:30 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Windows/34/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-03-19 00:27:50 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Linux/46/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-03-19 00:28:48 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Windows/52/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-03-22 19:22:06 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Windows/53/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-03-22 19:36:58 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Linux/47/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-03-25 14:09:38 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Linux/48/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-03-25 14:10:36 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Windows/54/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-03-28 02:52:22 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Linux/49/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-03-28 02:52:36 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Windows/55/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-04-22 23:08:26 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Linux/50/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-04-22 23:17:27 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Windows/56/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-04-30 09:31:31 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Linux/51/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-04-30 09:32:42 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Windows/57/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-05-11 09:39:29 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Windows/58/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-05-11 10:00:13 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Linux/52/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-05-16 20:19:58 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Linux/53/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-05-16 20:20:56 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Windows/59/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-05-21 15:35:20 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Linux/54/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-05-21 15:36:08 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Windows/60/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-05-26 22:35:57 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Windows/61/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-05-26 22:39:37 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Linux/55/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-06-01 19:55:50 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Windows/62/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-06-01 20:21:49 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Linux/56/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-06-01 20:43:26 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Windows/63/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-06-01 21:10:24 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Linux/57/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-06-10 05:18:15 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Linux/58/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-06-10 05:19:25 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Windows/64/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-07-03 11:04:56 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Linux/59/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-07-03 11:22:53 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Windows/65/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-07-04 16:42:27 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Linux/60/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-07-04 16:43:27 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Windows/66/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-08-12 12:25:01 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Windows/79/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-08-12 12:25:13 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Linux/73/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-08-12 20:35:47 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Windows/82/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-08-12 20:36:09 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Linux/76/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-08-20 15:26:36 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Linux/77/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-08-20 15:42:56 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Windows/83/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-08-28 19:47:40 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Linux/79/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-08-28 19:47:45 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Windows/85/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-11-09 06:04:24 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Windows/94/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org
asfgit
2018-11-09 06:05:46 UTC
Permalink
Github user asfgit commented on the issue:

https://github.com/apache/ant/pull/54


Refer to this link for build results (access rights to CI server needed):
https://builds.apache.org/job/Ant%20Github-PR-Linux/88/



---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-***@ant.apache.org
For additional commands, e-mail: dev-***@ant.apache.org

Loading...