pom.xml 3.0 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>xy-authorize</artifactId>
  7. <groupId>com.xy</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>authorize-api-service</artifactId>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <maven.compiler.source>1.8</maven.compiler.source>
  15. <maven.compiler.target>1.8</maven.compiler.target>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.xy</groupId>
  20. <artifactId>authorize-api</artifactId>
  21. <version>1.0</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.xy</groupId>
  25. <artifactId>authorize-sdk</artifactId>
  26. <version>1.0</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.xy</groupId>
  30. <artifactId>mqtt-api</artifactId>
  31. <version>1.0</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.xy</groupId>
  35. <artifactId>xy-redis</artifactId>
  36. <version>1.0</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.xy</groupId>
  40. <artifactId>xy-satoken</artifactId>
  41. <version>1.0</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.xy</groupId>
  45. <artifactId>xy-mp</artifactId>
  46. <version>1.0</version>
  47. </dependency>
  48. <!-- web页面 -->
  49. <dependency>
  50. <groupId>com.xy</groupId>
  51. <artifactId>xy-server-web</artifactId>
  52. <version>1.0</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.xy</groupId>
  56. <artifactId>sys-sdk</artifactId>
  57. <version>1.0</version>
  58. </dependency>
  59. <!--验证码模块 -->
  60. <dependency>
  61. <groupId>com.xy</groupId>
  62. <artifactId>xy-captcha</artifactId>
  63. <version>1.0</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.xy</groupId>
  67. <artifactId>xy-weixin-miniapp</artifactId>
  68. <version>1.0</version>
  69. </dependency>
  70. </dependencies>
  71. <build>
  72. <resources>
  73. <resource>
  74. <directory>src/main/java</directory>
  75. <includes>
  76. <include>**/*.xml</include>
  77. </includes>
  78. <filtering>true</filtering>
  79. </resource>
  80. <resource>
  81. <directory>src/main/resources</directory>
  82. <includes>
  83. <include>**/*.*</include>
  84. </includes>
  85. <filtering>true</filtering>
  86. </resource>
  87. </resources>
  88. </build>
  89. </project>