[1/2] ant git commit: Inline/whitespace/format

2018-04-12 Thread gintas
Repository: ant
Updated Branches:
  refs/heads/master 110081eef -> 061d29b6f


Inline/whitespace/format

Project: http://git-wip-us.apache.org/repos/asf/ant/repo
Commit: http://git-wip-us.apache.org/repos/asf/ant/commit/96ed9bdf
Tree: http://git-wip-us.apache.org/repos/asf/ant/tree/96ed9bdf
Diff: http://git-wip-us.apache.org/repos/asf/ant/diff/96ed9bdf

Branch: refs/heads/master
Commit: 96ed9bdfd06c41860ccee7e860f865b44b8afc13
Parents: 110081e
Author: Gintas Grigelionis 
Authored: Thu Apr 12 08:33:31 2018 +0200
Committer: Gintas Grigelionis 
Committed: Thu Apr 12 09:19:49 2018 +0200

--
 src/main/org/apache/tools/ant/taskdefs/Checksum.java  | 6 +-
 src/main/org/apache/tools/ant/taskdefs/ManifestClassPath.java | 3 +--
 src/main/org/apache/tools/ant/taskdefs/SQLExec.java   | 3 ++-
 src/main/org/apache/tools/ant/taskdefs/optional/Javah.java| 6 ++
 .../org/apache/tools/ant/taskdefs/optional/net/RExecTask.java | 4 ++--
 .../ant/types/selectors/modifiedselector/DigestAlgorithm.java | 6 +-
 src/main/org/apache/tools/ant/util/FileUtils.java | 5 ++---
 src/main/org/apache/tools/ant/util/Native2AsciiUtils.java | 7 +--
 src/main/org/apache/tools/tar/TarUtils.java   | 3 +--
 9 files changed, 13 insertions(+), 30 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/ant/blob/96ed9bdf/src/main/org/apache/tools/ant/taskdefs/Checksum.java
