pom.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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.xtframe.jdc</groupId>
  6. <artifactId>project</artifactId>
  7. <version>1.0.11-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>web</artifactId>
  10. <name>新通框架web端集成</name>
  11. <description>提供web应用集成的统一配置</description>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.xtframe.jdc</groupId>
  15. <artifactId>security</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.springframework</groupId>
  19. <artifactId>spring-web</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework</groupId>
  23. <artifactId>spring-context-support</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework</groupId>
  27. <artifactId>spring-webmvc</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>javax.servlet</groupId>
  31. <artifactId>servlet-api</artifactId>
  32. <scope>provided</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>javax.servlet.jsp</groupId>
  36. <artifactId>jsp-api</artifactId>
  37. <scope>provided</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>javax.servlet</groupId>
  41. <artifactId>jstl</artifactId>
  42. <scope>provided</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>taglibs</groupId>
  46. <artifactId>standard</artifactId>
  47. <scope>provided</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>javax.servlet</groupId>
  51. <artifactId>servlet-api</artifactId>
  52. <scope>provided</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.slf4j</groupId>
  56. <artifactId>slf4j-api</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.slf4j</groupId>
  60. <artifactId>slf4j-log4j12</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>net.sf.json-lib</groupId>
  64. <artifactId>json-lib</artifactId>
  65. <version>2.4</version>
  66. <classifier>jdk15</classifier>
  67. </dependency>
  68. </dependencies>
  69. <build>
  70. <plugins>
  71. <plugin>
  72. <artifactId>maven-jar-plugin</artifactId>
  73. <configuration>
  74. <archive>
  75. <addMavenDescriptor>false</addMavenDescriptor>
  76. <manifest>
  77. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  78. <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
  79. </manifest>
  80. </archive>
  81. </configuration>
  82. </plugin>
  83. </plugins>
  84. </build>
  85. </project>