Jenkins build is back to stable : Ant-Build-Matrix-1.9.x-Windows » Windows,JDK 1.7 (unlimited security) 64-bit Windows only #1097

2019-05-31 Thread Apache Jenkins Server
See 




[ant] 01/02: Validating contents of resources fetched via insecure channels

2019-05-31 Thread jkf
This is an automated email from the ASF dual-hosted git repository.

jkf pushed a commit to branch 1.9.x
in repository https://gitbox.apache.org/repos/asf/ant.git

commit fb6d9b0d5d603d4339f5547a74f00833b221cc0a
Author: jkf 
AuthorDate: Sun May 26 08:11:28 2019 +0200

Validating contents of resources fetched via insecure channels
---
 fetch.xml| 8 
 lib/libraries.properties | 3 +++
 2 files changed, 11 insertions(+)

diff --git a/fetch.xml b/fetch.xml
index 679aceb..106237d 100644
--- a/fetch.xml
+++ b/fetch.xml
@@ -342,6 +342,14 @@ Set -Ddest=LOCATION on the command line
   
+
+
+   
+ 
+   
+ 
+  
+
 
   
 
diff --git a/lib/libraries.properties b/lib/libraries.properties
index 9ecbcfb..fcad671 100644
--- a/lib/libraries.properties
+++ b/lib/libraries.properties
@@ -28,6 +28,9 @@ m2.sha1.checksum=b09be554228d66d208e5fef5266844aacf443abc
 # Repository to use by default for fetching dependencies.
 m2.repo=http://repo1.maven.org/maven2/
 
+# hashes of libraries loaded over insecure connections
+netrexx.sha256=1f99f054e9b1e412d29823088f3fa7cfce90a7af25d907a60a6d7908a6b97ea4
+
 # Versions of different libraries. Please keep in alphabetical order, except
 # when a specific dependency forces them to be out-of-order
 ivy.version=2.4.0



[ant] branch 1.9.x updated (5198e58 -> 0b1690a)

2019-05-31 Thread jkf
This is an automated email from the ASF dual-hosted git repository.

jkf pushed a change to branch 1.9.x
in repository https://gitbox.apache.org/repos/asf/ant.git.


from 5198e58  Use HTTPS URL for fetching doc generation tool
 new fb6d9b0  Validating contents of resources fetched via insecure channels
 new 0b1690a  updated default m2 repository location

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


Summary of changes:
 fetch.xml| 8 
 lib/libraries.properties | 5 -
 2 files changed, 12 insertions(+), 1 deletion(-)



[ant] 02/02: updated default m2 repository location

2019-05-31 Thread jkf
This is an automated email from the ASF dual-hosted git repository.

jkf pushed a commit to branch 1.9.x
in repository https://gitbox.apache.org/repos/asf/ant.git

commit 0b1690a4f50e363fdbe4a474e24d0a7ac9e82d67
Author: jkf 
AuthorDate: Sat May 25 13:07:23 2019 +0200

updated default m2 repository location
---
 lib/libraries.properties | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/libraries.properties b/lib/libraries.properties
index fcad671..fced7fb 100644
--- a/lib/libraries.properties
+++ b/lib/libraries.properties
@@ -26,7 +26,7 @@ m2.antlib.url=${m2.url}/${m2.version}/binaries/${m2.jar.name}
 m2.sha1.checksum=b09be554228d66d208e5fef5266844aacf443abc
 
 # Repository to use by default for fetching dependencies.
-m2.repo=http://repo1.maven.org/maven2/
+m2.repo=https://repo1.maven.org/maven2/
 
 # hashes of libraries loaded over insecure connections
 netrexx.sha256=1f99f054e9b1e412d29823088f3fa7cfce90a7af25d907a60a6d7908a6b97ea4



[Bug 63479] New: junitlauncher - does not detect failure in @BeforeAll

2019-05-31 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63479

Bug ID: 63479
   Summary: junitlauncher - does not detect failure in @BeforeAll
   Product: Ant
   Version: 1.10.6
  Hardware: PC