--
diff --git a/src/main/org/apache/tools/ant/taskdefs/Checksum.java 
b/src/main/org/apache/tools/ant/taskdefs/Checksum.java
index e753d94..9632723 100644
--- a/src/main/org/apache/tools/ant/taskdefs/Checksum.java
+++ b/src/main/org/apache/tools/ant/taskdefs/Checksum.java
@@ -578,11 +578,7 @@ public class Checksum extends MatchingTask implements 
Condition {
 private String createDigestString(byte[] fileDigest) {
 StringBuilder checksumSb = new StringBuilder();
 for (byte digestByte : fileDigest) {
-String hexStr = Integer.toHexString(BYTE_MASK & digestByte);
-if (hexStr.length() < 2) {
-checksumSb.append('0');
-}
-checksumSb.append(hexStr);
+checksumSb.append(String.format("%02x", BYTE_MASK & digestByte));
 }
 return checksumSb.toString();
 }

http://git-wip-us.apache.org/repos/asf/ant/blob/96ed9bdf/src/main/org/apache/tools/ant/taskdefs/ManifestClassPath.java
--
diff --git a/src/main/org/apache/tools/ant/taskdefs/ManifestClassPath.java 
b/src/main/org/apache/tools/ant/taskdefs/ManifestClassPath.java
index 2872c7f..17aa051 100644
--- a/src/main/org/apache/tools/ant/taskdefs/ManifestClassPath.java
+++ b/src/main/org/apache/tools/ant/taskdefs/ManifestClassPath.java
@@ -76,9 +76,8 @@ public class ManifestClassPath extends Task {
 final FileUtils fileUtils = FileUtils.getFileUtils();
 dir = fileUtils.normalize(dir.getAbsolutePath());
 
-String[] elements = path.list();
 StringBuilder buffer = new StringBuilder();
-for (String element : elements) {
+for (String element : path.list()) {
 // Normalize the current file
 File pathEntry = new File(element);
 String fullPath = pathEntry.getAbsolutePath();

http://git-wip-us.apache.org/repos/asf/ant/blob/96ed9bdf/src/main/org/apache/tools/ant/taskdefs/SQLExec.java
--
diff --git a/src/main/org/apache/tools/ant/taskdefs/SQLExec.java 
b/src/main/org/apache/tools/ant/taskdefs/SQLExec.java
index 9d4b5d6..55f80c6 100644
--- a/src/main/org/apache/tools/ant/taskdefs/SQLExec.java
+++ b/src/main/org/apache/tools/ant/taskdefs/SQLExec.java
@@ -906,7 +906,8 @@ public class SQLExec extends JDBCTask {
 }
 
 private String maybeQuote(String s) {
-if (csvQuoteChar == null || s == null || (!forceCsvQuoteChar && 
!s.contains(csvColumnSep) && !s.contains(csvQuoteChar))) {
+if (csvQuoteChar == null || s == null
+|| (!forceCsvQuoteChar && !s.contains(csvColumnSep) && 
!s.contains(csvQuoteChar))) {
 return s;
 }
 StringBuilder sb = new StringBuilder(csvQuoteChar);

http://git-wip-us.apache.org/repos/asf/ant/blob/96ed9bdf/src/main/org/apache/tools/ant/taskdefs/optional/Javah.java
--
diff --git a/src/main/org/apache/tools/ant/taskdefs/optional/Javah.java 
b/src/main/org/apache/tools/ant/taskdefs/optional/Javah.java
index b5dfddc..17dd9d7 100644
--- a/src/main/org/apache/tools/ant/taskdefs/optional/Javah.java
+++ b/src/main/org/apache/tools/ant/taskdefs/optional/Javah.java
@@ -34,7 +34,6 @@ import org.apache.tools.ant.types.Commandline;
 imp

[2/2] ant git commit: Use foreach loops

2018-04-12 Thread gintas
Use foreach loops

Project: http://git-wip-us.apache.org/repos/asf/ant/repo
Commit: http://git-wip-us.apache.org/repos/asf/ant/commit/061d29b6
Tree: http://git-wip-us.apache.org/repos/asf/ant/tree/061d29b6
Diff: http://git-wip-us.apache.org/repos/asf/ant/diff/061d29b6

Branch: refs/heads/master
Commit: 061d29b6fe242c365705a76b28112392de9cad80
Parents: 96ed9bd
Author: Gintas Grigelionis 
Authored: Thu Apr 12 09:22:30 2018 +0200
Committer: Gintas Grigelionis 
Committed: Thu Apr 12 09:22:30 2018 +0200

--
 src/main/org/apache/tools/ant/Project.java| 4 +---
 src/main/org/apache/tools/ant/taskdefs/CVSPass.java   | 4 ++--
 src/main/org/apache/tools/ant/taskdefs/Concat.java| 7 ++-
 src/main/org/apache/tools/ant/taskdefs/MacroInstance.java | 3 +--
 src/main/org/apache/tools/ant/taskdefs/SQLExec.java   | 4 +---
 .../org/apache/tools/ant/taskdefs/condition/IsSigned.java | 4 +---
 .../tools/ant/taskdefs/optional/jsp/Jasper41Mangler.java  | 4 +---
 .../tools/ant/taskdefs/optional/jsp/JspNameMangler.java   | 3 +--
 src/main/org/apache/tools/ant/util/StringUtils.java   | 3 +--
 src/main/org/apache/tools/tar/TarOutputStream.java| 7 +++
 10 files changed, 14 insertions(+), 29 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/ant/blob/061d29b6/src/main/org/apache/tools/ant/Project.java
--
diff --git a/src/main/org/apache/tools/ant/Project.java 
b/src/main/org/apache/tools/ant/Project.java
index 8d59ba0..1d1da17 100644
--- a/src/main/org/apache/tools/ant/Project.java
+++ b/src/main/org/apache/tools/ant/Project.java
@@ -941,9 +941,7 @@ public class Project implements ResourceFactory {
  */
 public void setSystemProperties() {
 final Properties systemP = System.getProperties();
-final Enumeration e = systemP.propertyNames();
-while (e.hasMoreElements()) {
-final String propertyName = (String) e.nextElement();
+for (final String propertyName : systemP.stringPropertyNames()) {
 final String value = systemP.getProperty(propertyName);
 if (value != null) {
 this.setPropertyInternal(propertyName, value);

http://git-wip-us.apache.org/repos/asf/ant/blob/061d29b6/src/main/org/apache/tools/ant/taskdefs/CVSPass.java
--
diff --git a/src/main/org/apache/tools/ant/taskdefs/CVSPass.java 
b/src/main/org/apache/tools/ant/taskdefs/CVSPass.java
index 19a6a41..2ea2e11 100644
--- a/src/main/org/apache/tools/ant/taskdefs/CVSPass.java
+++ b/src/main/org/apache/tools/ant/taskdefs/CVSPass.java
@@ -131,8 +131,8 @@ public class CVSPass extends Task {
 
 private final String mangle(String password) {
 StringBuilder buf = new StringBuilder();
-for (int i = 0; i < password.length(); i++) {
-buf.append(shifts[password.charAt(i)]);
+for (final char ch : password.toCharArray()) {
+buf.append(shifts[ch]);
 }
 return buf.toString();
 }

http://git-wip-us.apache.org/repos/asf/ant/blob/061d29b6/src/main/org/apache/tools/ant/taskdefs/Concat.java
--
diff --git a/src/main/org/apache/tools/ant/taskdefs/Concat.java 
b/src/main/org/apache/tools/ant/taskdefs/Concat.java
index 59802f9..b58928d 100644
--- a/src/main/org/apache/tools/ant/taskdefs/Concat.java
+++ b/src/main/org/apache/tools/ant/taskdefs/Concat.java
@@ -185,12 +185,9 @@ public class Concat extends Task implements 
ResourceCollection {
 value = "";
 }
 if (trimLeading) {
-char[] current = value.toCharArray();
-StringBuilder b = new StringBuilder(current.length);
+StringBuilder b = new StringBuilder();
 boolean startOfLine = true;
-int pos = 0;
-while (pos < current.length) {
-char ch = current[pos++];
+for (final char ch : value.toCharArray()) {
 if (startOfLine) {
 if (ch == ' ' || ch == '\t') {
 continue;

http://git-wip-us.apache.org/repos/asf/ant/blob/061d29b6/src/main/org/apache/tools/ant/taskdefs/MacroInstance.java
--
diff --git a/src/main/org/apache/tools/ant/taskdefs/MacroInstance.java 
b/src/main/org/apache/tools/ant/taskdefs/MacroInstance.java
index 23ff8ab..7190e39 100644
--- a/src/main/org/apache/tools/ant/taskdefs/MacroInstance.java
+++ b/src/main/org/apache/tools/ant/taskdefs/MacroInstance.java
@@ -174,8 +174,7 @@ public class MacroInstance extends Task implements 
DynamicAttribute, TaskContain

[Bug 62286] New: Illegalargument exception occurrs while parsing properties from a file that contains \u in its property key,value

2018-04-12 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=62286

Bug ID: 62286
   Summary: Illegalargument exception occurrs while  parsing
properties from a file that contains \u in its
property key,value
   Product: Ant
   Version: unspecified
  Hardware: PC
OS: All
Status: NEW
  Severity: normal
  Priority: P2
 Component: Core tasks
  Assignee: notifications@ant.apache.org
  Reporter: vikas.pachi...@gmail.com
  Target Milestone: ---

Created attachment 35858
  --> https://bz.apache.org/bugzilla/attachment.cgi?id=35858&action=edit
two files with description given in problem description

Introduction
=
Consider the following code snippet in ant's build.xml file


  



Bascially the above snippet is trying to
1. Run "svn info" command and put the output into the file "svn.properties"
2. Read the properties from the file "svn.properties" and prefix it with SVN

Problem
===
We get the illegalargument exception while reading the properties from the file
"svn.propeties"

Cause
=
The property file contains "\universal..." as part of the string.
Java's "java.util.Properties.loadconvert" api reads the '\u' character and
assumes that the character is represented as Unicode character.
But the character after '\u' is 'n' and NOT one of the hex digits.
Thus the exception is raised.

Reproduction
===
Two files have been attached to easily reproduce and see the issue.
svn.properties - contains the properties which can generate the mentioned
issue.
TestSvnProp.java - a main file which tries to load the svn.properties

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 62286] Illegalargument exception occurrs while parsing properties from a file that contains \u in its property key,value

2018-04-12 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=62286

--- Comment #1 from Stefan Bodewig  ---
This is not a bug in Ant, your svn-properties file simply is not a valid Java
properties file and the property task explicitly only supports reading that.
Apart from Unicode escapes there are a few other special rules you need to
adhere to like escaping colons and backslashes with backslashes.

In short you have to tweak svn's output in order to ensure it is a valid java
properties file.

-- 
You are receiving this mail because:
You are the assignee for the bug.

Build failed in Jenkins: Ant-Build-Matrix-master-Linux » xenial,JDK 11 b8 (early access build) #1204

2018-04-12 Thread Apache Jenkins Server
See 


--
Started by upstream project "Ant-Build-Matrix-master-Linux" build number 1204
originally caused by:
 Started by an SCM change
[EnvInject] - Loading node environment variables.
Building remotely on H18 (Hadoop xenial) in workspace 

Cloning the remote Git repository
Cloning repository https://git-wip-us.apache.org/repos/asf/ant.git
 > git init 
 > 
 >  # timeout=10
Fetching upstream changes from https://git-wip-us.apache.org/repos/asf/ant.git
 > git --version # timeout=10
 > git fetch --tags --progress https://git-wip-us.apache.org/repos/asf/ant.git 
 > +refs/heads/*:refs/remotes/origin/*
 > git config remote.origin.url https://git-wip-us.apache.org/repos/asf/ant.git 
 > # timeout=10
 > git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # 
 > timeout=10
 > git config remote.origin.url https://git-wip-us.apache.org/repos/asf/ant.git 
 > # timeout=10
Cleaning workspace
 > git rev-parse --verify HEAD # timeout=10
No valid HEAD. Skipping the resetting
 > git clean -fdx # timeout=10
Fetching upstream changes from https://git-wip-us.apache.org/repos/asf/ant.git
 > git fetch --tags --progress https://git-wip-us.apache.org/repos/asf/ant.git 
 > +refs/heads/*:refs/remotes/origin/*
Checking out Revision 061d29b6fe242c365705a76b28112392de9cad80 
(refs/remotes/origin/master)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 061d29b6fe242c365705a76b28112392de9cad80
Commit message: "Use foreach loops"
First time build. Skipping changelog.
[EnvInject] - Executing scripts and injecting environment variables after the 
SCM step.
[EnvInject] - Injecting as environment variables the properties content 
LANG=en_US.utf8

[EnvInject] - Variables injected successfully.
[JDK 11 b8 (early access build)] $ /home/jenkins/tools/ant/latest/bin/ant -file 
launch-build.xml "-Djdk=JDK 11 b8 (early access build)" -DOS=xenial -Djenkins=t
Error: JAVA_HOME is not defined correctly.
  We cannot execute /home/jenkins/tools/java/jdk-11-ea+8/bin/java
Build step 'Invoke Ant' marked build as failure
Recording test results
ERROR: Step ?Publish JUnit test result report? failed: No test report files 
were found. Configuration error?



svn commit: r26310 - /dev/ant/ivy/2.5.0-rc1/

2018-04-12 Thread hibou
Author: hibou
Date: Thu Apr 12 15:46:10 2018
New Revision: 26310

Log:
Ivy 2.5.0-rc1 distribution

Added:
dev/ant/ivy/2.5.0-rc1/
dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-bin-with-deps.tar.gz   (with 
props)
dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-bin-with-deps.tar.gz.asc
dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-bin-with-deps.tar.gz.sha1
dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-bin-with-deps.tar.gz.sha512
dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-bin-with-deps.zip   (with props)
dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-bin-with-deps.zip.asc
dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-bin-with-deps.zip.sha1
dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-bin-with-deps.zip.sha512
dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-bin.tar.gz   (with props)
dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-bin.tar.gz.asc
dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-bin.tar.gz.sha1
dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-bin.tar.gz.sha512
dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-bin.zip   (with props)
dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-bin.zip.asc
dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-bin.zip.sha1
dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-bin.zip.sha512
dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-src.tar.gz   (with props)
dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-src.tar.gz.asc
dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-src.tar.gz.sha1
dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-src.tar.gz.sha512
dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-src.zip   (with props)
dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-src.zip.asc
dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-src.zip.sha1
dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-src.zip.sha512

Added: dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-bin-with-deps.tar.gz
==
Binary file - no diff available.

Propchange: dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-bin-with-deps.tar.gz
--
svn:mime-type = application/octet-stream

Added: dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-bin-with-deps.tar.gz.asc
==
--- dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-bin-with-deps.tar.gz.asc (added)
+++ dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-bin-with-deps.tar.gz.asc Thu Apr 
12 15:46:10 2018
@@ -0,0 +1,17 @@
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v1
+
+iQIcBAABCgAGBQJaz3y2AAoJEDeg4GKXFzH71cwQAJgXjmlUupfkc5lgUpPgnkDx
+vqcyAUato9ft05eh/7yAfTvjFpthZ9S+RkR9vSYx6z2cdKAMBdE48rpaHdRlOK8J
+gdYZ/FYP+PboOo6gMrYg7WhJRjLSkL61/Y2bjpZ2fMWLwhq7cTv2N3Eu1o47Qbvc
+g5driP1B+RAxYZSXgL2pAww0X7WRoNTtbvhtI8rlY0r6OABJZP233DCERprTqiEl
+MCmne0BH9zeL+uKSFw2BZ5Vu5S20o/o/E4p9dlob3KODjuEowaNYNPe3mBxwHuYg
+GKr0HWerSBxBBNUHuAEXWzQj2mO/9fTlMYi72u/xp+TOCyKR/p3KyP28oOPfaOxz
+2p4ROVIMqndcapQ7rMY+06D5r0fGvRXJpkO1vqgWP5PS/ZUSem+7VOGksRygBtWb
+S3bD+rp0Bm6HHNog21IgibeJUUiOtseGQyVtIbLEOddrxLeVwfcdzWhNNGnFiGNE
+RihvL4Zm+/zSl5Pw4qVddyZ80S7Yt6CT+hh9r7rPvdkFfdB6/OP0vjcI5ZUENBY5
+vLWWQSLBK0+GtPuqnML/ifbiONHj0oclCQ0T07Gb3IOB2b4hwORsagyGKeAa5TdY
+lu0XE4XHCLxhdhPEU5bUZAgfFDou1p1SI4amo7L1cCsfvPjswgEq9LXx0icI8XP9
+NsNLfg8IBH2g/pYiHy9H
+=98S8
+-END PGP SIGNATURE-

Added: dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-bin-with-deps.tar.gz.sha1
==
--- dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-bin-with-deps.tar.gz.sha1 (added)
+++ dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-bin-with-deps.tar.gz.sha1 Thu 
Apr 12 15:46:10 2018
@@ -0,0 +1 @@
+23670f28f2a04965f59e1a6603732b9ce0d38c90

Added: dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-bin-with-deps.tar.gz.sha512
==
--- dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-bin-with-deps.tar.gz.sha512 
(added)
+++ dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-bin-with-deps.tar.gz.sha512 Thu 
Apr 12 15:46:10 2018
@@ -0,0 +1 @@
+b1d5cf851a8c6190f247978cc7881a30846e92cbb6bf43d93d63910459482a1f9cee8f05e2f0f099985df06dbf983e5bfcb3648ae61f54448feb17a904a0dd97

Added: dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-bin-with-deps.zip
==
Binary file - no diff available.

Propchange: dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-bin-with-deps.zip
--
svn:mime-type = application/octet-stream

Added: dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-bin-with-deps.zip.asc
==
--- dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-bin-with-deps.zip.asc (added)
+++ dev/ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-bin-with-deps.zip.asc Thu Apr 12 
15:46:10 2018
@@ -0,0 +1,17 @@
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v1
+
+iQIcBAABCgAGBQJaz3xq

[ant-ivy] Git Push Summary

2018-04-12 Thread hibou
Repository: ant-ivy
Updated Tags:  refs/tags/2.5.0-rc1 [created] 7d4634929


ant-ivy git commit: release the ivy.xsd

2018-04-12 Thread hibou
Repository: ant-ivy
Updated Branches:
  refs/heads/2.5.x [created] 887fd46f3


release the ivy.xsd


Project: http://git-wip-us.apache.org/repos/asf/ant-ivy/repo
Commit: http://git-wip-us.apache.org/repos/asf/ant-ivy/commit/887fd46f
Tree: http://git-wip-us.apache.org/repos/asf/ant-ivy/tree/887fd46f
Diff: http://git-wip-us.apache.org/repos/asf/ant-ivy/diff/887fd46f

Branch: refs/heads/2.5.x
Commit: 887fd46f3e90016e313f7724ca259b936d30a03e
Parents: 00d3a53
Author: Nicolas Lalevée 
Authored: Wed Apr 11 19:37:19 2018 +0200
Committer: Nicolas Lalevée 
Committed: Thu Apr 12 00:52:19 2018 +0200

--
 asciidoc/ivy.xsd | 289 ++
 1 file changed, 289 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/ant-ivy/blob/887fd46f/asciidoc/ivy.xsd
--
diff --git a/asciidoc/ivy.xsd b/asciidoc/ivy.xsd
new file mode 100644
index 000..1e41781
--- /dev/null
+++ b/asciidoc/ivy.xsd
@@ -0,0 +1,289 @@
+
+
+http://www.w3.org/2001/XMLSchema"; 
elementFormDefault="qualified">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

ant-ivy git commit: Use the latest asciidoctorj

2018-04-12 Thread gintas
Repository: ant-ivy
Updated Branches:
  refs/heads/master 00d3a534b -> 9a31defc9


Use the latest asciidoctorj

Project: http://git-wip-us.apache.org/repos/asf/ant-ivy/repo
Commit: http://git-wip-us.apache.org/repos/asf/ant-ivy/commit/9a31defc
Tree: http://git-wip-us.apache.org/repos/asf/ant-ivy/tree/9a31defc
Diff: http://git-wip-us.apache.org/repos/asf/ant-ivy/diff/9a31defc

Branch: refs/heads/master
Commit: 9a31defc9a2b7057a0506460ae77e89bae9c94fc
Parents: 00d3a53
Author: Gintas Grigelionis 
Authored: Thu Apr 12 18:05:13 2018 +0200
Committer: Gintas Grigelionis 
Committed: Thu Apr 12 18:05:13 2018 +0200

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


http://git-wip-us.apache.org/repos/asf/ant-ivy/blob/9a31defc/build-release.xml
--
diff --git a/build-release.xml b/build-release.xml
index 737d058..ddf3c50 100644
--- a/build-release.xml
+++ b/build-release.xml
@@ -167,7 +167,7 @@
 
 
 
-
+
 
 



svn commit: r26311 - in /dev/ant/ivyde/updatesite/ivy-2.5.0.cr1_20180412005306: ./ features/ plugins/

2018-04-12 Thread hibou
Author: hibou
Date: Thu Apr 12 16:09:26 2018
New Revision: 26311

Log:
Release of Ivy 2.5.0-rc1

Added:
dev/ant/ivyde/updatesite/ivy-2.5.0.cr1_20180412005306/
dev/ant/ivyde/updatesite/ivy-2.5.0.cr1_20180412005306/artifacts.xml
dev/ant/ivyde/updatesite/ivy-2.5.0.cr1_20180412005306/content.xml
dev/ant/ivyde/updatesite/ivy-2.5.0.cr1_20180412005306/features/

dev/ant/ivyde/updatesite/ivy-2.5.0.cr1_20180412005306/features/org.apache.ivy.eclipse.ant.feature_2.5.0.cr1_20180412005306.jar
   (with props)

dev/ant/ivyde/updatesite/ivy-2.5.0.cr1_20180412005306/features/org.apache.ivy.eclipse.ant.feature_2.5.0.cr1_20180412005306.jar.asc

dev/ant/ivyde/updatesite/ivy-2.5.0.cr1_20180412005306/features/org.apache.ivy.eclipse.ant.feature_2.5.0.cr1_20180412005306.jar.md5

dev/ant/ivyde/updatesite/ivy-2.5.0.cr1_20180412005306/features/org.apache.ivy.eclipse.ant.feature_2.5.0.cr1_20180412005306.jar.sha

dev/ant/ivyde/updatesite/ivy-2.5.0.cr1_20180412005306/features/org.apache.ivy.feature_2.5.0.cr1_20180412005306.jar
   (with props)

dev/ant/ivyde/updatesite/ivy-2.5.0.cr1_20180412005306/features/org.apache.ivy.feature_2.5.0.cr1_20180412005306.jar.asc

dev/ant/ivyde/updatesite/ivy-2.5.0.cr1_20180412005306/features/org.apache.ivy.feature_2.5.0.cr1_20180412005306.jar.md5

dev/ant/ivyde/updatesite/ivy-2.5.0.cr1_20180412005306/features/org.apache.ivy.feature_2.5.0.cr1_20180412005306.jar.sha
dev/ant/ivyde/updatesite/ivy-2.5.0.cr1_20180412005306/plugins/

dev/ant/ivyde/updatesite/ivy-2.5.0.cr1_20180412005306/plugins/org.apache.ivy.eclipse.ant_2.5.0.cr1_20180412005306.jar
   (with props)

dev/ant/ivyde/updatesite/ivy-2.5.0.cr1_20180412005306/plugins/org.apache.ivy.eclipse.ant_2.5.0.cr1_20180412005306.jar.asc

dev/ant/ivyde/updatesite/ivy-2.5.0.cr1_20180412005306/plugins/org.apache.ivy.eclipse.ant_2.5.0.cr1_20180412005306.jar.md5

dev/ant/ivyde/updatesite/ivy-2.5.0.cr1_20180412005306/plugins/org.apache.ivy.eclipse.ant_2.5.0.cr1_20180412005306.jar.sha

dev/ant/ivyde/updatesite/ivy-2.5.0.cr1_20180412005306/plugins/org.apache.ivy_2.5.0.cr1_20180412005306.jar
   (with props)

dev/ant/ivyde/updatesite/ivy-2.5.0.cr1_20180412005306/plugins/org.apache.ivy_2.5.0.cr1_20180412005306.jar.asc

dev/ant/ivyde/updatesite/ivy-2.5.0.cr1_20180412005306/plugins/org.apache.ivy_2.5.0.cr1_20180412005306.jar.md5

dev/ant/ivyde/updatesite/ivy-2.5.0.cr1_20180412005306/plugins/org.apache.ivy_2.5.0.cr1_20180412005306.jar.sha

Added: dev/ant/ivyde/updatesite/ivy-2.5.0.cr1_20180412005306/artifacts.xml
==
--- dev/ant/ivyde/updatesite/ivy-2.5.0.cr1_20180412005306/artifacts.xml (added)
+++ dev/ant/ivyde/updatesite/ivy-2.5.0.cr1_20180412005306/artifacts.xml Thu Apr 
12 16:09:26 2018
@@ -0,0 +1,60 @@
+
+  
+
+
+  http://ant.apache.org/ivy/ivyde/updatesite/p2-mirrors--xml.cgi?path=ivy-2.5.0.cr1_20180412005306"/>
+  
+
+
+
+  
+  
+
+  
+
+
+
+  
+
+
+  
+
+
+
+
+  
+
+
+  
+
+
+
+  
+
+
+  
+
+
+
+
+  
+
+  
+
\ No newline at end of file

Added: dev/ant/ivyde/updatesite/ivy-2.5.0.cr1_20180412005306/content.xml
==
--- dev/ant/ivyde/updatesite/ivy-2.5.0.cr1_20180412005306/content.xml (added)
+++ dev/ant/ivyde/updatesite/ivy-2.5.0.cr1_20180412005306/content.xml Thu Apr 
12 16:09:26 2018
@@ -0,0 +1,348 @@
+
+
+
+
+  
+
+
+  
+  
+
+
+  
+  
+
+  
+  
+
+
+
+
+
+
+
+
+
+  
+  
+
+
+  
+  
+
+
+
+  
+(org.eclipse.update.install.features=true)
+  
+
+  
+  
+  
+
+  %license
+
+  
+
+
+  
+  
+
+
+
+
+
+
+
+
+
+  
+  
+
+
+  
+  
+
+
+  
+(org.eclipse.update.install.features=true)
+  
+
+  
+  
+  
+
+  %license
+
+  
+  
+Copyright © 2015 The Apache Software Foundation
+  
+
+
+  
+
+
+
+
+
+
+
+
+  
+  
+
+
+
+  
+  
+(org.eclipse.update.install.features=true)
+  
+  
+
+  
+  
+  
+
+  
+true
+  
+
+  
+  
+
+  %license
+
+  
+  
+Copyright © 2015 The Apache Software Foundation
+  
+
+
+  
+  
+
+
+
+  
+  

ant-ivy git commit: Update release instructions: we use git now

2018-04-12 Thread hibou
Repository: ant-ivy
Updated Branches:
  refs/heads/master 9a31defc9 -> c0e9d2be0


Update release instructions: we use git now


Project: http://git-wip-us.apache.org/repos/asf/ant-ivy/repo
Commit: http://git-wip-us.apache.org/repos/asf/ant-ivy/commit/c0e9d2be
Tree: http://git-wip-us.apache.org/repos/asf/ant-ivy/tree/c0e9d2be
Diff: http://git-wip-us.apache.org/repos/asf/ant-ivy/diff/c0e9d2be

Branch: refs/heads/master
Commit: c0e9d2be0b044845cc92707496edba9d23cdc2f9
Parents: 9a31def
Author: Nicolas Lalevée 
Authored: Thu Apr 12 18:17:30 2018 +0200
Committer: Nicolas Lalevée 
Committed: Thu Apr 12 18:17:30 2018 +0200

--
 asciidoc/dev/makerelease.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/ant-ivy/blob/c0e9d2be/asciidoc/dev/makerelease.adoc
--
diff --git a/asciidoc/dev/makerelease.adoc b/asciidoc/dev/makerelease.adoc
index e2d1692..a469508 100644
--- a/asciidoc/dev/makerelease.adoc
+++ b/asciidoc/dev/makerelease.adoc
@@ -164,13 +164,13 @@ Subject: [VOTE] Ivy ${version} Release
 
 I have built a release candidate for Ivy ${version}
 
-The svn tag of this release is: 
https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=tag;h=refs/tags/${version}
+The git tag of this release is: 
https://git-wip-us.apache.org/repos/asf?p=ant-ivy.git;a=tag;h=refs/tags/${version}
 with the sha1 ${githash-of-tag}
 
 The artifacts has been published to: 
https://dist.apache.org/repos/dist/dev/ant/ivy/${version} at revision 
${svn-rev-of-the-check-in}
 
 The staging Maven repository is available there: 
https://repository.apache.org/content/repositories/orgapacheant-
 
-The Eclipse updatesite has been build there: 
https://dist.apache.org/repos/dist/dev/ant/ivyde/updatesite/ivy-2.0.0.beta1_20141213170938/
+The Eclipse updatesite has been build there: 
https://dist.apache.org/repos/dist/dev/ant/ivyde/updatesite/ivy-${version}/
 
 Do you vote for the release of these binaries?
 



Build failed in Jenkins: IvyDE-updatesite #956

2018-04-12 Thread Apache Jenkins Server
See 

--
[...truncated 11.02 KB...]
org.tmatesoft.svn.core.SVNException: svn: E200030: FULL
at 
org.tmatesoft.svn.core.internal.wc.SVNErrorManager.error(SVNErrorManager.java:70)
at 
org.tmatesoft.svn.core.internal.wc.SVNErrorManager.error(SVNErrorManager.java:57)
at 
org.tmatesoft.svn.core.internal.db.SVNSqlJetDb.createSqlJetError(SVNSqlJetDb.java:195)
at 
org.tmatesoft.svn.core.internal.db.SVNSqlJetDb.beginTransaction(SVNSqlJetDb.java:211)
at 
org.tmatesoft.svn.core.internal.db.SVNSqlJetDb.runTransaction(SVNSqlJetDb.java:257)
at 
org.tmatesoft.svn.core.internal.db.SVNSqlJetDb.runTransaction(SVNSqlJetDb.java:252)
at 
org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb.obtainWCLock(SVNWCDb.java:5867)
at 
org.tmatesoft.svn.core.internal.wc17.SVNWCContext.acquireWriteLock(SVNWCContext.java:1646)
at 
org.tmatesoft.svn.core.internal.wc2.ng.SvnNgAbstractUpdate.update(SvnNgAbstractUpdate.java:106)
at 
org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpdate.run(SvnNgUpdate.java:40)
at 
org.tmatesoft.svn.core.internal.wc2.ng.SvnNgUpdate.run(SvnNgUpdate.java:18)
at 
org.tmatesoft.svn.core.internal.wc2.ng.SvnNgOperationRunner.run(SvnNgOperationRunner.java:20)
at 
org.tmatesoft.svn.core.internal.wc2.SvnOperationRunner.run(SvnOperationRunner.java:21)
at 
org.tmatesoft.svn.core.wc2.SvnOperationFactory.run(SvnOperationFactory.java:1235)
at org.tmatesoft.svn.core.wc2.SvnOperation.run(SvnOperation.java:294)
at 
org.tmatesoft.svn.core.wc.SVNUpdateClient.doUpdate(SVNUpdateClient.java:311)
at 
org.tmatesoft.svn.core.wc.SVNUpdateClient.doUpdate(SVNUpdateClient.java:291)
at 
org.tmatesoft.svn.core.wc.SVNUpdateClient.doUpdate(SVNUpdateClient.java:387)
at 
hudson.scm.subversion.UpdateUpdater$TaskImpl.perform(UpdateUpdater.java:160)
at 
hudson.scm.subversion.WorkspaceUpdater$UpdateTask.delegateTo(WorkspaceUpdater.java:168)
at 
hudson.scm.SubversionSCM$CheckOutTask.perform(SubversionSCM.java:1030)
at hudson.scm.SubversionSCM$CheckOutTask.invoke(SubversionSCM.java:1006)
at hudson.scm.SubversionSCM$CheckOutTask.invoke(SubversionSCM.java:979)
at hudson.FilePath$FileCallableWrapper.call(FilePath.java:2760)
at hudson.remoting.UserRequest.perform(UserRequest.java:207)
at hudson.remoting.UserRequest.perform(UserRequest.java:53)
at hudson.remoting.Request$2.run(Request.java:358)
at 
hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:72)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at 
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at 
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:748)
Caused by: org.tmatesoft.sqljet.core.SqlJetException: FULL: error code is FULL
at 
org.tmatesoft.sqljet.core.internal.pager.SqlJetPager.openJournal(SqlJetPager.java:3051)
at 
org.tmatesoft.sqljet.core.internal.pager.SqlJetPager.begin(SqlJetPager.java:2782)
at 
org.tmatesoft.sqljet.core.internal.btree.SqlJetBtree.beginTrans(SqlJetBtree.java:931)
at 
org.tmatesoft.sqljet.core.table.engine.SqlJetEngine.doBeginTransaction(SqlJetEngine.java:561)
at 
org.tmatesoft.sqljet.core.table.engine.SqlJetEngine.access$100(SqlJetEngine.java:55)
at 
org.tmatesoft.sqljet.core.table.engine.SqlJetEngine$9.runSynchronized(SqlJetEngine.java:475)
at 
org.tmatesoft.sqljet.core.table.engine.SqlJetEngine.runSynchronized(SqlJetEngine.java:217)
at 
org.tmatesoft.sqljet.core.table.engine.SqlJetEngine.beginTransaction(SqlJetEngine.java:471)
at 
org.tmatesoft.svn.core.internal.db.SVNSqlJetDb.beginTransaction(SVNSqlJetDb.java:206)
... 28 more
ERROR: Subversion update failed
org.tmatesoft.sqljet.core.SqlJetException: FULL: error code is FULL
at 
org.tmatesoft.sqljet.core.internal.pager.SqlJetPager.openJournal(SqlJetPager.java:3051)
at 
org.tmatesoft.sqljet.core.internal.pager.SqlJetPager.begin(SqlJetPager.java:2782)
at 
org.tmatesoft.sqljet.core.internal.btree.SqlJetBtree.beginTrans(SqlJetBtree.java:931)
at 
org.tmatesoft.sqljet.core.table.engine.SqlJetEngine.doBeginTransaction(SqlJetEngine.java:561)
at 
org.tmatesoft.sqljet.core.table.engine.SqlJetEngine.access$100(SqlJetEngine.java:55)
at 
org.tmatesoft.sqljet.core.table.engine.SqlJetEngine$9.runSynchronized(SqlJetEngine.java:475)
at 
org.tmatesoft.sqljet.core.table.engine.SqlJetEngine.runSynchronized(SqlJetEngine.java:217)
at 
org.tmatesoft.sqljet.core.table.engine.SqlJetEngine.beginTransaction(SqlJetEngine.java:471)
at 
org.tmatesoft.svn.core.internal.db.SVNSqlJetDb.beginTransaction(SVNSqlJet

Build failed in Jenkins: Ivy-tests-ubuntu » ubuntu,JDK 1.7 (latest) #330

2018-04-12 Thread Apache Jenkins Server
See 


--
Started by upstream project "Ivy-tests-ubuntu" build number 330
originally caused by:
 Started by upstream project "Ivy" build number 759
 originally caused by:
  Started by an SCM change
  Started by an SCM change
  Started by an SCM change
Running as hibou
[EnvInject] - Loading node environment variables.
Building remotely on H23 (ubuntu xenial) in workspace 

 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url 
 > https://git-wip-us.apache.org/repos/asf/ant-ivy.git # timeout=10
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from 
https://git-wip-us.apache.org/repos/asf/ant-ivy.git
at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:862)
at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1129)
at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1160)
at hudson.scm.SCM.checkout(SCM.java:495)
at hudson.model.AbstractProject.checkout(AbstractProject.java:1202)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
at hudson.model.Run.execute(Run.java:1724)
at hudson.matrix.MatrixRun.run(MatrixRun.java:146)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:429)
Caused by: hudson.plugins.git.GitException: Command "git config 
remote.origin.url https://git-wip-us.apache.org/repos/asf/ant-ivy.git"; returned 
status code 4:
stdout: 
stderr: error: failed to write new configuration file 


at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:1996)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:1964)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:1960)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommand(CliGitAPIImpl.java:1597)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommand(CliGitAPIImpl.java:1609)
at 
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.setRemoteUrl(CliGitAPIImpl.java:1243)
at hudson.plugins.git.GitAPI.setRemoteUrl(GitAPI.java:160)
at sun.reflect.GeneratedMethodAccessor763.invoke(Unknown Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at 
hudson.remoting.RemoteInvocationHandler$RPCRequest.perform(RemoteInvocationHandler.java:922)
at 
hudson.remoting.RemoteInvocationHandler$RPCRequest.call(RemoteInvocationHandler.java:896)
at 
hudson.remoting.RemoteInvocationHandler$RPCRequest.call(RemoteInvocationHandler.java:853)
at hudson.remoting.UserRequest.perform(UserRequest.java:207)
at hudson.remoting.UserRequest.perform(UserRequest.java:53)
at hudson.remoting.Request$2.run(Request.java:358)
at 
hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:72)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at 
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at 
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to 
H23
at 
hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1693)
at hudson.remoting.UserResponse.retrieve(UserRequest.java:310)
at hudson.remoting.Channel.call(Channel.java:908)
at 
hudson.remoting.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:281)
at com.sun.proxy.$Proxy110.setRemoteUrl(Unknown Source)
at 
org.jenkinsci.plugins.gitclient.RemoteGitImpl.setRemoteUrl(RemoteGitImpl.java:295)
at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:850)
at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1129)
at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1160)
at hudson.scm.SCM.checkout(SCM.java:495)
at 
hudson.model.AbstractProject.checkout(AbstractProject.java:1202)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
  

Jenkins build is back to normal : IvyDE-updatesite #957

2018-04-12 Thread Apache Jenkins Server
See 



Jenkins build is back to normal : Ant-Build-Matrix-master-Linux » xenial,JDK 11 b8 (early access build) #1205

2018-04-12 Thread Apache Jenkins Server
See 




Jenkins build is back to normal : Ivy-tests-ubuntu » ubuntu,JDK 1.7 (latest) #331

2018-04-12 Thread Apache Jenkins Server
See