fixes non-deterministic selection of enabled transitions
[petrinet.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" 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     <groupId>de.yasc.example</groupId>
6     <artifactId>petrinet</artifactId>
7     <version>1.0-SNAPSHOT</version>
8     <packaging>jar</packaging>
9     <properties>
10         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
11         <maven.compiler.source>11</maven.compiler.source>
12         <maven.compiler.target>11</maven.compiler.target>
13     </properties>
14     <build>
15         <plugins>
16             <plugin>
17                 <groupId>org.codehaus.mojo</groupId>
18                 <artifactId>exec-maven-plugin</artifactId>
19                 <version>1.6.0</version>
20                 <executions>
21                     <execution>
22                         <goals>
23                             <goal>java</goal>
24                         </goals>
25                     </execution>
26                 </executions>
27                 <configuration>
28                     <mainClass>de.yasc.example.petrinet.Main</mainClass>
29                 </configuration>
30             </plugin>
31         </plugins>
32     </build>
33 </project>