1 Star 0 Fork 0

这不是一个昵称/service-framework

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 2.55 KB
一键复制 编辑 原始数据 按行查看 历史
这不是一个昵称 提交于 2022-12-02 09:42 +08:00 . 2.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>service-framework</artifactId>
<version>2.0.0</version>
<name>service-framework</name>
<description>service-framework</description>
<properties>
<finalName>service-framework</finalName>
<slf4j.version>2.0.4</slf4j.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>
</repository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>com.zxj</groupId>
<artifactId>frame-common</artifactId>
<version>2.0.0</version>
</dependency>
<dependency>
<groupId>com.zxj</groupId>
<artifactId>mybatis-framework</artifactId>
<version>2.0.0</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.zxj</groupId>
<artifactId>tools</artifactId>
<version>2.0.0</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</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 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/qwsaeda/service-framework.git
git@gitee.com:qwsaeda/service-framework.git
qwsaeda
service-framework
service-framework
master

搜索帮助