pom.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. <parent>
  7. <groupId>space.anyi</groupId>
  8. <artifactId>CampusUsedBookTradingSystem</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>client</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.openjfx</groupId>
  15. <artifactId>javafx-controls</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.openjfx</groupId>
  19. <artifactId>javafx-fxml</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.fasterxml.jackson.core</groupId>
  23. <artifactId>jackson-databind</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.fasterxml.jackson.datatype</groupId>
  27. <artifactId>jackson-datatype-jsr310</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.projectlombok</groupId>
  31. <artifactId>lombok</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.kordamp.bootstrapfx</groupId>
  35. <artifactId>bootstrapfx-core</artifactId>
  36. <version>0.4.0</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>space.anyi</groupId>
  40. <artifactId>common</artifactId>
  41. </dependency>
  42. </dependencies>
  43. <build>
  44. <plugins>
  45. <plugin>
  46. <groupId>org.openjfx</groupId>
  47. <artifactId>javafx-maven-plugin</artifactId>
  48. <version>0.0.8</version>
  49. <configuration>
  50. <mainClass>space.anyi.client.App</mainClass>
  51. </configuration>
  52. </plugin>
  53. </plugins>
  54. </build>
  55. </project>