pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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-service</artifactId>
  10. <packaging>jar</packaging>
  11. <name>my-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. </dependencies>
  72. </project>