Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
903b3e95e4 |
17
Build.PL
17
Build.PL
@@ -1,7 +1,12 @@
|
||||
use Module::Build;
|
||||
Module::Build->new(
|
||||
dist_abstract => 'WSDL support for SOAP::Lite',
|
||||
module_name => 'SOAP::WSDL',
|
||||
license => 'artistic',
|
||||
requires => { 'SOAP::Lite' => 0.55, 'XML::XPath' => 0 }
|
||||
)->create_build_script;
|
||||
Module::Build->new(
|
||||
dist_abstract => 'WSDL support for SOAP::Lite',
|
||||
module_name => 'SOAP::WSDL',
|
||||
license => 'artistic',
|
||||
requires => {
|
||||
'SOAP::Lite' => 0.,
|
||||
'XML::XPath' => 0
|
||||
},
|
||||
buildrequires => { 'Test::More' => 0 },
|
||||
|
||||
)->create_build_script;
|
||||
|
||||
7
CHANGES
7
CHANGES
@@ -1,3 +1,10 @@
|
||||
* v1.22 2007/05/30 - auto-discover service and port again
|
||||
- re-introduces auto-detecting of servicename and portname
|
||||
- fixes #27325: Test fails with Test::Pod::Coverage v 1.06.
|
||||
- Now build requires Test::More
|
||||
- documentation update
|
||||
- cosmetics
|
||||
|
||||
2007/05/28 private methods made private and pod update
|
||||
- added pod tests
|
||||
- made encodeComplexType and method generators private
|
||||
|
||||
11
META.yml
11
META.yml
@@ -1,21 +1,18 @@
|
||||
---
|
||||
name: SOAP-WSDL
|
||||
version: 1.21
|
||||
author:
|
||||
- |-
|
||||
Martin Kutter <martin.kutter@fen-net.de>
|
||||
Giovanni S. Fois giovannisfois@tiscali.it
|
||||
version: 1.22
|
||||
author: []
|
||||
abstract: WSDL support for SOAP::Lite
|
||||
license: artistic
|
||||
resources:
|
||||
license: http://opensource.org/licenses/artistic-license.php
|
||||
requires:
|
||||
SOAP::Lite: 0.55
|
||||
SOAP::Lite: 0
|
||||
XML::XPath: 0
|
||||
provides:
|
||||
SOAP::WSDL:
|
||||
file: lib/SOAP/WSDL.pm
|
||||
version: 1.21
|
||||
version: 1.22
|
||||
generated_by: Module::Build version 0.28
|
||||
meta-spec:
|
||||
url: http://module-build.sourceforge.net/META-spec-v1.2.html
|
||||
|
||||
11
README
11
README
@@ -20,13 +20,10 @@ need the following packages:
|
||||
|
||||
INSTALLING
|
||||
|
||||
Use the usual mantra:
|
||||
|
||||
perl Makefile.PL
|
||||
make
|
||||
make test
|
||||
make install
|
||||
|
||||
perl Build.PL
|
||||
perl Build
|
||||
perl Build test
|
||||
perl Build install
|
||||
|
||||
LICENSE
|
||||
|
||||
|
||||
1767
lib/SOAP/WSDL.pm
1767
lib/SOAP/WSDL.pm
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
||||
use Test::More;
|
||||
eval "use Test::Pod::Coverage 1.00";
|
||||
plan skip_all => "Test::Pod::Coverage 1.00 required for testing POD" if $@;
|
||||
eval { use Test::Pod::Coverage 1.08 };
|
||||
plan skip_all => "Test::Pod::Coverage 1.08 required for testing POD" if $@;
|
||||
|
||||
|
||||
BEGIN
|
||||
|
||||
Reference in New Issue
Block a user