Advertisement
Guest User

Untitled

a guest
Apr 10th, 2021
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.52 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>org.example</groupId>
  8. <artifactId>AniSnatcherClient</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10.  
  11. <properties>
  12. <maven.compiler.source>11</maven.compiler.source>
  13. <maven.compiler.target>11</maven.compiler.target>
  14. </properties>
  15. <build>
  16. <plugins>
  17. <plugin>
  18. <groupId>org.openjfx</groupId>
  19. <artifactId>javafx-maven-plugin</artifactId>
  20. <version>0.0.5</version>
  21. <configuration>
  22. <mainClass>App</mainClass>
  23. </configuration>
  24. </plugin>
  25. </plugins>
  26. </build>
  27. <dependencies>
  28. <dependency>
  29. <groupId>org.openjfx</groupId>
  30. <artifactId>javafx-controls</artifactId>
  31. <version>11.0.2</version>
  32. <scope>system</scope>
  33. <systemPath>${project.basedir}/lib/javafx.controls.jar</systemPath>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.openjfx</groupId>
  37. <artifactId>javafx-fxml</artifactId>
  38. <version>11.0.2</version>
  39. <scope>system</scope>
  40. <systemPath>${project.basedir}/lib/javafx.fxml.jar</systemPath>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.openjfx</groupId>
  44. <artifactId>javafx-base</artifactId>
  45. <version>11.0.2</version>
  46. <scope>system</scope>
  47. <systemPath>${project.basedir}/lib/javafx.base.jar</systemPath>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.openjfx</groupId>
  51. <artifactId>javafx-media</artifactId>
  52. <version>11.0.2</version>
  53. <scope>system</scope>
  54. <systemPath>${project.basedir}/lib/javafx.media.jar</systemPath>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.openjfx</groupId>
  58. <artifactId>javafx-web</artifactId>
  59. <version>11.0.2</version>
  60. <scope>system</scope>
  61. <systemPath>${project.basedir}/lib/javafx.web.jar</systemPath>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.googlecode.json-simple</groupId>
  65. <artifactId>json-simple</artifactId>
  66. <version>1.1.1</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.openjfx</groupId>
  70. <artifactId>javafx-graphics</artifactId>
  71. <version>11.0.2</version>
  72. <scope>system</scope>
  73. <systemPath>${project.basedir}/lib/javafx.graphics.jar</systemPath>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.openjfx</groupId>
  77. <artifactId>javafx-swing</artifactId>
  78. <version>11.0.2</version>
  79. <scope>system</scope>
  80. <systemPath>${project.basedir}/lib/javafx.swing.jar</systemPath>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.google.code.gson</groupId>
  84. <artifactId>gson</artifactId>
  85. <version>2.8.6</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.jsoup</groupId>
  89. <artifactId>jsoup</artifactId>
  90. <version>1.10.2</version>
  91. </dependency>
  92. </dependencies>
  93. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement