t-oa-config-0.0.1-SNAPSHOT.pom 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ The Hefei JingTong RDC(Research and Development Centre) Group.
  4. ~ __________________
  5. ~
  6. ~ Copyright 2015-2017
  7. ~ All Rights Reserved.
  8. ~
  9. ~ NOTICE: All information contained herein is, and remains
  10. ~ the property of JingTong Company and its suppliers,
  11. ~ if any.
  12. -->
  13. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  14. xmlns="http://maven.apache.org/POM/4.0.0"
  15. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  16. <modelVersion>4.0.0</modelVersion>
  17. <parent>
  18. <groupId>com.jtech</groupId>
  19. <artifactId>t-oa-parent</artifactId>
  20. <version>0.0.1-SNAPSHOT</version>
  21. <relativePath>../t-oa-parent/pom.xml</relativePath>
  22. </parent>
  23. <artifactId>t-oa-config</artifactId>
  24. <name>jt::oa::config</name>
  25. <packaging>jar</packaging>
  26. <dependencies>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-configuration-processor</artifactId>
  30. <optional>true</optional>
  31. </dependency>
  32. <dependency>
  33. <groupId>net.sf.ehcache</groupId>
  34. <artifactId>ehcache</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-cache</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-web</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-freemarker</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.baomidou</groupId>
  50. <artifactId>mybatisplus-spring-boot-starter</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-jdbc</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.alibaba</groupId>
  58. <artifactId>druid-spring-boot-starter</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.alibaba</groupId>
  62. <artifactId>fastjson</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.jtech</groupId>
  66. <artifactId>marble</artifactId>
  67. </dependency>
  68. </dependencies>
  69. </project>