Accepting request 897253 from home:pmonrealgonzalez:branches:Java:packages
- Update to 1.10.10 * SCP (with sftp=true) task would fail if fetching file located in root directory. * Fixed: javac task would fail if the arguments file it (internally) created didn't quote the # character. * Make sure LegacyXmlResultFormatter encodes characters illegal in XML the same way JUnit5's built-in formatter would. * LegacyXmlResultFormatter no longer double-encodes <>& in system-err and system-out. * Fixes a bug in junitlauncher task's legacy-xml formatter, where the testcase representing a @Parameterized JUnit4 test wasn't being reported in the XML. * Fixes a bug where the ant-testutil-sources.jar that gets published to Maven central repository didn't contain any source files. * The <http> condition didn't follow redirects from http to https. * ZipOutputStream now overrides write(int) in order to make sure single byte writes get the same treatment as array writes. * Fixes a potential deadlock in junitlauncher task when using legacy-xml reporter. * javaversion condition now has a new "atmost" attribute. See the javaversion manual for more details * The "listener" nested element of the "junitlauncher" task now has a new "useLegacyReportingName" attribute which can be used to control the test identifiers names that get reported by the listener. See the junitlauncher manual for more details. Note that this change also introduces a new "setUseLegacyReportingName" method on the org.apache.tools.ant.taskdefs.optional.junitlauncher.TestResultFormatter interface. This will break backward compatibility with any of your custom result formatters which implemented this interface and such implementations OBS-URL: https://build.opensuse.org/request/show/897253 OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=163
This commit is contained in:
parent
47de80ec0b
commit
9a2562e308
@ -1,3 +1,52 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 3 16:17:46 UTC 2021 - Pedro Monreal <pmonreal@suse.com>
|
||||
|
||||
- Update to 1.10.10
|
||||
* SCP (with sftp=true) task would fail if fetching file located
|
||||
in root directory.
|
||||
* Fixed: javac task would fail if the arguments file it
|
||||
(internally) created didn't quote the # character.
|
||||
* Make sure LegacyXmlResultFormatter encodes characters illegal
|
||||
in XML the same way JUnit5's built-in formatter would.
|
||||
* LegacyXmlResultFormatter no longer double-encodes <>& in
|
||||
system-err and system-out.
|
||||
* Fixes a bug in junitlauncher task's legacy-xml formatter,
|
||||
where the testcase representing a @Parameterized JUnit4 test
|
||||
wasn't being reported in the XML.
|
||||
* Fixes a bug where the ant-testutil-sources.jar that gets
|
||||
published to Maven central repository didn't contain any
|
||||
source files.
|
||||
* The <http> condition didn't follow redirects from http to https.
|
||||
* ZipOutputStream now overrides write(int) in order to make sure
|
||||
single byte writes get the same treatment as array writes.
|
||||
* Fixes a potential deadlock in junitlauncher task when using
|
||||
legacy-xml reporter.
|
||||
* javaversion condition now has a new "atmost" attribute. See
|
||||
the javaversion manual for more details
|
||||
* The "listener" nested element of the "junitlauncher" task now
|
||||
has a new "useLegacyReportingName" attribute which can be used
|
||||
to control the test identifiers names that get reported by the
|
||||
listener. See the junitlauncher manual for more details. Note that
|
||||
this change also introduces a new "setUseLegacyReportingName" method
|
||||
on the org.apache.tools.ant.taskdefs.optional.junitlauncher.TestResultFormatter
|
||||
interface. This will break backward compatibility with any of your custom
|
||||
result formatters which implemented this interface and such implementations
|
||||
are now expected to implement this new method.
|
||||
* A new attribute preserveduplicates allows <resourcelist> to
|
||||
return the same resource multiple times when set to true.
|
||||
* A new attribute filterbeforeconcat in <concat> can be used to
|
||||
decide whether the filterchain should be applied to the
|
||||
concatenated content (the default) or each nested resource
|
||||
individually before concatenating them.
|
||||
* The ssh tasks now share a new nested element additionalConfig that can
|
||||
be used to set config values for the jsch Session used by the task.
|
||||
* Added new discardOutput and discardError properties to redirector
|
||||
and the exec, apply and java tasks which can be used to completely
|
||||
discard any (error) output. This is a platform independent
|
||||
alternative to directiong output to any kind of null device.
|
||||
* junitlauncher now prints a more useful and instantaneous summary of
|
||||
tests being run, closely matching the junit task's summary.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 1 15:38:21 UTC 2020 - Pedro Monreal <pmonreal@suse.com>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package ant-antlr
|
||||
#
|
||||
# Copyright (c) 2020 SUSE LLC
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# Copyright (c) 2000-2009, JPackage Project
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
@ -24,7 +24,7 @@
|
||||
%bcond_with junit5
|
||||
%bcond_without antlr
|
||||
Name: ant-antlr
|
||||
Version: 1.10.9
|
||||
Version: 1.10.10
|
||||
Release: 0
|
||||
Summary: Antlr Task for ant
|
||||
License: Apache-2.0
|
||||
@ -104,11 +104,13 @@ Apache Ant is a Java-based build tool.
|
||||
|
||||
This package contains optional JUnit tasks for Apache Ant.
|
||||
%elif %{with junit5}
|
||||
|
||||
%description
|
||||
Apache Ant is a Java-based build tool.
|
||||
|
||||
This package contains optional JUnit5 tasks for Apache Ant.
|
||||
%else
|
||||
|
||||
%description
|
||||
Apache Ant is a Java-based build tool. In theory, it is kind of like
|
||||
Make. Build description files are written in XML.
|
||||
|
@ -1,3 +1,52 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 3 16:17:46 UTC 2021 - Pedro Monreal <pmonreal@suse.com>
|
||||
|
||||
- Update to 1.10.10
|
||||
* SCP (with sftp=true) task would fail if fetching file located
|
||||
in root directory.
|
||||
* Fixed: javac task would fail if the arguments file it
|
||||
(internally) created didn't quote the # character.
|
||||
* Make sure LegacyXmlResultFormatter encodes characters illegal
|
||||
in XML the same way JUnit5's built-in formatter would.
|
||||
* LegacyXmlResultFormatter no longer double-encodes <>& in
|
||||
system-err and system-out.
|
||||
* Fixes a bug in junitlauncher task's legacy-xml formatter,
|
||||
where the testcase representing a @Parameterized JUnit4 test
|
||||
wasn't being reported in the XML.
|
||||
* Fixes a bug where the ant-testutil-sources.jar that gets
|
||||
published to Maven central repository didn't contain any
|
||||
source files.
|
||||
* The <http> condition didn't follow redirects from http to https.
|
||||
* ZipOutputStream now overrides write(int) in order to make sure
|
||||
single byte writes get the same treatment as array writes.
|
||||
* Fixes a potential deadlock in junitlauncher task when using
|
||||
legacy-xml reporter.
|
||||
* javaversion condition now has a new "atmost" attribute. See
|
||||
the javaversion manual for more details
|
||||
* The "listener" nested element of the "junitlauncher" task now
|
||||
has a new "useLegacyReportingName" attribute which can be used
|
||||
to control the test identifiers names that get reported by the
|
||||
listener. See the junitlauncher manual for more details. Note that
|
||||
this change also introduces a new "setUseLegacyReportingName" method
|
||||
on the org.apache.tools.ant.taskdefs.optional.junitlauncher.TestResultFormatter
|
||||
interface. This will break backward compatibility with any of your custom
|
||||
result formatters which implemented this interface and such implementations
|
||||
are now expected to implement this new method.
|
||||
* A new attribute preserveduplicates allows <resourcelist> to
|
||||
return the same resource multiple times when set to true.
|
||||
* A new attribute filterbeforeconcat in <concat> can be used to
|
||||
decide whether the filterchain should be applied to the
|
||||
concatenated content (the default) or each nested resource
|
||||
individually before concatenating them.
|
||||
* The ssh tasks now share a new nested element additionalConfig that can
|
||||
be used to set config values for the jsch Session used by the task.
|
||||
* Added new discardOutput and discardError properties to redirector
|
||||
and the exec, apply and java tasks which can be used to completely
|
||||
discard any (error) output. This is a platform independent
|
||||
alternative to directiong output to any kind of null device.
|
||||
* junitlauncher now prints a more useful and instantaneous summary of
|
||||
tests being run, closely matching the junit task's summary.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 1 15:38:21 UTC 2020 - Pedro Monreal <pmonreal@suse.com>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package ant-junit
|
||||
#
|
||||
# Copyright (c) 2020 SUSE LLC
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# Copyright (c) 2000-2009, JPackage Project
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
@ -24,7 +24,7 @@
|
||||
%bcond_with junit5
|
||||
%bcond_with antlr
|
||||
Name: ant-junit
|
||||
Version: 1.10.9
|
||||
Version: 1.10.10
|
||||
Release: 0
|
||||
Summary: Optional junit tasks for ant
|
||||
License: Apache-2.0
|
||||
@ -104,11 +104,13 @@ Apache Ant is a Java-based build tool.
|
||||
|
||||
This package contains optional JUnit tasks for Apache Ant.
|
||||
%elif %{with junit5}
|
||||
|
||||
%description
|
||||
Apache Ant is a Java-based build tool.
|
||||
|
||||
This package contains optional JUnit5 tasks for Apache Ant.
|
||||
%else
|
||||
|
||||
%description
|
||||
Apache Ant is a Java-based build tool. In theory, it is kind of like
|
||||
Make. Build description files are written in XML.
|
||||
|
@ -1,3 +1,52 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 3 16:17:46 UTC 2021 - Pedro Monreal <pmonreal@suse.com>
|
||||
|
||||
- Update to 1.10.10
|
||||
* SCP (with sftp=true) task would fail if fetching file located
|
||||
in root directory.
|
||||
* Fixed: javac task would fail if the arguments file it
|
||||
(internally) created didn't quote the # character.
|
||||
* Make sure LegacyXmlResultFormatter encodes characters illegal
|
||||
in XML the same way JUnit5's built-in formatter would.
|
||||
* LegacyXmlResultFormatter no longer double-encodes <>& in
|
||||
system-err and system-out.
|
||||
* Fixes a bug in junitlauncher task's legacy-xml formatter,
|
||||
where the testcase representing a @Parameterized JUnit4 test
|
||||
wasn't being reported in the XML.
|
||||
* Fixes a bug where the ant-testutil-sources.jar that gets
|
||||
published to Maven central repository didn't contain any
|
||||
source files.
|
||||
* The <http> condition didn't follow redirects from http to https.
|
||||
* ZipOutputStream now overrides write(int) in order to make sure
|
||||
single byte writes get the same treatment as array writes.
|
||||
* Fixes a potential deadlock in junitlauncher task when using
|
||||
legacy-xml reporter.
|
||||
* javaversion condition now has a new "atmost" attribute. See
|
||||
the javaversion manual for more details
|
||||
* The "listener" nested element of the "junitlauncher" task now
|
||||
has a new "useLegacyReportingName" attribute which can be used
|
||||
to control the test identifiers names that get reported by the
|
||||
listener. See the junitlauncher manual for more details. Note that
|
||||
this change also introduces a new "setUseLegacyReportingName" method
|
||||
on the org.apache.tools.ant.taskdefs.optional.junitlauncher.TestResultFormatter
|
||||
interface. This will break backward compatibility with any of your custom
|
||||
result formatters which implemented this interface and such implementations
|
||||
are now expected to implement this new method.
|
||||
* A new attribute preserveduplicates allows <resourcelist> to
|
||||
return the same resource multiple times when set to true.
|
||||
* A new attribute filterbeforeconcat in <concat> can be used to
|
||||
decide whether the filterchain should be applied to the
|
||||
concatenated content (the default) or each nested resource
|
||||
individually before concatenating them.
|
||||
* The ssh tasks now share a new nested element additionalConfig that can
|
||||
be used to set config values for the jsch Session used by the task.
|
||||
* Added new discardOutput and discardError properties to redirector
|
||||
and the exec, apply and java tasks which can be used to completely
|
||||
discard any (error) output. This is a platform independent
|
||||
alternative to directiong output to any kind of null device.
|
||||
* junitlauncher now prints a more useful and instantaneous summary of
|
||||
tests being run, closely matching the junit task's summary.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 1 15:38:21 UTC 2020 - Pedro Monreal <pmonreal@suse.com>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package ant-junit5
|
||||
#
|
||||
# Copyright (c) 2020 SUSE LLC
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# Copyright (c) 2000-2009, JPackage Project
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
@ -24,7 +24,7 @@
|
||||
%bcond_without junit5
|
||||
%bcond_with antlr
|
||||
Name: ant-junit5
|
||||
Version: 1.10.9
|
||||
Version: 1.10.10
|
||||
Release: 0
|
||||
Summary: Optional junit tasks for ant
|
||||
License: Apache-2.0
|
||||
@ -104,11 +104,13 @@ Apache Ant is a Java-based build tool.
|
||||
|
||||
This package contains optional JUnit tasks for Apache Ant.
|
||||
%elif %{with junit5}
|
||||
|
||||
%description
|
||||
Apache Ant is a Java-based build tool.
|
||||
|
||||
This package contains optional JUnit5 tasks for Apache Ant.
|
||||
%else
|
||||
|
||||
%description
|
||||
Apache Ant is a Java-based build tool. In theory, it is kind of like
|
||||
Make. Build description files are written in XML.
|
||||
|
49
ant.changes
49
ant.changes
@ -1,3 +1,52 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 3 16:17:46 UTC 2021 - Pedro Monreal <pmonreal@suse.com>
|
||||
|
||||
- Update to 1.10.10
|
||||
* SCP (with sftp=true) task would fail if fetching file located
|
||||
in root directory.
|
||||
* Fixed: javac task would fail if the arguments file it
|
||||
(internally) created didn't quote the # character.
|
||||
* Make sure LegacyXmlResultFormatter encodes characters illegal
|
||||
in XML the same way JUnit5's built-in formatter would.
|
||||
* LegacyXmlResultFormatter no longer double-encodes <>& in
|
||||
system-err and system-out.
|
||||
* Fixes a bug in junitlauncher task's legacy-xml formatter,
|
||||
where the testcase representing a @Parameterized JUnit4 test
|
||||
wasn't being reported in the XML.
|
||||
* Fixes a bug where the ant-testutil-sources.jar that gets
|
||||
published to Maven central repository didn't contain any
|
||||
source files.
|
||||
* The <http> condition didn't follow redirects from http to https.
|
||||
* ZipOutputStream now overrides write(int) in order to make sure
|
||||
single byte writes get the same treatment as array writes.
|
||||
* Fixes a potential deadlock in junitlauncher task when using
|
||||
legacy-xml reporter.
|
||||
* javaversion condition now has a new "atmost" attribute. See
|
||||
the javaversion manual for more details
|
||||
* The "listener" nested element of the "junitlauncher" task now
|
||||
has a new "useLegacyReportingName" attribute which can be used
|
||||
to control the test identifiers names that get reported by the
|
||||
listener. See the junitlauncher manual for more details. Note that
|
||||
this change also introduces a new "setUseLegacyReportingName" method
|
||||
on the org.apache.tools.ant.taskdefs.optional.junitlauncher.TestResultFormatter
|
||||
interface. This will break backward compatibility with any of your custom
|
||||
result formatters which implemented this interface and such implementations
|
||||
are now expected to implement this new method.
|
||||
* A new attribute preserveduplicates allows <resourcelist> to
|
||||
return the same resource multiple times when set to true.
|
||||
* A new attribute filterbeforeconcat in <concat> can be used to
|
||||
decide whether the filterchain should be applied to the
|
||||
concatenated content (the default) or each nested resource
|
||||
individually before concatenating them.
|
||||
* The ssh tasks now share a new nested element additionalConfig that can
|
||||
be used to set config values for the jsch Session used by the task.
|
||||
* Added new discardOutput and discardError properties to redirector
|
||||
and the exec, apply and java tasks which can be used to completely
|
||||
discard any (error) output. This is a platform independent
|
||||
alternative to directiong output to any kind of null device.
|
||||
* junitlauncher now prints a more useful and instantaneous summary of
|
||||
tests being run, closely matching the junit task's summary.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 1 15:38:21 UTC 2020 - Pedro Monreal <pmonreal@suse.com>
|
||||
|
||||
|
6
ant.spec
6
ant.spec
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package ant
|
||||
#
|
||||
# Copyright (c) 2020 SUSE LLC
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# Copyright (c) 2000-2009, JPackage Project
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
@ -23,7 +23,7 @@
|
||||
%bcond_with junit5
|
||||
%bcond_with antlr
|
||||
Name: ant
|
||||
Version: 1.10.9
|
||||
Version: 1.10.10
|
||||
Release: 0
|
||||
Summary: Java-based build tool
|
||||
License: Apache-2.0
|
||||
@ -103,11 +103,13 @@ Apache Ant is a Java-based build tool.
|
||||
|
||||
This package contains optional JUnit tasks for Apache Ant.
|
||||
%elif %{with junit5}
|
||||
|
||||
%description
|
||||
Apache Ant is a Java-based build tool.
|
||||
|
||||
This package contains optional JUnit5 tasks for Apache Ant.
|
||||
%else
|
||||
|
||||
%description
|
||||
Apache Ant is a Java-based build tool. In theory, it is kind of like
|
||||
Make. Build description files are written in XML.
|
||||
|
3
apache-ant-1.10.10-src.tar.xz
Normal file
3
apache-ant-1.10.10-src.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c8ab046eaca09d2c3fa0cdf1a681740e31f8afad0ad6bc346fe51d16fdc6d92d
|
||||
size 4530288
|
16
apache-ant-1.10.10-src.tar.xz.asc
Normal file
16
apache-ant-1.10.10-src.tar.xz.asc
Normal file
@ -0,0 +1,16 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQIzBAABCAAdFiEEjacMAN968bDS+dx03bzBJwop0IEFAmBzv6cACgkQ3bzBJwop
|
||||
0IFIJg//TGQ6nt0Y7A3AHA0FTaNILyx1dPHWOU2k5OJWuFUYmWn8w123cU2oFsWM
|
||||
jswdArCNOOYOGgQks2ALiuAKrMs37K+osuCOJzXbOxffuE3mpIXFdf5oz916qg93
|
||||
fg4FxBWEkkQQECgosLs2KDdf26ODz5pJH7beJsVLujRnO3Y1qpU8WiUqj8VWEy8t
|
||||
mLKKZUgO2+mKSHKCKNw2aXHypHfQSm2UImi85hzxsaBHIo4hK8MEeFVmKBLWjf5q
|
||||
8qeaZufqjdV/6T+tlcoMw2ARAuBMeiEv4j/3gyUiGnnh+sAs353sG7z3MFSvDgax
|
||||
RwmsfoBCGBlWAcHwWiW1HiJtNViRBnlvtzyAklyAnNIpyBy2n3vn+Oh+uEQjAH7G
|
||||
1zBNzj47K4e9IfR7Ryb/FtexuaPieny+CwCZi77zjWv69I2+pqEJe+h+pgLfXe5h
|
||||
/8DcYGoskyfhuuNxX7YLDWkTPyo8MZr074QBKHjL8nhwN8vcBJkqvWduqER5YFUL
|
||||
pgTXAGOOONNHOqSsyqUaePB7dk7PTy/cGdRJ48QBfiI+LMCEsm9hP9iRaHBqw3Z7
|
||||
frS256po21czzqyWBhhF7E/eVOBdFaKJuL4xGc+/0tfoavQycONuPDjkqUAMxetr
|
||||
K4cMUzcosoxs1FLf/EOenbiRXD4KjXNtbtE3R5FN6T6h0R7rcAM=
|
||||
=PX25
|
||||
-----END PGP SIGNATURE-----
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4b2008cc60fefd424b05567e9d43a071302865d5fd8b01a807e15e381b557ec2
|
||||
size 4333648
|
@ -1,7 +0,0 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iHEEABECADEWIQTOgHWiUVR77iSbwVGiEVrhX2uLcgUCX3BjFxMcYm9kZXdpZ0Bh
|
||||
cGFjaGUub3JnAAoJEKIRWuFfa4ty1RoAoOCTeA+8V7MxLXzseH0dUpcfm9U4AJ4w
|
||||
jTGSbocA3ex+Yy+rheNXYZTsXA==
|
||||
=qgma
|
||||
-----END PGP SIGNATURE-----
|
Loading…
x
Reference in New Issue
Block a user