Advertisement
Guest User

Untitled

a guest
Aug 16th, 2023
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.10 KB | None | 0 0
  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.  
  6.  
  7. <groupId>com.alextim.povadka</groupId>
  8. <artifactId>povadka</artifactId>
  9. <version>1.0.0-SNAPSHOT</version>
  10. <packaging>jar</packaging>
  11.  
  12. <name>Povadka</name>
  13.  
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16.  
  17. <main.class>com.alextim.Main</main.class>
  18.  
  19. <maven.compiler.source>17</maven.compiler.source>
  20. <maven.compiler.target>17</maven.compiler.target>
  21. <javafx.version>11</javafx.version>
  22.  
  23. <maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
  24. <javafx.maven.plugin.version>0.0.8</javafx.maven.plugin.version>
  25. <gluonfx.maven.plugin.version>1.0.19</gluonfx.maven.plugin.version>
  26. <gluonfx.target>host</gluonfx.target>
  27.  
  28. <lombok.version>1.18.20</lombok.version>
  29. <logback.version>1.3.0-alpha14</logback.version>
  30. </properties>
  31.  
  32. <dependencies>
  33. <dependency>
  34. <groupId>com.alextim</groupId>
  35. <artifactId>alfaBetaDetectorServer</artifactId>
  36. <version>1.0-SNAPSHOT</version>
  37. </dependency>
  38.  
  39. <dependency>
  40. <groupId>org.xerial</groupId>
  41. <artifactId>sqlite-jdbc</artifactId>
  42. <version>3.42.0.0</version>
  43. </dependency>
  44.  
  45.  
  46. <!-- <dependency>-->
  47. <!-- <groupId>org.postgresql</groupId>-->
  48. <!-- <artifactId>postgresql</artifactId>-->
  49. <!-- <version>42.6.0</version>-->
  50. <!-- </dependency>-->
  51.  
  52. <dependency>
  53. <groupId>org.projectlombok</groupId>
  54. <artifactId>lombok</artifactId>
  55. <version>${lombok.version}</version>
  56. </dependency>
  57.  
  58. <dependency>
  59. <groupId>ch.qos.logback</groupId>
  60. <artifactId>logback-classic</artifactId>
  61. <version>${logback.version}</version>
  62. </dependency>
  63.  
  64. <dependency>
  65. <groupId>org.openjfx</groupId>
  66. <artifactId>javafx-controls</artifactId>
  67. <version>${javafx.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.openjfx</groupId>
  71. <artifactId>javafx-fxml</artifactId>
  72. <version>${javafx.version}</version>
  73. </dependency>
  74.  
  75. <dependency>
  76. <groupId>de.gsi.chart</groupId>
  77. <artifactId>chartfx-chart</artifactId>
  78. <version>11.2.7</version>
  79. <exclusions>
  80. <exclusion>
  81. <groupId>org.slf4j</groupId>
  82. <artifactId>slf4j-api</artifactId>
  83. </exclusion>
  84. <exclusion>
  85. <groupId>org.openjfx</groupId>
  86. <artifactId>javafx-controls</artifactId>
  87. </exclusion>
  88. </exclusions>
  89. </dependency>
  90.  
  91. </dependencies>
  92.  
  93. <build>
  94. <plugins>
  95. <plugin>
  96. <groupId>org.apache.maven.plugins</groupId>
  97. <artifactId>maven-compiler-plugin</artifactId>
  98. <version>${maven-compiler-plugin.version}</version>
  99. <configuration>
  100. <annotationProcessorPaths>
  101. <annotationProcessorPath>
  102. <groupId>org.projectlombok</groupId>
  103. <artifactId>lombok</artifactId>
  104. <version>${lombok.version}</version>
  105. </annotationProcessorPath>
  106. </annotationProcessorPaths>
  107. </configuration>
  108. </plugin>
  109.  
  110. <plugin>
  111. <groupId>org.openjfx</groupId>
  112. <artifactId>javafx-maven-plugin</artifactId>
  113. <version>${javafx.maven.plugin.version}</version>
  114. <configuration>
  115. <mainClass>${main.class}</mainClass>
  116.  
  117. </configuration>
  118. </plugin>
  119.  
  120. <plugin>
  121. <groupId>com.gluonhq</groupId>
  122. <artifactId>gluonfx-maven-plugin</artifactId>
  123. <version>${gluonfx.maven.plugin.version}</version>
  124. <configuration>
  125. <target>${gluonfx.target}</target>
  126. <mainClass>${main.class}</mainClass>
  127. <enableSWRendering>true</enableSWRendering>
  128.  
  129.  
  130. <nativeImageArgs>
  131. <arg>-Dorg.sqlite.lib.exportPath=/home/alex/IdeaProjects/</arg>
  132. </nativeImageArgs>
  133. <linkerArgs>
  134. <arg>
  135. /usr/lib/jvm/graalvm-svm-java17-linux-gluon-22.1.0.1-Final/lib/static/linux-amd64/glibc/libjaas.a
  136. </arg>
  137. </linkerArgs>
  138. </configuration>
  139.  
  140. </plugin>
  141. </plugins>
  142. </build>
  143. </project>
  144.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement