bitsensor-servlet-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.bitsensor.plugins</groupId> <artifactId>bitsensor-servlet-plugin</artifactId> <version>4.0.3</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/maven-v4_0_0.xsd"> <parent> <artifactId>bitsensor-support</artifactId> <groupId>io.bitsensor.plugins</groupId> <version>4.0.3</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>bitsensor-servlet-plugin</artifactId> <name>BitSensor ~ Support ~ Servlet Plugin</name> <build> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>io.bitsensor.plugins</groupId> <artifactId>bitsensor-core</artifactId> <version>4.0.3</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>proto</artifactId> <groupId>io.bitsensor</groupId> </exclusion> <exclusion> <artifactId>spring-context</artifactId> <groupId>org.springframework</groupId> </exclusion> <exclusion> <artifactId>chlorine-finder</artifactId> <groupId>io.dataapps.chlorine</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.1.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>java-hamcrest</artifactId> <version>2.0.0.0</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.codehaus.mojo</groupId> <artifactId>animal-sniffer-annotations</artifactId> <version>1.16</version> <scope>provided</scope> </dependency> </dependencies> </project>