pom.xml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. <groupId>com.moviesdb</groupId>
  7. <artifactId>MoviesDB_Client</artifactId>
  8. <version>0.00001-SNAPSHOT</version>
  9. <properties>
  10. <maven.compiler.source>16</maven.compiler.source>
  11. <maven.compiler.target>16</maven.compiler.target>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  14. </properties>
  15. <dependencies>
  16. <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
  17. <dependency>
  18. <groupId>mysql</groupId>
  19. <artifactId>mysql-connector-java</artifactId>
  20. <version>8.0.25</version>
  21. </dependency>
  22. <!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
  23. <dependency>
  24. <groupId>javax.servlet</groupId>
  25. <artifactId>javax.servlet-api</artifactId>
  26. <version>4.0.1</version>
  27. <scope>provided</scope>
  28. </dependency>
  29. <!-- https://mvnrepository.com/artifact/javax.annotation/javax.annotation-api -->
  30. <dependency>
  31. <groupId>javax.annotation</groupId>
  32. <artifactId>javax.annotation-api</artifactId>
  33. <version>1.3.2</version>
  34. </dependency>
  35. <!-- https://mvnrepository.com/artifact/org.openjfx/javafx-controls -->
  36. <dependency>
  37. <groupId>org.openjfx</groupId>
  38. <artifactId>javafx-controls</artifactId>
  39. <version>17-ea+11</version>
  40. </dependency>
  41. <!-- https://mvnrepository.com/artifact/org.openjfx/javafx-graphics -->
  42. <dependency>
  43. <groupId>org.openjfx</groupId>
  44. <artifactId>javafx-graphics</artifactId>
  45. <version>17-ea+11</version>
  46. </dependency>
  47. <!-- https://mvnrepository.com/artifact/org.openjfx/javafx-fxml -->
  48. <dependency>
  49. <groupId>org.openjfx</groupId>
  50. <artifactId>javafx-fxml</artifactId>
  51. <version>17-ea+11</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.openjfx</groupId>
  55. <artifactId>javafx-maven-plugin</artifactId>
  56. <version>0.0.6</version>
  57. </dependency>
  58. </dependencies>
  59. <build>
  60. <plugins>
  61. <plugin>
  62. <groupId>org.openjfx</groupId>
  63. <artifactId>javafx-maven-plugin</artifactId>
  64. <version>0.0.6</version>
  65. <configuration>
  66. <mainClass>com.moviesdb.Main</mainClass>
  67. <options>
  68. </options>
  69. </configuration>
  70. </plugin>
  71. </plugins>
  72. </build>
  73. </project>