pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.yihu.hos</groupId>
  6. <artifactId>esb</artifactId>
  7. <version>1.1.1-SNAPSHOT</version>
  8. <packaging>war</packaging>
  9. <name>esb</name>
  10. <description>ESB管理平台</description>
  11. <parent>
  12. <groupId>com.yihu.hos</groupId>
  13. <artifactId>hos-web-framework-dependencies</artifactId>
  14. <version>1.1.1-SNAPSHOT</version>
  15. <relativePath>/hos-web-framework-dependencies</relativePath> <!-- lookup parent from repository -->
  16. </parent>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <java.version>1.8</java.version>
  21. <org.apache.tiles-version>3.0.5</org.apache.tiles-version>
  22. <!--<main.basedir>${basedir}/../..</main.basedir>-->
  23. <!--<m2eclipse.wtp.contextRoot>/</m2eclipse.wtp.contextRoot>-->
  24. </properties>
  25. <dependencies>
  26. <!--<dependency>-->
  27. <!--<groupId>org.springframework.boot</groupId>-->
  28. <!--<artifactId>spring-boot-starter-tomcat</artifactId>-->
  29. <!--<scope>provided</scope>-->
  30. <!--</dependency>-->
  31. <dependency>
  32. <groupId>org.apache.tomcat.embed</groupId>
  33. <artifactId>tomcat-embed-jasper</artifactId>
  34. <scope>compile</scope>
  35. </dependency>
  36. <!--jxl导出工具-->
  37. <dependency>
  38. <groupId>net.sourceforge.jexcelapi</groupId>
  39. <artifactId>jxl</artifactId>
  40. <version>2.6.10</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>javax.servlet</groupId>
  44. <artifactId>jstl</artifactId>
  45. <scope>compile</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.yihu.hos</groupId>
  49. <artifactId>hos-web-framework</artifactId>
  50. <version>1.1.1-SNAPSHOT</version>
  51. <exclusions>
  52. <exclusion>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-data-jpa</artifactId>
  55. </exclusion>
  56. </exclusions>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework</groupId>
  60. <artifactId>spring-orm</artifactId>
  61. </dependency>
  62. <!--=============tilesJSP布局框架 start =============-->
  63. <dependency>
  64. <groupId>org.apache.tiles</groupId>
  65. <artifactId>tiles-extras</artifactId>
  66. <version>3.0.5</version>
  67. <exclusions>
  68. <exclusion>
  69. <groupId>com.google.guava</groupId>
  70. <artifactId>guava</artifactId>
  71. </exclusion>
  72. </exclusions>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.tiles</groupId>
  76. <artifactId>tiles-jsp</artifactId>
  77. <version>${org.apache.tiles-version}</version>
  78. </dependency>
  79. <!--=============tiles end =============-->
  80. <!--========== hibernate start=======-->
  81. <!--========== hibernate end=========-->
  82. <dependency>
  83. <groupId>org.apache.xmlgraphics</groupId>
  84. <artifactId>fop</artifactId>
  85. <version>1.0</version>
  86. <scope>provided</scope>
  87. </dependency>
  88. <dependency>
  89. <groupId>xalan</groupId>
  90. <artifactId>xalan</artifactId>
  91. <version>2.7.0</version>
  92. <scope>provided</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.openoffice</groupId>
  96. <artifactId>jurt</artifactId>
  97. <version>2.3.0</version>
  98. <scope>provided</scope>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.openoffice</groupId>
  102. <artifactId>juh</artifactId>
  103. <version>2.3.0</version>
  104. <scope>provided</scope>
  105. </dependency>
  106. </dependencies>
  107. <build>
  108. <plugins>
  109. <plugin>
  110. <groupId>org.springframework.boot</groupId>
  111. <artifactId>spring-boot-maven-plugin</artifactId>
  112. </plugin>
  113. </plugins>
  114. </build>
  115. </project>