The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use ExtUtils::MakeMaker;

use 5.008;

my $version = '3.03';

my $prereq =
   { XML::Compile         => 1.48
   , XML::Compile::SOAP11 => 3.06
   , XML::Compile::Cache  => 1.03
   , Log::Report          => 1.05
   , Test::More           => 0.54
   };

WriteMakefile
 ( NAME	 	=> 'XML::Compile::WSDL11'
 , VERSION	=> $version
 , PREREQ_PM    => $prereq
 , AUTHOR       => 'Mark Overmeer'
 , ABSTRACT     => 'WSDL version 1.1'
 , LICENSE      => 'perl'
 );

### used by oodist during production of distribution
sub MY::postamble { <<'__POSTAMBLE' }

# for DIST
EXTENDS		= ../XMLCache:../XMLSOAP:../XMLCompile
RAWDIR          = ../public_html/xml-compile-wsdl11/raw
DISTDIR         = ../public_html/xml-compile-wsdl11/source
LICENSE         = artistic
SKIP_LINKS	= XML::LibXML

# for POD
FIRST_YEAR      = 2014
EMAIL           = perl@overmeer.net
WEBSITE         = http://perl.overmeer.net/xml-compile/
PODTAIL		= ../XML-shared-podtail
__POSTAMBLE