pom.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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-dao</artifactId>
  7. <groupId>cc.iotkit</groupId>
  8. <version>0.5.3</version>
  9. </parent>
  10. <version>0.5.3</version>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>iot-data-model</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>cc.iotkit</groupId>
  16. <artifactId>iot-common-core</artifactId>
  17. </dependency>
  18. <!--====================第三方库===================-->
  19. <dependency>
  20. <groupId>org.projectlombok</groupId>
  21. <artifactId>lombok</artifactId>
  22. <scope>provided</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.fasterxml.jackson.core</groupId>
  26. <artifactId>jackson-annotations</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.hibernate</groupId>
  30. <artifactId>hibernate-core</artifactId>
  31. </dependency>
  32. </dependencies>
  33. <build>
  34. <plugins>
  35. <plugin>
  36. <groupId>org.apache.maven.plugins</groupId>
  37. <artifactId>maven-compiler-plugin</artifactId>
  38. <version>3.8.1</version>
  39. <configuration>
  40. <source>${java.version}</source>
  41. <target>${java.version}</target>
  42. </configuration>
  43. </plugin>
  44. </plugins>
  45. </build>
  46. </project>