pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?xml version="1.0"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.jeff.tianti.modules</groupId>
  7. <artifactId>tianti-modules</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <groupId>com.jeff.tianti.module.admin</groupId>
  11. <artifactId>tianti-module-admin</artifactId>
  12. <version>${tianti.version}</version>
  13. <packaging>war</packaging>
  14. <name>tianti-module-admin Maven Webapp</name>
  15. <url>http://maven.apache.org</url>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.jeff.tianti.common</groupId>
  19. <artifactId>tianti-common</artifactId>
  20. <version>${tianti.version}</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.jeff.tianti.org</groupId>
  24. <artifactId>tianti-org</artifactId>
  25. <version>${tianti.version}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.jeff.tianti.cms</groupId>
  29. <artifactId>tianti-cms</artifactId>
  30. <version>${tianti.version}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.json</groupId>
  34. <artifactId>json</artifactId>
  35. <version>20160810</version>
  36. </dependency>
  37. <!-- 该jar包引入自本地项目 -->
  38. <dependency>
  39. <groupId>org.springside</groupId>
  40. <artifactId>springside-core</artifactId>
  41. <version>4.2.2.GA</version>
  42. <scope>system</scope>
  43. <systemPath>${project.basedir}/src/main/webapp/WEB-INF/lib/springside-core-4.2.2.GA.jar</systemPath>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.terracotta</groupId>
  47. <artifactId>statistics</artifactId>
  48. <version>1.0.2</version>
  49. <scope>system</scope>
  50. <systemPath>${project.basedir}/src/main/webapp/WEB-INF/lib/statistics-1.0.2.jar</systemPath>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.jsptags</groupId>
  54. <artifactId>taglib</artifactId>
  55. <version>1.0.0</version>
  56. <scope>system</scope>
  57. <systemPath>${project.basedir}/src/main/webapp/WEB-INF/lib/pager-taglib.jar</systemPath>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.baidu</groupId>
  61. <artifactId>ueditor</artifactId>
  62. <version>1.1.1</version>
  63. <scope>system</scope>
  64. <systemPath>${project.basedir}/src/main/webapp/WEB-INF/lib/ueditor-1.1.1.jar</systemPath>
  65. </dependency>
  66. </dependencies>
  67. <build>
  68. <finalName>tianti-module-admin</finalName>
  69. </build>
  70. </project>