ddos-servlet-filter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.itransformers</groupId> <artifactId>ddos-servlet-filter</artifactId> <version>1.0.0</version> </dependency>
<!-- ~ pom.xml ~ ~ Copyright [2016] [iTransformers Labs Ltd - http://itransformers.net] ~ ~ DDOS servlet filter has been created by Nikolay Milovanov and Vasil Yordanov with the purpose of defending enterprise java applications from DDOS (Distributed Denial of Service Attacks) by blackholing the attacker traffic by applying RFC rfc5635 - Remote Triggered Black Hole Filtering with Unicast Reverse Path Forwarding (uRPF) ~ ~ DDOS servlet filter has been licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <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"> <modelVersion>4.0.0</modelVersion> <groupId>net.itransformers</groupId> <artifactId>ddos-servlet-filter</artifactId> <packaging>war</packaging> <version>1.0.0</version> <name>DDOS Servlet Filter</name> <url>http://itransformers.net/ddos-servlet-filter</url> <description>DDOS servlet filter is able to apply a remotely triggered black holing as per RFC 5635!</description> <organization> <name>iTransformers Labs</name> <url>http://itransformers.net</url> </organization> <issueManagement> <url>https://github.com/iTransformers/ddos-servlet-filter/issues</url> <system>GitHub Issues</system> </issueManagement> <developers> <developer> <id>niau</id> <name>Nikolay Milovanov</name> <email>nmil itransformers dot net</email> <url>http://niau.org</url> <organization>iTransformers Labs</organization> <organizationUrl>http://itransformers.net</organizationUrl> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>Europe/Sofia</timezone> </developer> <developer> <id>vasil-yordanov</id> <name>Vasil Yordanov</name> <email>vasil.yordanov gmail dot com</email> <organization>iTransformers Labs</organization> <organizationUrl>http://itransformers.net</organizationUrl> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>Europe/Sofia</timezone> </developer> </developers> <licenses> <license> <name>Apache License v 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/iTransformers/ddos-servlet-filter.git</url> </scm> <dependencies> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.0.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>net.itransformers</groupId> <artifactId>expect4groovy</artifactId> <version>1.0.0</version> </dependency> <dependency> <groupId>net.itransformers</groupId> <artifactId>expect4java</artifactId> <version>1.0.0</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.9</version> <scope>test</scope> </dependency> </dependencies> <build> <finalName>ddos-servlet-filter</finalName> <plugins> <plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <version>2.2</version> <configuration> <url>http://localhost:8080/manager/text</url> <server>deploymentRepo</server> <path>/ddos-servlet-filter</path> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <!-- 2.8.0-01 and later require maven-compiler-plugin 3.1 or higher --> <version>3.1</version> <configuration> <compilerId>groovy-eclipse-compiler</compilerId> <!-- set verbose to be true if you want lots of uninteresting messages --> <source>1.6</source> <target>1.6</target> <!--<verbose>true</verbose>--> </configuration> <dependencies> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-eclipse-compiler</artifactId> <version>2.8.0-01</version> </dependency> <!-- for 2.8.0-01 and later you must have an explicit dependency on groovy-eclipse-batch --> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-eclipse-batch</artifactId> <version>2.1.8-01</version> <!-- or choose a different compiler version --> <!-- <version>1.8.6-01</version> --> <!-- <version>1.7.10-06</version> --> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.3</version> <executions> <execution> <id>default-deploy</id> <phase>deploy</phase> <goals> <goal>deploy</goal> </goals> </execution> </executions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> </distributionManagement> </project>