Advertisement
Guest User

Untitled

a guest
May 1st, 2019
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Smarty 1.51 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3.         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5.     <modelVersion>4.0.0</modelVersion>
  6.  
  7.     <groupId>me</groupId>
  8.     <artifactId>bacon</artifactId>
  9.     <version>1.0-SNAPSHOT</version>
  10.     <properties>
  11.         <maven.compiler.source>11</maven.compiler.source>
  12.         <maven.compiler.target>11</maven.compiler.target>
  13.     </properties>
  14.     <dependencies>
  15.         <dependency>
  16.             <groupId>org.jgrapht</groupId>
  17.             <artifactId>jgrapht-core</artifactId>
  18.             <version>1.3.0</version>
  19.         </dependency>
  20.         <dependency>
  21.             <groupId>com.squareup.okhttp3</groupId>
  22.             <artifactId>okhttp</artifactId>
  23.             <version>3.14.1</version>
  24.         </dependency>
  25.         <dependency>
  26.             <groupId>org.openjfx</groupId>
  27.             <artifactId>javafx-controls</artifactId>
  28.             <version>12.0.1</version>
  29.         </dependency>
  30.  
  31.     </dependencies>
  32.     <build>
  33.         <plugins>
  34.             <plugin>
  35.                 <groupId>org.openjfx</groupId>
  36.                 <artifactId>javafx-maven-plugin</artifactId>
  37.                 <version>0.0.2</version>
  38.                 <configuration>
  39.                     <mainClass>HelloFX</mainClass>
  40.                 </configuration>
  41.             </plugin>
  42.         </plugins>
  43.     </build>
  44. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement