Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to Ant 1.9.2 #18

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added apache.ant/apache.ant.1.9.0.nupkg
Binary file not shown.
Binary file added apache.ant/apache.ant.1.9.1.nupkg
Binary file not shown.
Binary file added apache.ant/apache.ant.1.9.2.nupkg
Binary file not shown.
47 changes: 25 additions & 22 deletions apache.ant/apache.ant.nuspec
Original file line number Diff line number Diff line change
@@ -1,23 +1,26 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>apache.ant</id>
<title>Apache Ant</title>
<version>1.8.4</version>
<authors>Apache Software Foundation</authors>
<owners>Elliando Dias</owners>
<summary>Apache Ant is a software tool for automating software build processes</summary>
<description>Apache Ant is a software tool for automating software build processes</description>
<projectUrl>http://ant.apache.org/</projectUrl>
<tags>apache java ant build-tool</tags>
<copyright>� 2002-2012 The Apache Software Foundation</copyright>
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0.html</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>http://www.zoomingin.net/wp-content/uploads/2010/12/Apache-Ant-Logo-java.png</iconUrl>
<dependencies>
<!-- <dependency id="java" version="" /> -->
<dependency id="binRoot"/>
</dependencies>
<releaseNotes></releaseNotes>
</metadata>
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>apache.ant</id>
<version>1.9.2</version>
<title>Apache Ant</title>
<authors>Apache Software Foundation</authors>
<owners>Elliando Dias</owners>
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0.html</licenseUrl>
<projectUrl>http://ant.apache.org/</projectUrl>
<iconUrl>http://www.zoomingin.net/wp-content/uploads/2010/12/Apache-Ant-Logo-java.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Apache Ant is a software tool for automating software build processes</description>
<summary>Apache Ant is a software tool for automating software build processes</summary>
<releaseNotes>Originally released on 12 July 2013</releaseNotes>
<copyright>© 2002-2013 The Apache Software Foundation</copyright>
<tags>apache java ant build-tool</tags>
<dependencies>
<dependency id="binRoot" />
</dependencies>
</metadata>
<files>
<file src="tools\chocolateyInstall.ps1" target="tools\chocolateyInstall.ps1" />
<file src="ant_logo.png" target="ant_logo.png" />
</files>
</package>
2 changes: 1 addition & 1 deletion apache.ant/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ if($env:chocolatey_bin_root -ne $null){

CreateFolder($binRoot)

$version = '1.8.4'
$version = '1.9.2'
$name = "apache-ant-$version"
$url = "http://archive.apache.org/dist/ant/binaries/$name-bin.zip"
$ant_home = Join-Path $binRoot $name
Expand Down