allpay-public-soap-demo
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>kz.allpay.mfs</groupId> <artifactId>allpay-public-soap-demo</artifactId> <version>2.0.8.3</version> </dependency>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <parent> <artifactId>allpay-public-soap</artifactId> <groupId>kz.allpay.mfs</groupId> <version>2.0.8.3</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>allpay-public-soap-demo</artifactId> <packaging>war</packaging> <name>allpay-public-soap-demo</name> <properties> <reasteasy.scope>provided</reasteasy.scope> <maven.deploy.skip>true</maven.deploy.skip> </properties> <profiles> <profile> <id>tomcat</id> <properties> <reasteasy.scope>compile</reasteasy.scope> </properties> </profile> <!-- environment group --> <profile> <id>local</id> <activation> <activeByDefault>true</activeByDefault> </activation> <properties> <allpay.api.url>http://localhost:8080/allpay-public-soap/transaction-management/v1.1?wsdl</allpay.api.url> <allpay.cash.in.api.url>http://localhost:8080/allpay-public-soap/cash-in-transaction-management/v1.1?wsdl</allpay.cash.in.api.url> </properties> </profile> <profile> <id>alpha</id> <properties> <allpay.api.url>https://alpha.allpay.kz/allpay-public-soap/transaction-management/v1.1?wsdl</allpay.api.url> <allpay.cash.in.api.url>http://alpha.allpay.kz/allpay-public-soap/cash-in-transaction-management/v1.1?wsdl</allpay.cash.in.api.url> </properties> </profile> <profile> <id>beta</id> <properties> <allpay.api.url>http://beta.allpay.kz/allpay-public-soap/transaction-management/v1.1?wsdl</allpay.api.url> <allpay.cash.in.api.url>http://beta.allpay.kz/allpay-public-soap/cash-in-transaction-management/v1.1?wsdl</allpay.cash.in.api.url> </properties> </profile> </profiles> <dependencies> <dependency> <groupId>javax</groupId> <artifactId>javaee-api</artifactId> <version>7.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> <scope>provided</scope> </dependency> <!-- https://mvnrepository.com/artifact/javax.servlet/jstl --> <dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> <version>1.2</version> </dependency> <dependency> <artifactId>allpay-public-soap-client</artifactId> <groupId>kz.allpay.mfs</groupId> <version>2.0.8.3</version> </dependency> <dependency> <artifactId>gson</artifactId> <groupId>com.google.code.gson</groupId> <version>2.8.0</version> </dependency> <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-jaxrs</artifactId> <version>3.0.24.Final</version> <scope>${reasteasy.scope}</scope> </dependency> <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-multipart-provider</artifactId> <version>3.0.24.Final</version> <scope>${reasteasy.scope}</scope> </dependency> </dependencies> <build> <finalName>allpay-public-soap-demo</finalName> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.6.0</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>3.0.0</version> <configuration> <packagingExcludes>WEB-INF/web.xml</packagingExcludes> <webResources> <resource> <directory>${basedir}/src/main/webapp/WEB-INF</directory> <targetPath>WEB-INF</targetPath> </resource> <resource> <directory>${basedir}/src/main/resources</directory> </resource> </webResources> </configuration> </plugin> </plugins> </build> </project>