1 Star 5 Fork 0

EasyJ开源社区 / easyj-samples

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 6.66 KB
一键复制 编辑 原始数据 按行查看 历史
王良 提交于 2022-07-24 16:39 . upgrade: easyj-build v1.0.47 -> v1.1.0
<?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>
<parent>
<groupId>icu.easyj</groupId>
<artifactId>easyj-build</artifactId>
<version>1.1.0</version>
<relativePath/>
</parent>
<groupId>icu.easyj.sample</groupId>
<artifactId>easyj-samples-parent</artifactId>
<version>${revision}</version>
<packaging>pom</packaging>
<name>${project.groupId} :: ${project.artifactId}</name>
<description>EasyJ功能的示例项目。</description>
<url>https://easyj.icu</url>
<inceptionYear>2021</inceptionYear>
<organization>
<name>EasyJ开源社区</name>
<url>https://gitee.com/easyj-projects</url>
</organization>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>wangliang181230</id>
<name>王良</name>
<email>841369634@qq.com</email>
<url>https://gitee.com/wangliang181230</url>
<organization>浙江蕙康科技有限公司</organization>
<organizationUrl>https://www.jyhk.com</organizationUrl>
<roles>
<role>Java架构师</role>
</roles>
</developer>
</developers>
<modules>
<module>spring-boot-samples-parent</module>
</modules>
<scm>
<connection>scm:git@gitee.com:easyj-projects/easyj-samples.git</connection>
<developerConnection>scm:git@gitee.com:easyj-projects/easyj-samples.git</developerConnection>
<url>https://gitee.com/easyj-projects/easyj-samples</url>
</scm>
<issueManagement>
<system>gitee</system>
<url>https://gitee.com/easyj-projects/easyj-samples/issues</url>
</issueManagement>
<properties>
<!-- 当前样例项目的版本 -->
<revision>0.7.5-SNAPSHOT</revision>
<!-- 编译配置 -->
<java.version>1.8</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- EasyJ -->
<easyj.version>${project.version}</easyj.version>
<!-- Spring相关依赖 -->
<spring-boot.version>2.7.1</spring-boot.version>
<!-- Swagger -->
<swagger.version>2.9.2</swagger.version>
</properties>
<dependencyManagement>
<dependencies>
<!-- 依赖定义:Spring Boot Dependencies -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring-boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- 依赖定义:EasyJ Spring Boot Dependencies -->
<dependency>
<groupId>icu.easyj.boot</groupId>
<artifactId>easyj-spring-boot-dependencies</artifactId>
<version>${easyj.version}</version>
<type>pom</type>
<scope>import</scope>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- 依赖定义:Easyj Spring Boot BOM -->
<dependency>
<groupId>icu.easyj.boot</groupId>
<artifactId>easyj-spring-boot-bom</artifactId>
<version>${easyj.version}</version>
<type>pom</type>
<scope>import</scope>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- 依赖定义:Swagger -->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>${swagger.version}</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>${swagger.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- 引用依赖:Provided dependencies。(注:仅参与编译,无需被继承的依赖。) -->
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<scope>provided</scope>
</dependency>
<!-- 引用依赖:Swagger(注:样例项目,使用API窗体化工具,方便测试) -->
<!--<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
</dependency>-->
<!-- 引用依赖:Tests -->
<dependency>
<groupId>icu.easyj</groupId>
<artifactId>easyj-test</artifactId>
<scope>test</scope>
</dependency>
<!-- javax -->
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>1.3.2</version>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip><!-- 样例项目,不用deploy -->
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<skip>true</skip><!-- 样例项目,不使用checkstyle -->
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<skip>true</skip><!-- 样例项目,不使用javadoc -->
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<repositories>
<repository>
<id>central-nexus</id>
<url>https://repo1.maven.org/maven2/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>oss-nexus-snapshots</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
<repository>
<id>oss-nexus-releases</id>
<url>https://s01.oss.sonatype.org/content/repositories/releases/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/easyj-projects/easyj-samples.git
git@gitee.com:easyj-projects/easyj-samples.git
easyj-projects
easyj-samples
easyj-samples
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891