1 Star 3 Fork 1

YanceKing/tio-http-server-spring-boot-starter

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 5.67 KB
一键复制 编辑 原始数据 按行查看 历史
YanceKing 提交于 2020-03-30 17:12 +08:00 . 新增配置项,解决JSON字符复制问题
<?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.github.yanceking</groupId>
<artifactId>tio-http-server-spring-boot-starter</artifactId>
<version>3.0</version>
<name>tio-http-server-spring-boot-starter</name>
<description>Tio Http 服务的 spring-boot-starter</description>
<url>https://github.com/yanceking/tio-http-server-spring-boot-starter</url>
<licenses>
<license>
<name>Server Side Public License</name>
<url>https://www.mongodb.com/licensing/server-side-public-license</url>
<distribution>repo</distribution>
<comments>A not business-friendly OSS license</comments>
</license>
</licenses>
<scm>
<url>https://github.com/yanceking/tio-http-server-spring-boot-starter</url>
<connection>https://github.com/yanceking/tio-http-server-spring-boot-starter.git</connection>
</scm>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.4.RELEASE</version>
<relativePath/>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<tio.version>3.6.0.v20200315-RELEASE</tio.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-actuator-autoconfigure</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.t-io</groupId>
<artifactId>tio-core</artifactId>
<version>${tio.version}</version>
</dependency>
<dependency>
<groupId>org.t-io</groupId>
<artifactId>tio-http-server</artifactId>
<version>${tio.version}</version>
</dependency>
<dependency>
<groupId>org.t-io</groupId>
<artifactId>tio-http-common</artifactId>
<version>${tio.version}</version>
</dependency>
<dependency>
<groupId>org.t-io</groupId>
<artifactId>tio-utils</artifactId>
<version>${tio.version}</version>
</dependency>
</dependencies>
<developers>
<developer>
<name>yance</name>
<id>yance</id>
<email>2444864349@qq.com</email>
<roles>
<role>Developer</role>
</roles>
<timezone>+8</timezone>
</developer>
</developers>
<profiles>
<profile>
<id>default</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</profile>
</profiles>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/YanceSpring/tio-http-server-spring-boot-starter.git
git@gitee.com:YanceSpring/tio-http-server-spring-boot-starter.git
YanceSpring
tio-http-server-spring-boot-starter
tio-http-server-spring-boot-starter
master

搜索帮助