pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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-core</artifactId>
  12. <properties>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>io.swagger</groupId>
  17. <artifactId>swagger-annotations</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.hibernate</groupId>
  21. <artifactId>hibernate-validator</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.lc.ibps.base</groupId>
  25. <artifactId>ibps-base-model</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.lc.ibps.model</groupId>
  29. <artifactId>ibps-org-model</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot</artifactId>
  34. <exclusions>
  35. <exclusion>
  36. <groupId>*</groupId>
  37. <artifactId>*</artifactId>
  38. </exclusion>
  39. </exclusions>
  40. <scope>compile</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.lc.ibps.cloud</groupId>
  44. <artifactId>ibps-basic-response</artifactId>
  45. </dependency>
  46. </dependencies>
  47. <build>
  48. <plugins>
  49. <plugin>
  50. <artifactId>maven-compiler-plugin</artifactId>
  51. <version>3.3</version>
  52. <configuration>
  53. <source>1.8</source>
  54. <target>1.8</target>
  55. <encoding>UTF-8</encoding>
  56. </configuration>
  57. </plugin>
  58. </plugins>
  59. </build>
  60. </project>