pom.xml 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. <parent>
  5. <groupId>com.sf</groupId>
  6. <artifactId>demo-12306</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>my-ticket-service</artifactId>
  10. <packaging>jar</packaging>
  11. <name>my-ticket-service</name>
  12. <url>http://maven.apache.org</url>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <index12306.version>0.0.1-SNAPSHOT</index12306.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-web</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-test</artifactId>
  25. <scope>test</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.sf</groupId>
  29. <artifactId>my-spring-boot-starter</artifactId>
  30. <version>0.0.1-SNAPSHOT</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.projectlombok</groupId>
  34. <artifactId>lombok</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.opengoofy.index12306</groupId>
  38. <artifactId>index12306-database-spring-boot-starter</artifactId>
  39. <version>${index12306.version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.opengoofy.index12306</groupId>
  43. <artifactId>index12306-user-spring-boot-starter</artifactId>
  44. <version>${index12306.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.opengoofy.index12306</groupId>
  48. <artifactId>index12306-web-spring-boot-starter</artifactId>
  49. <version>${index12306.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.opengoofy.index12306</groupId>
  53. <artifactId>index12306-cache-spring-boot-starter</artifactId>
  54. <version>${index12306.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.opengoofy.index12306</groupId>
  58. <artifactId>index12306-convention-spring-boot-starter</artifactId>
  59. <version>${index12306.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.opengoofy.index12306</groupId>
  63. <artifactId>index12306-base-spring-boot-starter</artifactId>
  64. <version>${index12306.version}</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.opengoofy.index12306</groupId>
  68. <artifactId>index12306-log-spring-boot-starter</artifactId>
  69. <version>${index12306.version}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>cglib</groupId>
  73. <artifactId>cglib</artifactId>
  74. <version>3.3.0</version>
  75. </dependency>
  76. </dependencies>
  77. </project>