abnffuzzer
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.nradov</groupId> <artifactId>abnffuzzer</artifactId> <version>0.2.2</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.nradov</groupId> <artifactId>abnffuzzer</artifactId> <version>0.2.2</version> <packaging>jar</packaging> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy nexus-staging:release</goals> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.0</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>3.1.1</version> <configuration> <source>8</source> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.2.0</version> <configuration> <archive> <index>true</index> <manifest> <mainClass>com.github.abnffuzzer.Fuzzer</mainClass> </manifest> <manifestEntries> </manifestEntries> </archive> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>13</source> <target>13</target> <showDeprecation>true</showDeprecation> <showWarnings>true</showWarnings> <compilerArgs> <arg>-Xlint</arg> <arg>-Xdoclint</arg> </compilerArgs> </configuration> </plugin> <plugin> <groupId>org.antlr</groupId> <artifactId>antlr4-maven-plugin</artifactId> <version>4.7.2</version> <executions> <execution> <id>antlr</id> <goals> <goal>antlr4</goal> </goals> </execution> </executions> </plugin> <plugin> <!-- http://mvnrepository.com/artifact/com.github.github/site-maven-plugin --> <groupId>com.github.github</groupId> <artifactId>site-maven-plugin</artifactId> <version>0.12</version> <configuration> <server>github</server> <message>Generated site for site-maven-plugin 0.9</message> <!-- Destination directory --> <path>site-plugin</path> <merge>true</merge> </configuration> <executions> <execution> <goals> <goal>site</goal> </goals> <phase>site-deploy</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.8.2</version> <configuration> <!-- https://github.github.com/maven-plugins/site-plugin/phase.html --> <skipDeploy>true</skipDeploy> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>3.0.0</version> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <windowtitle>ABNF Fuzzer</windowtitle> <doctitle>ABNF Fuzzer</doctitle> <detectLinks>true</detectLinks> <detectOfflineLinks>true</detectOfflineLinks> <linksource>true</linksource> <detectJavaApiLink>true</detectJavaApiLink> <source>8</source> <links> <link>https://www.antlr.org/api/Java/</link> <link>https://junit.org/junit4/javadoc/latest/</link> <link>https://commons.apache.org/proper/commons-cli/javadocs/api-release/</link> <!-- TODO: Add back the Java EE API link --> </links> </configuration> <version>2.10.3</version> </plugin> </plugins> </reporting> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> <version>1.4</version> </dependency> <dependency> <groupId>org.antlr</groupId> <artifactId>antlr4</artifactId> <version>4.7.2</version> </dependency> <dependency> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId> <version>4.7.2</version> </dependency> <dependency> <groupId>com.sun.mail</groupId> <artifactId>javax.mail</artifactId> <version>1.6.2</version> <scope>test</scope> </dependency> </dependencies> <name>ABNF Fuzzer</name> <url>https://github.com/nradov/${project.artifactId}</url> <inceptionYear>2016</inceptionYear> <licenses> <license> <name>GNU Lesser General Public License, version 2.1</name> <url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html</url> <distribution>repo</distribution> </license> </licenses> <issueManagement> <url>https://github.com/nradov/${project.artifactId}/issues</url> <system>GitHub</system> </issueManagement> <scm> <connection>scm:git:https://github.com/nradov/${project.artifactId}.git</connection> <url>https://github.com/nradov/${project.artifactId}</url> <developerConnection>scm:git:https://github.com/nradov/${project.artifactId}.git</developerConnection> <tag>abnffuzzer-0.1.10</tag> </scm> <description> Fuzz tester for Augmented Backus-Naur Form (ABNF) rules as defined in IETF RFC 5234. This library can directly parse a variety of input sources and extract the ABNF rules, then generate random output matching those rules. That output can be fed in a test framework such as JUnit to search for defects in an application which implements the rules. The most common use case would be testing implementations of other IETF RFCs. </description> <developers> <developer> <id>nradov</id> <name>Nick Radov</name> <email>nradov@gmail.com</email> <url>https://github.com/nradov</url> <timezone>America/Los_Angeles</timezone> <properties> <picUrl>https://avatars3.githubusercontent.com/u/6307271?v=3&s=460</picUrl> </properties> </developer> </developers> <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>