pom.xml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>cn.hmsoft</groupId>
  5. <artifactId>pageoffice</artifactId>
  6. <version>1.0</version>
  7. <packaging>jar</packaging>
  8. <name>pageoffice</name>
  9. <url>http://maven.apache.org</url>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  13. <java.version>1.8</java.version>
  14. <springboot-javafx.version>2.1.6</springboot-javafx.version>
  15. </properties>
  16. <parent>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-parent</artifactId>
  19. <version>2.0.6.RELEASE</version>
  20. <relativePath/> <!-- lookup parent from repository -->
  21. </parent>
  22. <dependencies>
  23. <dependency>
  24. <groupId>de.roskenet</groupId>
  25. <artifactId>springboot-javafx-support</artifactId>
  26. <version>${springboot-javafx.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-tomcat</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-devtools</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-web</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.xerial</groupId>
  46. <artifactId>sqlite-jdbc</artifactId>
  47. <version>3.7.2</version>
  48. </dependency>
  49. <!-- https://mvnrepository.com/artifact/org.jsoup/jsoup -->
  50. <dependency>
  51. <groupId>org.jsoup</groupId>
  52. <artifactId>jsoup</artifactId>
  53. <version>1.11.3</version>
  54. </dependency>
  55. <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
  56. <dependency>
  57. <groupId>com.alibaba</groupId>
  58. <artifactId>fastjson</artifactId>
  59. <version>1.2.51</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>junit</groupId>
  63. <artifactId>junit</artifactId>
  64. <version>3.8.1</version>
  65. <scope>test</scope>
  66. </dependency>
  67. </dependencies>
  68. <build>
  69. <plugins>
  70. <plugin>
  71. <groupId>org.apache.maven.plugins</groupId>
  72. <artifactId>maven-compiler-plugin</artifactId>
  73. <configuration>
  74. <source>1.8</source>
  75. <target>1.8</target>
  76. </configuration>
  77. </plugin>
  78. </plugins>
  79. </build>
  80. </project>