pom.xml 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. <!--oauth2-->
  28. <dependency>
  29. <groupId>org.springframework.cloud</groupId>
  30. <artifactId>spring-cloud-starter-oauth2</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.security.oauth</groupId>
  34. <artifactId>spring-security-oauth2</artifactId>
  35. </dependency>
  36. <!--spring-boot-starter-aop-->
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-aop</artifactId>
  40. </dependency>
  41. <!--zoniot公共包-->
  42. <dependency>
  43. <groupId>com.zcxk</groupId>
  44. <artifactId>zoniot-rmcp-api</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.zcxk</groupId>
  48. <artifactId>zoniot-rmcp-core</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.zcxk</groupId>
  52. <artifactId>zoniot-core-common</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.zcxk</groupId>
  56. <artifactId>zoniot-core-mysql</artifactId>
  57. </dependency>
  58. </dependencies>
  59. <build>
  60. <plugins>
  61. <plugin>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-maven-plugin</artifactId>
  64. <version>1.5.2.RELEASE</version>
  65. <executions>
  66. <execution>
  67. <goals>
  68. <goal>repackage</goal>
  69. </goals>
  70. </execution>
  71. </executions>
  72. <configuration>
  73. <skip>true</skip>
  74. </configuration>
  75. </plugin>
  76. <plugin>
  77. <groupId>org.apache.maven.plugins</groupId>
  78. <artifactId>maven-compiler-plugin</artifactId>
  79. <version>3.5.1</version>
  80. <configuration>
  81. <source>${jdk.version}</source>
  82. <target>${jdk.version}</target>
  83. <showWarnings>true</showWarnings>
  84. </configuration>
  85. </plugin>
  86. <plugin>
  87. <groupId>org.apache.maven.plugins</groupId>
  88. <artifactId>maven-jar-plugin</artifactId>
  89. <version>2.4</version>
  90. <configuration></configuration>
  91. </plugin>
  92. </plugins>
  93. </build>
  94. </project>