0 Star 32 Fork 14

Byakki/B-IM

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 6.86 KB
一键复制 编辑 原始数据 按行查看 历史
Byakki 提交于 2022-10-14 17:44 . Release 1.0.1
<?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>
<packaging>pom</packaging>
<groupId>com.github.byakkili</groupId>
<artifactId>bim-parent</artifactId>
<version>1.0.1</version>
<name>${project.artifactId}</name>
<description>IM Framework</description>
<url>https://github.com/byakkili/B-IM</url>
<modules>
<module>bim-core</module>
<module>bim-cluster-redisson</module>
<module>bim-protocol-json</module>
<module>bim-protocol-protobuf</module>
<module>bim-spring-boot-starter</module>
</modules>
<properties>
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>utf-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<junit.version>4.13</junit.version>
<lombok.version>1.18.12</lombok.version>
<netty.version>4.1.65.Final</netty.version>
<hutool.version>5.7.2</hutool.version>
<spring.version>5.2.15.RELEASE</spring.version>
<logger.version>1.7.30</logger.version>
<jackson.version>2.11.4</jackson.version>
<redisson.version>3.15.6</redisson.version>
<protobuf.version>3.17.3</protobuf.version>
<websocket.version>1.5.1</websocket.version>
<springboot.version>2.3.12.RELEASE</springboot.version>
</properties>
<dependencies>
<!-- 全局单元测试 (Test) -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<!-- Logback (Test) -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.3</version>
<scope>test</scope>
</dependency>
<!-- WebSocket (test) -->
<dependency>
<groupId>org.java-websocket</groupId>
<artifactId>Java-WebSocket</artifactId>
<version>1.5.1</version>
<scope>test</scope>
</dependency>
<!-- Lombok -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<optional>true</optional>
</dependency>
</dependencies>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<developers>
<developer>
<name>Guannian Li</name>
<email>[email protected]</email>
</developer>
</developers>
<scm>
<url>[email protected]:byakkili/B-IM.git</url>
<connection>scm:git:[email protected]:byakkili/B-IM.git</connection>
<developerConnection>scm:git:[email protected]:byakkili/B-IM.git</developerConnection>
</scm>
<issueManagement>
<system>Github</system>
<url>https://github.com/byakkili/B-IM/issues</url>
</issueManagement>
<build>
<plugins>
<!-- Compiler -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<!-- Javadoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Source -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Gpg Signature -->
<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>
<!-- Sonatype -->
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>oss</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>oss</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>oss</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</profile>
</profiles>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/byakkili/B-IM.git
[email protected]:byakkili/B-IM.git
byakkili
B-IM
B-IM
master

搜索帮助