Status: NEW
  Severity: normal
  Priority: P2
 Component: Core tasks
  Assignee: notifications@ant.apache.org
  Reporter: pva...@opentext.com
  Target Milestone: ---

If an exception is thrown in a @Test (or if a @Test fails), junitlauncher
correctly recognizes the failure and acts on failureProperty/haltOnFailure as
expected.
However, if an exception is failure occurs in a method with @BeforeAll instead
of @Test, the failureProperty/haltOnFailure aren't triggered. Still, the
failure is detected and logged by the legacy-plain and legacy-xml listeners.

This suggests the problem is with Ant and not Junit.

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

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

2019-05-31 Thread Apache Jenkins Server
See 




[ant-ivy] branch master updated: Use the correct XML namespace URI in the Ivy module descriptor generated out of a pom.xml

2019-05-31 Thread jaikiran
This is an automated email from the ASF dual-hosted git repository.

jaikiran pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ant-ivy.git


The following commit(s) were added to refs/heads/master by this push:
 new 3cdf475  Use the correct XML namespace URI in the Ivy module 
descriptor generated out of a pom.xml
3cdf475 is described below

commit 3cdf4752ec2422c44caa536969569e23456416e6
Author: Jaikiran Pai 
AuthorDate: Fri May 31 18:06:45 2019 +0530

Use the correct XML namespace URI in the Ivy module descriptor generated 
out of a pom.xml
---
 .../apache/ivy/plugins/parser/m2/PomModuleDescriptorBuilder.java | 9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git 
a/src/java/org/apache/ivy/plugins/parser/m2/PomModuleDescriptorBuilder.java 
b/src/java/org/apache/ivy/plugins/parser/m2/PomModuleDescriptorBuilder.java
index 482cf0f..c1accb8 100644
--- a/src/java/org/apache/ivy/plugins/parser/m2/PomModuleDescriptorBuilder.java
+++ b/src/java/org/apache/ivy/plugins/parser/m2/PomModuleDescriptorBuilder.java
@@ -28,7 +28,6 @@ import java.util.LinkedList;
 import java.util.List;
 import java.util.Map;
 
-import org.apache.ivy.Ivy;
 import org.apache.ivy.core.cache.ArtifactOrigin;
 import org.apache.ivy.core.module.descriptor.Artifact;
 import org.apache.ivy.core.module.descriptor.Configuration;
