apiman-plugins-3scale-auth
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.apiman.plugins</groupId> <artifactId>apiman-plugins-3scale-auth</artifactId> <version>2.0.0.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>2.0.0.Final</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>apiman-plugins-3scale-auth</artifactId> <packaging>war</packaging> <name>apiman-plugins-3scale-auth</name> <dependencies> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </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> <dependency> <groupId>io.apiman</groupId> <artifactId>apiman-gateway-engine-3scale</artifactId> <scope>provided</scope> </dependency> <!-- Testing --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <filtering>false</filtering> <directory>src/main/resources</directory> </resource> </resources> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>1.9.1</version> <!-- TODO put in parent POM --> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>src/main/generated</source> </sources> </configuration> </execution> </executions> </plugin> <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>