pom.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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.parent</groupId>
  6. <artifactId>ibps-starter-parent</artifactId>
  7. <version>3.3.7-LC.RELEASE</version>
  8. <relativePath />
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>com.lc.ibps.cloud</groupId>
  12. <artifactId>ibps-oauth-root</artifactId>
  13. <packaging>pom</packaging>
  14. <modules>
  15. <module>modules/oauth-core</module>
  16. <module>modules/oauth-base</module>
  17. <module>modules/oauth-feignclient</module>
  18. <module>modules/oauth-server2-default</module>
  19. <module>modules/oauth-server2</module>
  20. <module>modules/oauth-client2</module>
  21. <module>modules/oauth-client-httpclient</module>
  22. <module>modules/oauth-client-local</module>
  23. <module>modules/oauth-client-feignclient</module>
  24. <module>modules/oauth-client-filterbase</module>
  25. <module>modules/oauth-client-filter</module>
  26. <module>modules/oauth-client-filterclient</module>
  27. </modules>
  28. <properties>
  29. </properties>
  30. <dependencyManagement>
  31. <dependencies>
  32. </dependencies>
  33. </dependencyManagement>
  34. <dependencies>
  35. </dependencies>
  36. <build>
  37. <plugins>
  38. <plugin>
  39. <artifactId>maven-clean-plugin</artifactId>
  40. <version>3.0.0</version>
  41. <configuration>
  42. <source>1.8</source>
  43. <target>1.8</target>
  44. <encoding>UTF-8</encoding>
  45. </configuration>
  46. </plugin>
  47. <plugin>
  48. <artifactId>maven-compiler-plugin</artifactId>
  49. <version>3.3</version>
  50. <configuration>
  51. <source>1.8</source>
  52. <target>1.8</target>
  53. <fork>true</fork>
  54. <encoding>UTF-8</encoding>
  55. </configuration>
  56. </plugin>
  57. <plugin>
  58. <artifactId>maven-deploy-plugin</artifactId>
  59. <version>2.8</version>
  60. <configuration>
  61. <source>1.8</source>
  62. <target>1.8</target>
  63. <fork>true</fork>
  64. <encoding>UTF-8</encoding>
  65. </configuration>
  66. </plugin>
  67. </plugins>
  68. </build>
  69. </project>