use strict;
use warnings;

package Maven::Xml::Pom::Developer;
$Maven::Xml::Pom::Developer::VERSION = '1.10';
# ABSTRACT: Maven Developer element
# PODNAME: Maven::Xml::Pom::Developer

use parent qw(Maven::Xml::Pom::Contributor);
__PACKAGE__->follow_best_practice;
__PACKAGE__->mk_ro_accessors(
    qw(
        id
        )
);

1;

__END__

=pod

=head1 NAME

Maven::Xml::Pom::Developer - Maven Developer element

=head1 VERSION

version 1.10

=head1 AUTHOR

Lucas Theisen <lucastheisen@pastdev.com>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2014 by Lucas Theisen.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=head1 SEE ALSO

Please see those modules/websites for more information related to this module.

=over 4

=item *

L<Maven::Agent|Maven::Agent>

=back

=cut