21 Star 106 Fork 56

geekhekr / iotos-soft-gateway

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 10.04 KB
一键复制 编辑 原始数据 按行查看 历史
sdvdxl 提交于 2023-11-21 17:01 . 3.5.29
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>
<modules>
<module>framework-core</module>
<module>framework-network-udp</module>
<module>framework-network-tcp</module>
<module>framework-network-common</module>
<module>example</module>
<module>framework-common-utils</module>
<module>framework-network-mqtt</module>
<module>framework-network-http</module>
</modules>
<groupId>me.hekr.iotos.softgateway</groupId>
<artifactId>iotos-soft-gateway</artifactId>
<version>3.5.29</version>
<name>${project.groupId}:${project.artifactId}</name>
<description>IoTOS 软网关</description>
<url>https://gitee.com/geekhekr/iotos-soft-gateway</url>
<properties>
<java.version>8</java.version>
<maven.compiler.target>8</maven.compiler.target>
<maven.compiler.source>8</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
<iotos.softgateway.version>${project.version}</iotos.softgateway.version>
<springboot.version>2.6.6</springboot.version>
</properties>
<licenses>
<license>
<name>木兰宽松许可证, 第2版</name>
<url>https://license.coscl.org.cn/MulanPSL2/</url>
</license>
</licenses>
<developers>
<developer>
<name>sdvdxl</name>
<email>sdvdxl@163.com</email>
<organization>hekr</organization>
<organizationUrl>https://hekr.me</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://https://gitee.com/geekhekr/iotos-soft-gateway.git</connection>
<developerConnection>scm:git:ssh://gitee.com:geekhekr/iotos-soft-gateway.git
</developerConnection>
<url>https://gitee.com/geekhekr/iotos-soft-gateway</url>
</scm>
<dependencyManagement>
<dependencies>
<!-- 子模块-->
<dependency>
<groupId>me.hekr.iotos.softgateway</groupId>
<artifactId>framework-network-common</artifactId>
<version>${iotos.softgateway.version}</version>
</dependency>
<dependency>
<groupId>me.hekr.iotos.softgateway</groupId>
<artifactId>framework-core</artifactId>
<version>${iotos.softgateway.version}</version>
</dependency>
<dependency>
<groupId>me.hekr.iotos.softgateway</groupId>
<artifactId>framework-common-utils</artifactId>
<version>${iotos.softgateway.version}</version>
</dependency>
<dependency>
<groupId>me.hekr.iotos.softgateway</groupId>
<artifactId>framework-network-udp</artifactId>
<version>${iotos.softgateway.version}</version>
</dependency>
<dependency>
<groupId>me.hekr.iotos.softgateway</groupId>
<artifactId>framework-network-tcp</artifactId>
<version>${iotos.softgateway.version}</version>
</dependency>
<dependency>
<groupId>me.hekr.iotos.softgateway</groupId>
<artifactId>framework-network-mqtt</artifactId>
<version>${iotos.softgateway.version}</version>
</dependency>
<dependency>
<groupId>me.hekr.iotos.softgateway</groupId>
<artifactId>framework-network-http</artifactId>
<version>${iotos.softgateway.version}</version>
</dependency>
<!-- 其他依赖管理-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>${springboot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp-bom -->
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp-bom</artifactId>
<version>4.10.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>4.1.101.Final</version>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-mqtt</artifactId>
<version>4.4.6</version>
</dependency>
<dependency>
<groupId>org.eclipse.paho</groupId>
<artifactId>org.eclipse.paho.client.mqttv3</artifactId>
<version>1.2.5</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.11</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.24</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.36</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.4.1</version>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>3.0</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<useStandardDocletOptions>false</useStandardDocletOptions>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>deploy</id>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
Java
1
https://gitee.com/geekhekr/iotos-soft-gateway.git
git@gitee.com:geekhekr/iotos-soft-gateway.git
geekhekr
iotos-soft-gateway
iotos-soft-gateway
master

搜索帮助