2 Star 1 Fork 1

这不是一个昵称/zbus-framework

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 4.22 KB
一键复制 编辑 原始数据 按行查看 历史
这不是一个昵称 提交于 2022-12-02 09:44 +08:00 . 3.0.0
<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.zxj</groupId>
<artifactId>zbus-rpc-framework</artifactId>
<version>3.0.0</version>
<name>rpc-framework</name>
<description>rpc-framework</description>
<properties>
<finalName>rpc-framework</finalName>
<spring.baseline.version>6.0.2</spring.baseline.version>
<slf4j.version>2.0.4</slf4j.version>
<!-- unit test -->
<junit.version>4.12</junit.version>
<java.version>1.8</java.version>
</properties>
<distributionManagement>
<repository>
<id>framework</id>
<name>releases Repository</name>
<url>http://42.51.3.18:9090/repository/framework/</url>
<!-- <url>http://8.141.61.243:8081/repository/framework/</url> -->
</repository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>com.zxj</groupId>
<artifactId>zbus-rpc</artifactId>
<version>2.0.0</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.zxj</groupId>
<artifactId>service-framework</artifactId>
<version>2.0.0</version>
<exclusions>
<exclusion>
<groupId>com.zxj</groupId>
<artifactId>mybatis-framework</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot</artifactId>
<version>3.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.zxj</groupId>
<artifactId>frame-common</artifactId>
<version>2.0.0</version>
</dependency>
<!-- springframework start -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
<version>${spring.baseline.version}</version>
<scope>compile</scope>
</dependency>
<!-- springframework end -->
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.9.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib-nodep</artifactId>
<version>3.2.10</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.unitils</groupId>
<artifactId>unitils-spring</artifactId>
<version>3.4.6</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>${basedir}/src/main/resources</directory>
<includes>
<include>**/*.*</include>
</includes>
</resource>
<resource>
<directory>${basedir}/src/main/java</directory>
<includes>
<include>**/*.xml</include>
<include>**/*.properties</include>
<include>**/*.json</include>
<include>**/*.png</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<attach>true</attach>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/qwsaeda/zbus-framework.git
git@gitee.com:qwsaeda/zbus-framework.git
qwsaeda
zbus-framework
zbus-framework
master

搜索帮助