pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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>iot-common</artifactId>
  7. <groupId>cc.iotkit</groupId>
  8. <version>0.5.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>iot-common-tenant</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>cc.iotkit</groupId>
  15. <artifactId>iot-common-core</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>cc.iotkit</groupId>
  19. <artifactId>iot-common-redis</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>cc.iotkit</groupId>
  23. <artifactId>iot-common-satoken</artifactId>
  24. </dependency>
  25. <!--====================第三方库===================-->
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-aop</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-data-jpa</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.aspectj</groupId>
  36. <artifactId>aspectjrt</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.aspectj</groupId>
  40. <artifactId>aspectjweaver</artifactId>
  41. </dependency>
  42. </dependencies>
  43. <build>
  44. <plugins>
  45. <plugin>
  46. <groupId>org.apache.maven.plugins</groupId>
  47. <artifactId>maven-compiler-plugin</artifactId>
  48. <configuration>
  49. <source>${java.version}</source>
  50. <target>${java.version}</target>
  51. </configuration>
  52. </plugin>
  53. <plugin>
  54. <groupId>org.codehaus.mojo</groupId>
  55. <artifactId>aspectj-maven-plugin</artifactId>
  56. <version>1.14.0</version>
  57. <configuration>
  58. <complianceLevel>${java.version}</complianceLevel>
  59. <source>${java.version}</source>
  60. <target>${java.version}</target>
  61. <showWeaveInfo>true</showWeaveInfo>
  62. <verbose>true</verbose>
  63. <Xlint>ignore</Xlint>
  64. <encoding>UTF-8</encoding>
  65. <skip>false</skip>
  66. <forceAjcCompile>true</forceAjcCompile>
  67. <weaveDependencies>
  68. <weaveDependency>
  69. <groupId>org.hibernate</groupId>
  70. <artifactId>hibernate-core</artifactId>
  71. </weaveDependency>
  72. </weaveDependencies>
  73. </configuration>
  74. <executions>
  75. <execution>
  76. <goals>
  77. <!-- use this goal to weave all your main classes -->
  78. <goal>compile</goal>
  79. <!-- use this goal to weave all your test classes -->
  80. <goal>test-compile</goal>
  81. </goals>
  82. </execution>
  83. </executions>
  84. </plugin>
  85. </plugins>
  86. </build>
  87. </project>