pom.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <artifactId>qhiot-common</artifactId>
  8. <groupId>com.qhiot</groupId>
  9. <version>1.1.1</version>
  10. </parent>
  11. <artifactId>qhiot-common-stream-processor</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.qhiot</groupId>
  15. <artifactId>qhiot-common-stream</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.sun</groupId>
  19. <artifactId>tools</artifactId>
  20. <version>1.8</version>
  21. <scope>system</scope>
  22. <systemPath>${project.basedir}/src/main/resources/lib/tools.jar</systemPath>
  23. </dependency>
  24. </dependencies>
  25. <build>
  26. <plugins>
  27. <plugin>
  28. <groupId>org.apache.maven.plugins</groupId>
  29. <artifactId>maven-compiler-plugin</artifactId>
  30. <configuration>
  31. <source>1.8</source>
  32. <target>1.8</target>
  33. <encoding>UTF-8</encoding>
  34. <proc>none</proc>
  35. </configuration>
  36. </plugin>
  37. </plugins>
  38. </build>
  39. </project>