<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.test</groupId>
  <artifactId>01_SerialMap</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  
  <properties>
	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <maven.compiler.source>25</maven.compiler.source>
    <maven.compiler.target>25</maven.compiler.target>  
  </properties>
  
  <dependencies>  
  	<dependency>
	   <groupId>com.fazecast</groupId>
	   <artifactId>jSerialComm</artifactId>
	   <version>[2.0.0,3.0.0)</version>  		
  	</dependency>
  	
	<dependency>
	    <groupId>org.openjfx</groupId>
	    <artifactId>javafx-controls</artifactId>
	    <version>25</version>
	</dependency>
        
	<dependency>
	    <groupId>org.openjfx</groupId>
	    <artifactId>javafx-fxml</artifactId>
	    <version>25</version>
	</dependency>	
  </dependencies>
  
  <build>  
  	<plugins>  	
  		<plugin>  		
	        <groupId>org.openjfx</groupId>
	        <artifactId>javafx-maven-plugin</artifactId>
	        <version>0.0.8</version>
	        <configuration>
            	<mainClass>application.Main</mainClass>
            </configuration>  		
  		</plugin>  	
  	</plugins>  
  </build>
  
</project>