123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <artifactId>qhiot-common</artifactId>
- <groupId>com.qhiot</groupId>
- <version>1.1.1</version>
- </parent>
- <artifactId>qhiot-common-stream-processor</artifactId>
- <dependencies>
- <dependency>
- <groupId>com.qhiot</groupId>
- <artifactId>qhiot-common-stream</artifactId>
- </dependency>
- <dependency>
- <groupId>com.sun</groupId>
- <artifactId>tools</artifactId>
- <version>1.8</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/src/main/resources/lib/tools.jar</systemPath>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.8</source>
- <target>1.8</target>
- <encoding>UTF-8</encoding>
- <proc>none</proc>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|