|
@@ -0,0 +1,49 @@
|
|
|
+<?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>
|
|
|
+
|
|
|
+ <groupId>com.xy</groupId>
|
|
|
+ <artifactId>xy-device</artifactId>
|
|
|
+ <version>1.0</version>
|
|
|
+ <modules>
|
|
|
+ <module>device-api</module>
|
|
|
+ <module>device-api-cloud</module>
|
|
|
+ <module>device-api-service</module>
|
|
|
+ <module>device-start</module>
|
|
|
+ </modules>
|
|
|
+ <packaging>pom</packaging>
|
|
|
+
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.xy</groupId>
|
|
|
+ <artifactId>nacos</artifactId>
|
|
|
+ <version>1.0</version>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+
|
|
|
+ <dependencyManagement>
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.xy</groupId>
|
|
|
+ <artifactId>xy-cloud</artifactId>
|
|
|
+ <version>1.0</version>
|
|
|
+ <type>pom</type>
|
|
|
+ <scope>import</scope>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+ </dependencyManagement>
|
|
|
+
|
|
|
+ <!-- 下载 -->
|
|
|
+ <repositories>
|
|
|
+ <repository>
|
|
|
+ <id>release</id>
|
|
|
+ <name>release</name>
|
|
|
+ <url>http://119.96.213.127:9010/maven/libs-release-local</url>
|
|
|
+ <snapshots>
|
|
|
+ <enabled>true</enabled>
|
|
|
+ </snapshots>
|
|
|
+ </repository>
|
|
|
+ </repositories>
|
|
|
+</project>
|