pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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.cloud</groupId>
  6. <artifactId>ibps-oauth-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-oauth-client2</artifactId>
  12. <properties>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.lc.ibps.persist</groupId>
  17. <artifactId>ibps-persist-common</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.lc.ibps.base</groupId>
  21. <artifactId>ibps-base-cloud</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.lc.ibps.base</groupId>
  25. <artifactId>ibps-base-disruptor</artifactId>
  26. <exclusions>
  27. <exclusion>
  28. <groupId>net.oschina.j2cache</groupId>
  29. <artifactId>j2cache-mybatis</artifactId>
  30. </exclusion>
  31. </exclusions>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.lc.ibps.cloud</groupId>
  35. <artifactId>ibps-oauth-base</artifactId>
  36. <exclusions>
  37. <exclusion>
  38. <groupId>com.lc.ibps.components</groupId>
  39. <artifactId>ibps-component-im</artifactId>
  40. </exclusion>
  41. <exclusion>
  42. <groupId>net.oschina.j2cache</groupId>
  43. <artifactId>j2cache-mybatis</artifactId>
  44. </exclusion>
  45. </exclusions>
  46. </dependency>
  47. <!-- response -->
  48. <dependency>
  49. <groupId>com.lc.ibps.cloud</groupId>
  50. <artifactId>ibps-basic-response</artifactId>
  51. <exclusions>
  52. <exclusion>
  53. <groupId>com.lc.ibps.base</groupId>
  54. <artifactId>ibps-base-db</artifactId>
  55. </exclusion>
  56. <exclusion>
  57. <groupId>com.lc.ibps.base</groupId>
  58. <artifactId>ibps-base-framework</artifactId>
  59. </exclusion>
  60. <exclusion>
  61. <groupId>com.lc.ibps.base</groupId>
  62. <artifactId>ibps-base-framework-ddd</artifactId>
  63. </exclusion>
  64. <exclusion>
  65. <groupId>com.lc.ibps.base</groupId>
  66. <artifactId>ibps-base-datasource</artifactId>
  67. </exclusion>
  68. </exclusions>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.lc.ibps.base</groupId>
  72. <artifactId>ibps-base-saas</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>javax.servlet</groupId>
  76. <artifactId>servlet-api</artifactId>
  77. <scope>provided</scope>
  78. </dependency>
  79. </dependencies>
  80. <build>
  81. <plugins>
  82. <plugin>
  83. <artifactId>maven-compiler-plugin</artifactId>
  84. <version>3.3</version>
  85. <configuration>
  86. <source>1.8</source>
  87. <target>1.8</target>
  88. <encoding>UTF-8</encoding>
  89. </configuration>
  90. </plugin>
  91. </plugins>
  92. </build>
  93. </project>