@@ -64,6 +63,12 @@ import static org.apache.ivy.util.StringUtils.isNullOrEmpty;
  */
 public class PomModuleDescriptorBuilder {
 
+/**
+ * The namespace URI which is used to refer to Maven (pom) specific 
elements within a
+ * Ivy module descriptor file (ivy.xml)
+ */
+private static final String IVY_XML_MAVEN_NAMESPACE_URI = 
"http://ant.apache.org/ivy/maven;;
+
 private static final int DEPENDENCY_MANAGEMENT_KEY_PARTS_COUNT = 4;
 
 public static final Configuration[] MAVEN2_CONFIGURATIONS = new 
Configuration[] {
@@ -199,7 +204,7 @@ public class PomModuleDescriptorBuilder {
 ivyModuleDescriptor.addConfiguration(m2conf);
 }
 ivyModuleDescriptor.setMappingOverride(true);
-ivyModuleDescriptor.addExtraAttributeNamespace("m", 
Ivy.getIvyHomeURL() + "maven");
+ivyModuleDescriptor.addExtraAttributeNamespace("m", 
IVY_XML_MAVEN_NAMESPACE_URI);
 parserSettings = ivySettings;
 }
 



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

2019-05-31 Thread Apache Jenkins Server
See 


Changes:

[jaikiran] Use https instead of http

--
[...truncated 32.37 KB...]
[junit] Running org.apache.ivy.ant.IvyCachePathTest
[junit] Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
6,267 sec
[junit] Running org.apache.ivy.ant.IvyCleanCacheTest
[junit] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
3,537 sec
[junit] Running org.apache.ivy.ant.IvyConfigureTest
[junit] Tests run: 14, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
4,05 sec
[junit] Running org.apache.ivy.ant.IvyConvertPomTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
4,485 sec
[junit] Running org.apache.ivy.ant.IvyDeliverTest
[junit] Tests run: 15, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
9,071 sec
[junit] Running org.apache.ivy.ant.IvyDependencyTreeTest
[junit] Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
5,546 sec
[junit] Running org.apache.ivy.ant.IvyDependencyUpdateCheckerTest
[junit] Tests run: 14, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
6,666 sec
[junit] Running org.apache.ivy.ant.IvyFindRevisionTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
3,967 sec
[junit] Running org.apache.ivy.ant.IvyInfoRepositoryTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
4,162 sec
[junit] Running org.apache.ivy.ant.IvyInfoTest
[junit] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
4,178 sec
[junit] Running org.apache.ivy.ant.IvyInstallTest
[junit] Tests run: 15, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
7,277 sec
[junit] Running org.apache.ivy.ant.IvyListModulesTest
[junit] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
3,893 sec
[junit] Running org.apache.ivy.ant.IvyPostResolveTaskTest
[junit] Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
5,821 sec
[junit] Running org.apache.ivy.ant.IvyPublishTest
[junit] Tests run: 22, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
10,53 sec
[junit] Running org.apache.ivy.ant.IvyReportTest
[junit] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
7,127 sec
[junit] Running org.apache.ivy.ant.IvyRepositoryReportTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
4,848 sec
[junit] Running org.apache.ivy.ant.IvyResolveTest
[junit] Tests run: 35, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 
8,307 sec
[junit] Running org.apache.ivy.ant.IvyResourcesTest
[junit] Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
5,973 sec
[junit] Running org.apache.ivy.ant.IvyRetrieveBuildFileTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
4,379 sec
[junit] Running org.apache.ivy.ant.IvyRetrieveTest
[junit] Tests run: 19, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
7,604 sec
[junit] Running org.apache.ivy.ant.IvyTaskTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
3,164 sec
[junit] Running org.apache.ivy.ant.IvyVarTest
[junit] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
3,846 sec
[junit] Running org.apache.ivy.core.NormalRelativeUrlResolverTest
[junit] Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
0,395 sec
[junit] Running org.apache.ivy.core.cache.DefaultRepositoryCacheManagerTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 
2,129 sec
[junit] Running org.apache.ivy.core.cache.ModuleDescriptorMemoryCacheTest
[junit] Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
2,336 sec
[junit] Running org.apache.ivy.core.deliver.DeliverTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
5,008 sec
[junit] Running org.apache.ivy.core.event.IvyEventFilterTest
[junit] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
2,326 sec
[junit] Running org.apache.ivy.core.install.InstallTest
[junit] Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
6,415 sec
[junit] Running 
org.apache.ivy.core.module.descriptor.DefaultDependencyDescriptorTest
[junit] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
0,212 sec
[junit] Running org.apache.ivy.core.module.descriptor.IvyMakePomTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
3,452 sec
[junit] Running org.apache.ivy.core.module.id.ModuleIdTest
[junit] Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
0,179 sec
[junit] Running org.apache.ivy.core.module.id.ModuleRevisionIdTest
[junit] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 

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

2019-05-31 Thread Apache Jenkins Server
See 


Changes:

[jaikiran] Use https instead of http

--
[...truncated 32.59 KB...]
[junit] Running org.apache.ivy.ant.IvyCachePathTest
[junit] Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
3,789 sec
[junit] Running org.apache.ivy.ant.IvyCleanCacheTest
[junit] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
2,041 sec
[junit] Running org.apache.ivy.ant.IvyConfigureTest
[junit] Tests run: 14, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
2,183 sec
[junit] Running org.apache.ivy.ant.IvyConvertPomTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
2,411 sec
[junit] Running org.apache.ivy.ant.IvyDeliverTest
[junit] Tests run: 15, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
5,91 sec
[junit] Running org.apache.ivy.ant.IvyDependencyTreeTest
[junit] Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
3,197 sec
[junit] Running org.apache.ivy.ant.IvyDependencyUpdateCheckerTest
[junit] Tests run: 14, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
3,996 sec
[junit] Running org.apache.ivy.ant.IvyFindRevisionTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
2,383 sec
[junit] Running org.apache.ivy.ant.IvyInfoRepositoryTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
2,283 sec
[junit] Running org.apache.ivy.ant.IvyInfoTest
[junit] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
2,214 sec
[junit] Running org.apache.ivy.ant.IvyInstallTest
[junit] Tests run: 15, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
4,215 sec
[junit] Running org.apache.ivy.ant.IvyListModulesTest
[junit] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
2,059 sec
[junit] Running org.apache.ivy.ant.IvyPostResolveTaskTest
[junit] Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
3,645 sec
[junit] Running org.apache.ivy.ant.IvyPublishTest
[junit] Tests run: 22, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
6,011 sec
[junit] Running org.apache.ivy.ant.IvyReportTest
[junit] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
3,972 sec
[junit] Running org.apache.ivy.ant.IvyRepositoryReportTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
2,682 sec
[junit] Running org.apache.ivy.ant.IvyResolveTest
[junit] Tests run: 35, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 
5,529 sec
[junit] Running org.apache.ivy.ant.IvyResourcesTest
[junit] Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
3,303 sec
[junit] Running org.apache.ivy.ant.IvyRetrieveBuildFileTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
2,912 sec
[junit] Running org.apache.ivy.ant.IvyRetrieveTest
[junit] Tests run: 19, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
4,105 sec
[junit] Running org.apache.ivy.ant.IvyTaskTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
2,394 sec
[junit] Running org.apache.ivy.ant.IvyVarTest
[junit] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2,1 
sec
[junit] Running org.apache.ivy.core.NormalRelativeUrlResolverTest
[junit] Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
2,504 sec
[junit] Running org.apache.ivy.core.cache.DefaultRepositoryCacheManagerTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 
1,187 sec
[junit] Running org.apache.ivy.core.cache.ModuleDescriptorMemoryCacheTest
[junit] Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
1,214 sec
[junit] Running org.apache.ivy.core.deliver.DeliverTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3 
sec
[junit] Running org.apache.ivy.core.event.IvyEventFilterTest
[junit] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
1,023 sec
[junit] Running org.apache.ivy.core.install.InstallTest
[junit] Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
3,546 sec
[junit] Running 
org.apache.ivy.core.module.descriptor.DefaultDependencyDescriptorTest
[junit] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
0,193 sec
[junit] Running org.apache.ivy.core.module.descriptor.IvyMakePomTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
2,181 sec
[junit] Running org.apache.ivy.core.module.id.ModuleIdTest
[junit] Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
0,188 sec
[junit] Running org.apache.ivy.core.module.id.ModuleRevisionIdTest
[junit] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 
0,291 

[ant-ivy] branch master updated: Use https instead of http

2019-05-31 Thread jaikiran
This is an automated email from the ASF dual-hosted git repository.

jaikiran pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ant-ivy.git


The following commit(s) were added to refs/heads/master by this push:
 new 0114c60  Use https instead of http
0114c60 is described below

commit 0114c604b69b7ccec0d1ef7d34e94007f19e37bd
Author: Jaikiran Pai 
AuthorDate: Tue May 28 11:18:54 2019 +0530

Use https instead of http
---
 META-INF/MANIFEST.MF   |  2 +-
 README.adoc|  4 ++--
 ReleaseInstructions|  2 +-
 build.xml  |  2 +-
 ivysettings-release.xml|  2 +-
 src/etc/checkstyle/checkstyle-frames.xsl   |  2 +-
 src/etc/makepom/pom.template   | 10 +-
 src/java/org/apache/ivy/Ivy.java   |  4 ++--
 src/java/org/apache/ivy/core/settings/IvySettings.java |  2 +-
 .../org/apache/ivy/core/settings/ivysettings-1.4.xml   |  3 ++-
 .../org/apache/ivy/core/settings/repository.properties |  2 +-
 .../apache/ivy/plugins/matcher/GlobPatternMatcher.java |  4 ++--
 .../plugins/parser/m2/PomModuleDescriptorParser.java   |  2 +-
 src/java/org/apache/ivy/plugins/report/ivy-report.xsl  | 18 +-
 .../apache/ivy/plugins/resolver/IBiblioResolver.java   |  5 -
 .../apache/ivy/plugins/resolver/IvyRepResolver.java|  1 -
 src/java/org/apache/ivy/util/Configurator.java |  2 +-
 src/java/org/apache/ivy/util/filter/FilterHelper.java  |  2 +-
 18 files changed, 36 insertions(+), 33 deletions(-)

diff --git a/META-INF/MANIFEST.MF b/META-INF/MANIFEST.MF
index 48b341e..94ffa9c 100644
--- a/META-INF/MANIFEST.MF
+++ b/META-INF/MANIFEST.MF
@@ -6,7 +6,7 @@ Bundle-Name: Ivy
 Bundle-ManifestVersion: 2
 Bundle-SymbolicName: org.apache.ivy
 Bundle-Vendor: Apache Software Foundation
-Bundle-DocURL: http://ant.apache.org/ivy/
+Bundle-DocURL: https://ant.apache.org/ivy/
 Import-Package: com.jcraft.jsch;resolution:=optional,
  javax.crypto;resolution:=optional,
  javax.swing;resolution:=optional,
diff --git a/README.adoc b/README.adoc
index 783e2ba..c8883bd 100644
--- a/README.adoc
+++ b/README.adoc
@@ -68,7 +68,7 @@ possession, use, and/or re-export to another country, of
 encryption software.  BEFORE using any encryption software, please 
 check your country's laws, regulations and policies concerning the
 import, possession, or use, and re-export of encryption software, to 
-see if this is permitted.  See http://www.wassenaar.org/ for more
+see if this is permitted.  See https://www.wassenaar.org/ for more
 information.
 
 The U.S. Government Department of Commerce, Bureau of Industry and
@@ -87,7 +87,7 @@ software:
 The Ivy ssh resolver requires the JSch library
 http://www.jcraft.com/jsch/index.html. +
 The sftp and https resolvers requires the Java Cryptography extensions
-http://java.sun.com/javase/technologies/security/. +
+https://java.sun.com/javase/technologies/security/. +
 The PGP signature generator requires the BouncyCastle Java cryptography APIs
 https://www.bouncycastle.org/java.html.
 
diff --git a/ReleaseInstructions b/ReleaseInstructions
index 27729f6..ec716fc 100644
--- a/ReleaseInstructions
+++ b/ReleaseInstructions
@@ -1,3 +1,3 @@
 Release instructions are in asciidoc/dev/makerelease.adoc
 
-You can see the last version online here: 
http://ant.apache.org/ivy/history/master/dev/makerelease.html
+You can see the last version online here: 
https://ant.apache.org/ivy/history/master/dev/makerelease.html
diff --git a/build.xml b/build.xml
index 246da93..f914179 100644
--- a/build.xml
+++ b/build.xml
@@ -661,7 +661,7 @@
   value="${findbugs.download.name}.zip"
   description="The filename of the ZIP."/>
 http://downloads.sourceforge.net/project/findbugs/findbugs/${findbugs.version}/findbugs-${findbugs.version}.zip;
+  
value="https://downloads.sourceforge.net/project/findbugs/findbugs/${findbugs.version}/findbugs-${findbugs.version}.zip;
   description="The download adress at a mirror of 
Sourceforge."/>
 
 
 
-http://people.apache.org/repo/m2-snapshot-repository; />
+https://repository.apache.org/content/repositories/snapshots/; />
 
 
   
diff --git a/src/etc/checkstyle/checkstyle-frames.xsl 
b/src/etc/checkstyle/checkstyle-frames.xsl
index da6d9f0..d9020fe 100644
--- a/src/etc/checkstyle/checkstyle-frames.xsl
+++ b/src/etc/checkstyle/checkstyle-frames.xsl
@@ -78,7 +78,7 @@
 
 Designed for use with
   CheckStyle 
and
-  Ant.
+  Ant.
 
 
 
diff --git a/src/etc/makepom/pom.template b/src/etc/makepom/pom.template
index cae5744..3b16104 100644
--- a/src/etc/makepom/pom.template