Facebook
From Cute Wolf, 4 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 215
  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>pl.piotr.skoczylas</groupId>
  8.     <artifactId>graph-searching</artifactId>
  9.     <version>1.0-SNAPSHOT</version>
  10.  
  11.     <dependencies>
  12.         <dependency>
  13.             <groupId>org.openjfx</groupId>
  14.             <artifactId>javafx-controls</artifactId>
  15.             <version>11.0.2</version>
  16.         </dependency>
  17.         <dependency>
  18.             <groupId>org.openjfx</groupId>
  19.             <artifactId>javafx-fxml</artifactId>
  20.             <version>13-ea+7</version>
  21.         </dependency>
  22.         <dependency>
  23.             <groupId>org.spockframework</groupId>
  24.             <artifactId>spock-core</artifactId>
  25.             <version>1.3-groovy-2.5</version>
  26.             <scope>test</scope>
  27.         </dependency>
  28.         <dependency>
  29.             <groupId>org.codehaus.groovy</groupId>
  30.             <artifactId>groovy-test</artifactId>
  31.             <version>2.5.6</version>
  32.             <scope>test</scope>
  33.         </dependency>
  34.         <dependency>
  35.             <groupId>org.projectlombok</groupId>
  36.             <artifactId>lombok</artifactId>
  37.             <version>1.18.6</version>
  38.             <scope>provided</scope>
  39.         </dependency>
  40.     </dependencies>
  41.     <build>
  42.         <plugins>
  43.             <plugin>
  44.                 <groupId>org.apache.maven.plugins</groupId>
  45.                 <artifactId>maven-compiler-plugin</artifactId>
  46.                 <version>3.8.1</version>
  47.                 <configuration>
  48.                     <release>11</release>
  49.                 </configuration>
  50.             </plugin>
  51.             <plugin>
  52.                 <groupId>org.apache.maven.plugins</groupId>
  53.                 <artifactId>maven-assembly-plugin</artifactId>
  54.                 <version>3.1.1</version>
  55.                 <configuration>
  56.                     <descriptorRefs>
  57.                         <descriptorRef>jar-with-dependencies</descriptorRef>
  58.                     </descriptorRefs>
  59.                     <archive>
  60.                         <manifest>
  61.                             <mainClass>pl.piotr.skoczylas.graphsearching.Main</mainClass>
  62.                         </manifest>
  63.                     </archive>
  64.                 </configuration>
  65.                 <executions>
  66.                     <execution>
  67.                         <id>make-assembly</id>
  68.                         <phase>package</phase>
  69.                         <goals>
  70.                             <goal>single</goal>
  71.                         </goals>
  72.                     </execution>
  73.                 </executions>
  74.             </plugin>
  75.         </plugins>
  76.     </build>
  77.  
  78. </project>