pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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-iita-core</artifactId>
  7. <groupId>cc.iotkit</groupId>
  8. <version>1.0.0</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.hibernate</groupId>
  32. <artifactId>hibernate-core</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. <dependency>
  43. <groupId>org.projectlombok</groupId>
  44. <artifactId>lombok</artifactId>
  45. <scope>provided</scope>
  46. </dependency>
  47. </dependencies>
  48. <build>
  49. <plugins>
  50. <plugin>
  51. <groupId>org.apache.maven.plugins</groupId>
  52. <artifactId>maven-compiler-plugin</artifactId>
  53. <configuration>
  54. <source>${java.version}</source>
  55. <target>${java.version}</target>
  56. </configuration>
  57. </plugin>
  58. <plugin>
  59. <groupId>org.codehaus.mojo</groupId>
  60. <artifactId>aspectj-maven-plugin</artifactId>
  61. <version>1.14.0</version>
  62. <configuration>
  63. <complianceLevel>${java.version}</complianceLevel>
  64. <source>${java.version}</source>
  65. <target>${java.version}</target>
  66. <showWeaveInfo>true</showWeaveInfo>
  67. <verbose>true</verbose>
  68. <Xlint>ignore</Xlint>
  69. <encoding>UTF-8</encoding>
  70. <skip>false</skip>
  71. <forceAjcCompile>true</forceAjcCompile>
  72. <weaveDependencies>
  73. <weaveDependency>
  74. <groupId>org.hibernate</groupId>
  75. <artifactId>hibernate-core</artifactId>
  76. </weaveDependency>
  77. </weaveDependencies>
  78. </configuration>
  79. <executions>
  80. <execution>
  81. <goals>
  82. <!-- use this goal to weave all your main classes -->
  83. <goal>compile</goal>
  84. <!-- use this goal to weave all your test classes -->
  85. <goal>test-compile</goal>
  86. </goals>
  87. </execution>
  88. </executions>
  89. </plugin>
  90. </plugins>
  91. </build>
  92. </project>