pom.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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-client-local</artifactId>
  12. <properties>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.lc.ibps.cloud</groupId>
  17. <artifactId>ibps-oauth-client2</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.lc.ibps.provider.base</groupId>
  21. <artifactId>ibps-provider-platform-api</artifactId>
  22. <exclusions>
  23. <exclusion>
  24. <groupId>com.lc.ibps.components</groupId>
  25. <artifactId>ibps-component-im</artifactId>
  26. </exclusion>
  27. </exclusions>
  28. </dependency>
  29. <dependency>
  30. <groupId>javax.servlet</groupId>
  31. <artifactId>servlet-api</artifactId>
  32. <scope>provided</scope>
  33. </dependency>
  34. </dependencies>
  35. <build>
  36. <plugins>
  37. <plugin>
  38. <artifactId>maven-compiler-plugin</artifactId>
  39. <version>3.3</version>
  40. <configuration>
  41. <source>1.8</source>
  42. <target>1.8</target>
  43. <encoding>UTF-8</encoding>
  44. </configuration>
  45. </plugin>
  46. </plugins>
  47. </build>
  48. </project>