1<project> 2 <modelVersion>4.0.0</modelVersion> 3 <groupId>{groupId}</groupId> 4 <artifactId>{artifactId}</artifactId> 5 <version>{version}</version> 6 <packaging>{type}</packaging> 7 8 <dependencies> 9{dependencies} 10 </dependencies> 11 12 <name>Jazzer API</name> 13 <description>Helper functions and annotations for Jazzer fuzz targets</description> 14 <url>https://github.com/CodeIntelligenceTesting/jazzer</url> 15 16 <licenses> 17 <license> 18 <name>Apache License, Version 2.0</name> 19 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> 20 <distribution>repo</distribution> 21 </license> 22 </licenses> 23 24 <organization> 25 <name>Code Intelligence GmbH</name> 26 <url>https://code-intelligence.com</url> 27 </organization> 28 29 <developers> 30 <developer> 31 <id>fmeum</id> 32 <name>Fabian Meumertzheim</name> 33 <email>[email protected]</email> 34 <organization>Code Intelligence GmbH</organization> 35 </developer> 36 </developers> 37 38 <scm> 39 <url>https://github.com/CodeIntelligenceTesting/jazzer</url> 40 </scm> 41</project> 42