pom.xml 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>zoniot-rmcp</artifactId>
  7. <groupId>com.zcxk</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>zoniot-rmcp-web</artifactId>
  12. <version>1.0-SNAPSHOT</version>
  13. <properties>
  14. <jdk.version>1.8</jdk.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.alibaba.cloud</groupId>
  19. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  20. <exclusions>
  21. <exclusion>
  22. <artifactId>guava</artifactId>
  23. <groupId>com.google.guava</groupId>
  24. </exclusion>
  25. </exclusions>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.security.oauth</groupId>
  29. <artifactId>spring-security-oauth2</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.zcxk</groupId>
  33. <artifactId>zoniot-rmcp-api</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.zcxk</groupId>
  37. <artifactId>zoniot-rmcp-core</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.zcxk</groupId>
  41. <artifactId>zoniot-core-common</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.zcxk</groupId>
  45. <artifactId>zoniot-core-mysql</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-aop</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.cloud</groupId>
  53. <artifactId>spring-cloud-starter-oauth2</artifactId>
  54. </dependency>
  55. </dependencies>
  56. <build>
  57. <plugins>
  58. <plugin>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-maven-plugin</artifactId>
  61. <version>1.5.2.RELEASE</version>
  62. <executions>
  63. <execution>
  64. <goals>
  65. <goal>repackage</goal>
  66. </goals>
  67. </execution>
  68. </executions>
  69. <configuration>
  70. <skip>true</skip>
  71. </configuration>
  72. </plugin>
  73. <plugin>
  74. <groupId>org.apache.maven.plugins</groupId>
  75. <artifactId>maven-compiler-plugin</artifactId>
  76. <version>3.5.1</version>
  77. <configuration>
  78. <source>${jdk.version}</source>
  79. <target>${jdk.version}</target>
  80. <showWarnings>true</showWarnings>
  81. </configuration>
  82. </plugin>
  83. <plugin>
  84. <groupId>org.apache.maven.plugins</groupId>
  85. <artifactId>maven-jar-plugin</artifactId>
  86. <version>2.4</version>
  87. <configuration></configuration>
  88. </plugin>
  89. </plugins>
  90. </build>
  91. </project>