Advertisement
Guest User

Untitled

a guest
May 28th, 2020
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.43 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>de.abc.xyz</groupId>
  8.     <artifactId>bachelor_maven</artifactId>
  9.     <packaging>pom</packaging>
  10.     <version>1.0-SNAPSHOT</version>
  11.  
  12.     <properties>
  13.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14.         <java.version>14</java.version>
  15.         <javafx.version>14.0.1</javafx.version>
  16.         <jmetro.version>11.6.10</jmetro.version>
  17.         <maven.compiler.source>14</maven.compiler.source>
  18.         <maven.compiler.target>14</maven.compiler.target>
  19.     </properties>
  20.  
  21.     <modules>
  22.         <module>ZKP_Inspector</module>
  23.     </modules>
  24.  
  25.     <dependencies>
  26.         <dependency>
  27.             <groupId>org.openjfx</groupId>
  28.             <artifactId>javafx-controls</artifactId>
  29.             <version>${javafx.version}</version>
  30.         </dependency>
  31.  
  32.         <dependency>
  33.             <groupId>org.openjfx</groupId>
  34.             <artifactId>javafx-fxml</artifactId>
  35.             <version>${javafx.version}</version>
  36.         </dependency>
  37.  
  38.         <dependency>
  39.             <groupId>org.jfxtras</groupId>
  40.             <artifactId>jmetro</artifactId>
  41.             <version>${jmetro.version}</version>
  42.             <exclusions>
  43.                 <!-- The following exclusions are necessary to override all hard coded dependencies -->
  44.                 <!-- on outdated or not needed external libaries -->
  45.                 <exclusion>
  46.                     <groupId>org.controlsfx</groupId>
  47.                     <artifactId>controlsfx</artifactId>
  48.                 </exclusion>
  49.                 <exclusion>
  50.                     <groupId>org.openjfx</groupId>
  51.                     <artifactId>javafx-base</artifactId>
  52.                 </exclusion>
  53.                 <exclusion>
  54.                     <groupId>org.openjfx</groupId>
  55.                     <artifactId>javafx-graphics</artifactId>
  56.                 </exclusion>
  57.                 <exclusion>
  58.                     <groupId>org.openjfx</groupId>
  59.                     <artifactId>javafx-controls</artifactId>
  60.                 </exclusion>
  61.                 <exclusion>
  62.                     <groupId>org.openjfx</groupId>
  63.                     <artifactId>javafx-fxml</artifactId>
  64.                 </exclusion>
  65.                 <exclusion>
  66.                     <groupId>org.openjfx</groupId>
  67.                     <artifactId>javafx-media</artifactId>
  68.                 </exclusion>
  69.                 <exclusion>
  70.                     <groupId>org.openjfx</groupId>
  71.                     <artifactId>javafx-swing</artifactId>
  72.                 </exclusion>
  73.                 <exclusion>
  74.                     <groupId>org.openjfx</groupId>
  75.                     <artifactId>javafx-web</artifactId>
  76.                 </exclusion>
  77.             </exclusions>
  78.         </dependency>
  79.     </dependencies>
  80.  
  81.     <build>
  82.         <plugins>
  83.             <plugin>
  84.                 <groupId>org.apache.maven.plugins</groupId>
  85.                 <artifactId>maven-compiler-plugin</artifactId>
  86.                 <version>3.8.1</version>
  87.                 <configuration>
  88.                     <release>14</release>
  89.                 </configuration>
  90.             </plugin>
  91.         </plugins>
  92.     </build>
  93.  
  94. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement