123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- ~ Copyright 2016-present the original author or authors.
- ~
- ~ Licensed under the Apache License, Version 2.0 (the "License");
- ~ you may not use this file except in compliance with the License.
- ~ You may obtain a copy of the License at
- ~
- ~ https://www.apache.org/licenses/LICENSE-2.0
- ~
- ~ Unless required by applicable law or agreed to in writing, software
- ~ distributed under the License is distributed on an "AS IS" BASIS,
- ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- ~ See the License for the specific language governing permissions and
- ~ limitations under the License.
- -->
- <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>
- <groupId>io.github.pnoker</groupId>
- <artifactId>iot-dc3</artifactId>
- <version>2023.4.5</version>
- </parent>
- <artifactId>dc3-driver</artifactId>
- <packaging>pom</packaging>
- <description>IOT DC3 平台 设备协议驱动集合。</description>
- <modules>
- <module>dc3-driver-virtual</module>
- <module>dc3-driver-listening-virtual</module>
- <module>dc3-driver-plcs7</module>
- <module>dc3-driver-opc-da</module>
- <module>dc3-driver-opc-ua</module>
- <module>dc3-driver-mqtt</module>
- <module>dc3-driver-modbus-tcp</module>
- <module>dc3-driver-edge-gateway</module>
- <module>dc3-driver-lwm2m</module>
- <module>dc3-driver-dtu-yeecom</module>
- <module>dc3-driver-weather-amap</module>
- </modules>
- <dependencies>
- <!-- DC3 Driver Sdk -->
- <dependency>
- <groupId>io.github.pnoker</groupId>
- <artifactId>dc3-driver-sdk</artifactId>
- </dependency>
- </dependencies>
- <repositories>
- <repository>
- <id>public</id>
- <name>Aliyun Public Repository</name>
- <url>https://maven.aliyun.com/repository/public</url>
- <releases>
- <enabled>true</enabled>
- </releases>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </repository>
- <repository>
- <id>spring</id>
- <name>Aliyun Spring Repository</name>
- <url>https://maven.aliyun.com/repository/spring</url>
- <releases>
- <enabled>true</enabled>
- </releases>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </repository>
- <repository>
- <id>maven</id>
- <name>Maven Central Repository</name>
- <url>https://repo.maven.apache.org/maven2</url>
- <releases>
- <enabled>true</enabled>
- </releases>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </repository>
- <repository>
- <id>sonatype</id>
- <name>Sonatype Repository</name>
- <url>https://s01.oss.sonatype.org/content/groups/public</url>
- <releases>
- <enabled>true</enabled>
- </releases>
- <snapshots>
- <enabled>true</enabled>
- <updatePolicy>always</updatePolicy>
- </snapshots>
- </repository>
- </repositories>
- <pluginRepositories>
- <pluginRepository>
- <id>public-plugin</id>
- <name>Aliyun Public Plugin Repository</name>
- <url>https://maven.aliyun.com/repository/public</url>
- <releases>
- <enabled>true</enabled>
- </releases>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </pluginRepository>
- <pluginRepository>
- <id>spring-plugin</id>
- <name>Aliyun Spring Plugin Repository</name>
- <url>https://maven.aliyun.com/repository/spring-plugin</url>
- <releases>
- <enabled>true</enabled>
- </releases>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </pluginRepository>
- </pluginRepositories>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </project>
|