custom-path-parser-plugin-demo
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.apiman.plugins</groupId>
<artifactId>custom-path-parser-plugin-demo</artifactId>
<version>3.1.3.Final</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.apiman.plugins</groupId>
<artifactId>apiman-plugins</artifactId>
<version>3.1.3.Final</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>custom-path-parser-plugin-demo</artifactId>
<packaging>war</packaging>
<name>custom-path-parser-plugin-demo</name>
<dependencies>
<dependency>
<groupId>io.apiman</groupId>
<artifactId>apiman-test-policies</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<!-- apiman dependencies (must be excluded from the WAR) -->
<dependency>
<groupId>io.apiman</groupId>
<artifactId>apiman-gateway-engine-beans</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.apiman</groupId>
<artifactId>apiman-gateway-engine-core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.apiman</groupId>
<artifactId>apiman-gateway-engine-policies</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
<webResources>
<resource>
<directory>src/main/apiman</directory>
<targetPath>META-INF/apiman</targetPath>
<filtering>true</filtering>
</resource>
</webResources>
</configuration>
</plugin>
</plugins>
</build>
</project>