|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + |
| 6 | + <groupId>com.fuzzing</groupId> |
| 7 | + <artifactId>Fuzzing</artifactId> |
| 8 | + <version>1.0.0</version> |
| 9 | + <properties> |
| 10 | + <maven.compiler.source>15</maven.compiler.source> |
| 11 | + <maven.compiler.target>15</maven.compiler.target> |
| 12 | + </properties> |
| 13 | + <dependencies> |
| 14 | + <!-- JUnit BOM (Bill of Materials) für JUnit 5 --> |
| 15 | + <dependency> |
| 16 | + <groupId>org.junit</groupId> |
| 17 | + <artifactId>junit-bom</artifactId> |
| 18 | + <version>5.11.0</version> |
| 19 | + <scope>import</scope> |
| 20 | + <type>pom</type> |
| 21 | + </dependency> |
| 22 | + |
| 23 | + <!-- JUnit Jupiter API für Tests --> |
| 24 | + <dependency> |
| 25 | + <groupId>org.junit.jupiter</groupId> |
| 26 | + <artifactId>junit-jupiter</artifactId> |
| 27 | + <version>5.11.0</version> |
| 28 | + <scope>test</scope> |
| 29 | + </dependency> |
| 30 | + |
| 31 | + <!-- JUnit Platform Launcher für das Ausführen von Tests --> |
| 32 | + <dependency> |
| 33 | + <groupId>org.junit.platform</groupId> |
| 34 | + <artifactId>junit-platform-launcher</artifactId> |
| 35 | + <version>1.11.0</version> |
| 36 | + <scope>test</scope> |
| 37 | + </dependency> |
| 38 | + <dependency> |
| 39 | + <groupId>edu.berkeley.cs.jqf</groupId> |
| 40 | + <artifactId>jqf-maven-plugin</artifactId> |
| 41 | + <version>2.0</version> |
| 42 | + </dependency> |
| 43 | + </dependencies> |
| 44 | + |
| 45 | + <build> |
| 46 | + <resources> |
| 47 | + <resource> |
| 48 | + <directory>c-runtime</directory> |
| 49 | + <targetPath>c-runtime</targetPath> |
| 50 | + <includes> |
| 51 | + <include>**/*</include> |
| 52 | + </includes> |
| 53 | + </resource> |
| 54 | + </resources> |
| 55 | + <plugins> |
| 56 | + <plugin> |
| 57 | + <groupId>edu.berkeley.cs.jqf</groupId> |
| 58 | + <artifactId>jqf-maven-plugin</artifactId> |
| 59 | + <version>1.8</version> |
| 60 | + </plugin> |
| 61 | + <!-- Maven Compiler Plugin zum Festlegen der Java-Version --> |
| 62 | + <plugin> |
| 63 | + <groupId>org.apache.maven.plugins</groupId> |
| 64 | + <artifactId>maven-compiler-plugin</artifactId> |
| 65 | + <version>3.8.1</version> |
| 66 | + <configuration> |
| 67 | + <source>${maven.compiler.source}</source> |
| 68 | + <target>${maven.compiler.target}</target> |
| 69 | + </configuration> |
| 70 | + </plugin> |
| 71 | + |
| 72 | + <!-- Beispiel: Maven Surefire Plugin für das Ausführen von Tests --> |
| 73 | + <plugin> |
| 74 | + <groupId>org.apache.maven.plugins</groupId> |
| 75 | + <artifactId>maven-surefire-plugin</artifactId> |
| 76 | + <version>2.22.2</version> |
| 77 | + </plugin> |
| 78 | + </plugins> |
| 79 | + </build> |
| 80 | + |
| 81 | +</project> |
0 commit comments