pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. <parent>
  5. <groupId>com.lc.ibps.excessive</groupId>
  6. <artifactId>ibps-excessive-root</artifactId>
  7. <version>3.3.7-LC.RELEASE</version>
  8. <relativePath>../../pom.xml</relativePath>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ibps-excessive-platform</artifactId>
  12. <properties>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.lc.ibps.provider.base</groupId>
  17. <artifactId>ibps-provider-bpmn-api</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.lc.ibps.provider.base</groupId>
  21. <artifactId>ibps-provider-form-api</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.lc.ibps.cloud.base</groupId>
  25. <artifactId>ibps-comp-message-server-api</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.lc.ibps.provider.base</groupId>
  29. <artifactId>ibps-provider-platform-api</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>aopalliance</groupId>
  33. <artifactId>aopalliance</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.aspectj</groupId>
  37. <artifactId>aspectjrt</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.aspectj</groupId>
  41. <artifactId>aspectjweaver</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>cglib</groupId>
  45. <artifactId>cglib</artifactId>
  46. </dependency>
  47. <!--
  48. -->
  49. <dependency>
  50. <groupId>cglib</groupId>
  51. <artifactId>cglib-nodep</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>javax.servlet.jsp</groupId>
  55. <artifactId>jsp-api</artifactId>
  56. <scope>provided</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>javax.servlet</groupId>
  60. <artifactId>servlet-api</artifactId>
  61. <scope>provided</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>junit</groupId>
  65. <artifactId>junit</artifactId>
  66. <scope>test</scope>
  67. </dependency>
  68. </dependencies>
  69. <build>
  70. <plugins>
  71. <plugin>
  72. <artifactId>maven-compiler-plugin</artifactId>
  73. <version>3.3</version>
  74. <configuration>
  75. <source>1.8</source>
  76. <target>1.8</target>
  77. <encoding>UTF-8</encoding>
  78. </configuration>
  79. </plugin>
  80. </plugins>
  81. </build>
  82. </project>