pom.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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-base</artifactId>
  12. <properties>
  13. </properties>
  14. <dependencies>
  15. <!-- response -->
  16. <dependency>
  17. <groupId>com.lc.ibps.cloud</groupId>
  18. <artifactId>ibps-basic-response</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.lc.ibps.cloud</groupId>
  22. <artifactId>ibps-oauth-core</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.slf4j</groupId>
  26. <artifactId>slf4j-api</artifactId>
  27. <scope>provided</scope>
  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>