From 52952e4acece3f0e7d843f678474dda79dc5667d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arne=20J=C3=B8rgensen?= Date: Wed, 29 Jun 2016 22:56:27 +0200 Subject: [PATCH] Add pom.xml for executing PHP Swagger Petstore Security Client tests Following #3224 this adds a `pom.xml` for executing `mvn integration-test` on the PHP Swagger Petstore Security Client tests. The `pom.xml` is identical to the one in `samples/client/petstore/php/SwaggerClient-php/pom.xml` with only name and artifactId changed. --- .../php/SwaggerClient-php/pom.xml | 59 +++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 samples/client/petstore-security-test/php/SwaggerClient-php/pom.xml diff --git a/samples/client/petstore-security-test/php/SwaggerClient-php/pom.xml b/samples/client/petstore-security-test/php/SwaggerClient-php/pom.xml new file mode 100644 index 00000000000..dabc9259c50 --- /dev/null +++ b/samples/client/petstore-security-test/php/SwaggerClient-php/pom.xml @@ -0,0 +1,59 @@ + + 4.0.0 + com.wordnik + PhpPetstoreClientSecurityTests + pom + 1.0-SNAPSHOT + PHP Swagger Petstore Security Client + + + + maven-dependency-plugin + + + package + + copy-dependencies + + + ${project.build.directory} + + + + + + org.codehaus.mojo + exec-maven-plugin + 1.2.1 + + + bundle-install + pre-integration-test + + exec + + + composer + + install + + + + + bundle-test + integration-test + + exec + + + vendor/bin/phpunit + + test + + + + + + + +