116 lines
3.7 KiB
XML
116 lines
3.7 KiB
XML
<?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>org.jetlinks</groupId>
|
|
<artifactId>jetlinks-official-protocol</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<name>JetLinks</name>
|
|
<url>http://jetlinks.org</url>
|
|
<inceptionYear>2019</inceptionYear>
|
|
<description>JetLinks 物联网平台</description>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>The Apache License, Version 2.0</name>
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
</license>
|
|
</licenses>
|
|
|
|
<developers>
|
|
<developer>
|
|
<name>zhouhao</name>
|
|
<email>i@hsweb.me</email>
|
|
<roles>
|
|
<role>Owner</role>
|
|
</roles>
|
|
<timezone>+8</timezone>
|
|
<url>https://github.com/zhou-hao</url>
|
|
</developer>
|
|
</developers>
|
|
|
|
<scm>
|
|
<connection>scm:git:https://github.com/jetlinks/jetlinks-official-protocol.git</connection>
|
|
<developerConnection>scm:git:https://github.com/jetlinks/jetlinks-official-protocol.git</developerConnection>
|
|
<url>https://github.com/jetlinks/jetlinks-official-protocol</url>
|
|
<tag>${project.version}</tag>
|
|
</scm>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.build.locales>zh_CN</project.build.locales>
|
|
<java.version>1.8</java.version>
|
|
<project.build.jdk>${java.version}</project.build.jdk>
|
|
<spring.boot.version>2.2.8.RELEASE</spring.boot.version>
|
|
<hsweb.framework.version>4.0.3</hsweb.framework.version>
|
|
<hsweb.expands.version>3.0.2</hsweb.expands.version>
|
|
<reactor.version>Dysprosium-RELEASE</reactor.version>
|
|
</properties>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.1</version>
|
|
<configuration>
|
|
<source>8</source>
|
|
<target>8</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.jetlinks</groupId>
|
|
<artifactId>jetlinks-supports</artifactId>
|
|
<version>1.1.4-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.eclipse.californium</groupId>
|
|
<artifactId>californium-core</artifactId>
|
|
<version>2.2.3</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>1.18.12</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.13</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>hsweb-nexus</id>
|
|
<name>Nexus Release Repository</name>
|
|
<url>http://nexus.hsweb.me/content/groups/public/</url>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
<updatePolicy>always</updatePolicy>
|
|
</snapshots>
|
|
</repository>
|
|
<repository>
|
|
<id>aliyun-nexus</id>
|
|
<name>aliyun</name>
|
|
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
|
|
</project> |