.flattened-pom.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>cc.iotkit</groupId>
  7. <artifactId>iot-common</artifactId>
  8. <version>0.4.5-SNAPSHOT</version>
  9. </parent>
  10. <groupId>cc.iotkit</groupId>
  11. <artifactId>iot-common-oss</artifactId>
  12. <version>0.4.5-SNAPSHOT</version>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.amazonaws</groupId>
  16. <artifactId>aws-java-sdk-s3</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>cc.iotkit</groupId>
  20. <artifactId>iot-common-redis</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>cc.iotkit</groupId>
  24. <artifactId>iot-common-core</artifactId>
  25. </dependency>
  26. </dependencies>
  27. <build>
  28. <plugins>
  29. <plugin>
  30. <artifactId>maven-compiler-plugin</artifactId>
  31. <configuration>
  32. <source>${java.version}</source>
  33. <target>${java.version}</target>
  34. </configuration>
  35. </plugin>
  36. </plugins>
  37. </build>
  38. </project>