pom.xml 3.1 KB

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