An open API service indexing awesome lists of open source software.

https://github.com/mjgardner/xml-ant-buildfile

consume Ant build files
https://github.com/mjgardner/xml-ant-buildfile

Last synced: 3 months ago
JSON representation

consume Ant build files

Awesome Lists containing this project

README

        

=pod

=encoding UTF-8

=for :stopwords Mark Gardner GSI Commerce cpan testmatrix url annocpan anno bugtracker rt
cpants kwalitee diff irc mailto metadata placeholders metacpan

=head1 NAME

XML::Ant::BuildFile::Project - consume Ant build files

=head1 VERSION

version 0.217

=head1 SYNOPSIS

use XML::Ant::BuildFile::Project;

my $project = XML::Ant::BuildFile::Project->new( file => 'build.xml' );
print 'Project name: ', $project->name, "\n";
print "File lists:\n";
for my $list_ref (@{$project->file_lists}) {
print 'id: ', $list_ref->id, "\n";
print join "\n", @{$list_ref->files};
print "\n\n";
}

=head1 DESCRIPTION

This class uses L