1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?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">
- <parent>
- <artifactId>iot-module</artifactId>
- <groupId>cc.iotkit</groupId>
- <version>${revision}</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>iot-system</artifactId>
- <dependencies>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-common-core</artifactId>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-common-web</artifactId>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-common-satoken</artifactId>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-common-log</artifactId>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-common-excel</artifactId>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-common-tenant</artifactId>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-common-model</artifactId>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-data-serviceImpl-rdb</artifactId>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>${java.version}</source>
- <target>${java.version}</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|