pom.xml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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>hos-admin</artifactId>
  7. <version>1.3.0</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.3.0</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.apache.tomcat.embed</groupId>
  28. <artifactId>tomcat-embed-jasper</artifactId>
  29. <scope>compile</scope>
  30. </dependency>
  31. <!--jxl导出工具-->
  32. <dependency>
  33. <groupId>net.sourceforge.jexcelapi</groupId>
  34. <artifactId>jxl</artifactId>
  35. <version>2.6.10</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>javax.servlet</groupId>
  39. <artifactId>jstl</artifactId>
  40. <scope>compile</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.yihu.hos</groupId>
  44. <artifactId>hos-web-framework</artifactId>
  45. <version>1.3.0</version>
  46. <exclusions>
  47. <exclusion>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-data-jpa</artifactId>
  50. </exclusion>
  51. </exclusions>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework</groupId>
  55. <artifactId>spring-orm</artifactId>
  56. </dependency>
  57. <!--=============tilesJSP布局框架 start =============-->
  58. <dependency>
  59. <groupId>org.apache.tiles</groupId>
  60. <artifactId>tiles-extras</artifactId>
  61. <version>3.0.5</version>
  62. <exclusions>
  63. <exclusion>
  64. <groupId>com.google.guava</groupId>
  65. <artifactId>guava</artifactId>
  66. </exclusion>
  67. </exclusions>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.apache.tiles</groupId>
  71. <artifactId>tiles-jsp</artifactId>
  72. <version>${org.apache.tiles-version}</version>
  73. </dependency>
  74. <!--=============tiles end =============-->
  75. <!--========== hibernate start=======-->
  76. <!--========== hibernate end=========-->
  77. <dependency>
  78. <groupId>org.apache.xmlgraphics</groupId>
  79. <artifactId>fop</artifactId>
  80. <version>1.0</version>
  81. <scope>provided</scope>
  82. </dependency>
  83. <dependency>
  84. <groupId>xalan</groupId>
  85. <artifactId>xalan</artifactId>
  86. <version>2.7.0</version>
  87. <scope>provided</scope>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.openoffice</groupId>
  91. <artifactId>jurt</artifactId>
  92. <version>2.3.0</version>
  93. <scope>provided</scope>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.openoffice</groupId>
  97. <artifactId>juh</artifactId>
  98. <version>2.3.0</version>
  99. <scope>provided</scope>
  100. </dependency>
  101. <dependency>
  102. <groupId>net.sf.json-lib</groupId>
  103. <artifactId>json-lib</artifactId>
  104. <version>2.4</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.springframework</groupId>
  108. <artifactId>spring-jms</artifactId>
  109. <version>4.3.2.RELEASE</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.hibernate</groupId>
  113. <artifactId>hibernate-core</artifactId>
  114. <version>4.3.11.Final</version>
  115. </dependency>
  116. <!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver -->
  117. <dependency>
  118. <groupId>org.aspectj</groupId>
  119. <artifactId>aspectjweaver</artifactId>
  120. <version>1.8.9</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.apache.commons</groupId>
  124. <artifactId>commons-dbcp2</artifactId>
  125. <version>2.1.1</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.json</groupId>
  129. <artifactId>json</artifactId>
  130. <version>20140107</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.zbus</groupId>
  134. <artifactId>zbus</artifactId>
  135. <version>7.2.0</version>
  136. </dependency>
  137. </dependencies>
  138. <build>
  139. <plugins>
  140. <plugin>
  141. <groupId>org.springframework.boot</groupId>
  142. <artifactId>spring-boot-maven-plugin</artifactId>
  143. </plugin>
  144. </plugins>
  145. </build>
  146. </project>