182 Star 1.7K Fork 525

GVPdromara / cubic

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 7.02 KB
一键复制 编辑 原始数据 按行查看 历史
QIANGLU 提交于 2023-05-08 10:04 . 修改pom version
<?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>matrix.cubic</groupId>
<artifactId>cubic</artifactId>
<packaging>pom</packaging>
<version>1.4.5.release</version>
<modules>
<module>cubic-agent-core</module>
<module>cubic-proxy</module>
<module>cubic-proxy-websocket</module>
<module>cubic-proxy-common</module>
<module>cubic-serialization-protobuf</module>
<module>cubic-agent</module>
</modules>
<properties>
<java.version>1.8</java.version>
<grpc-protobuf.version>1.32.1</grpc-protobuf.version>
<protobuf-java.version>3.13.0</protobuf-java.version>
<os-maven-plugin.version>1.6.2</os-maven-plugin.version>
<protobuf-maven-plugin.version>0.6.1</protobuf-maven-plugin.version>
<com.google.protobuf.protoc.version>3.12.0</com.google.protobuf.protoc.version>
<protoc-gen-grpc-java.plugin.version>1.32.1</protoc-gen-grpc-java.plugin.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>matrix.cubic</groupId>
<artifactId>cubic-agent</artifactId>
<version>1.4.5.release</version>
</dependency>
<dependency>
<groupId>matrix.cubic</groupId>
<artifactId>cubic-agent-core</artifactId>
<version>1.4.5.release</version>
</dependency>
<dependency>
<groupId>matrix.cubic</groupId>
<artifactId>cubic-proxy</artifactId>
<version>1.4.5.release</version>
</dependency>
<dependency>
<groupId>matrix.cubic</groupId>
<artifactId>cubic-proxy-common</artifactId>
<version>1.4.5.release</version>
</dependency>
<dependency>
<groupId>matrix.cubic</groupId>
<artifactId>cubic-proxy-websocket</artifactId>
<version>1.4.5.release</version>
</dependency>
<dependency>
<groupId>matrix.cubic</groupId>
<artifactId>cubic-serialization-protobuf</artifactId>
<version>1.4.5.release</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>2.3.5.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>20.0</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.11</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.8</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>4.1.45.Final</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.6</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.83</version>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.4.200</version>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>1.10.22</version>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-agent</artifactId>
<version>1.10.22</version>
</dependency>
<!--page helper-->
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>1.2.13</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.3.3.RELEASE</version>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18.1</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<configuration>
<attach>true</attach>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>3.0.0</version>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.2.0</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
Java
1
https://gitee.com/dromara/cubic.git
git@gitee.com:dromara/cubic.git
dromara
cubic
cubic
master

搜索帮助