1 Star 2 Fork 1

devlive-community / incubator-infosphere

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 9.75 KB
一键复制 编辑 原始数据 按行查看 历史
qianmoQ 提交于 2024-01-28 19:19 . 修复未设置头像未展示名称
<?xml version="1.0"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.devlive.infosphere</groupId>
<artifactId>infosphere</artifactId>
<packaging>pom</packaging>
<version>2024.01.1-SNAPSHOT</version>
<modules>
<module>core/infosphere-common</module>
<module>core/infosphere-service</module>
<module>core/infosphere-server</module>
<module>core/infosphere-security</module>
</modules>
<name>incubator-infosphere</name>
<description>InfoSphere 是一款面向企业和个人的开源 Wiki 系统,旨在提供简单而强大的知识管理解决方案。</description>
<url>https://infosphere.devlive.org</url>
<scm>
<url>https://infosphere.devlive.org</url>
<connection>scm:git:git://github.com/devlive-community/incubator-infosphere.git</connection>
<developerConnection>scm:git:git@github.com:devlive-community/incubator-infosphere.git</developerConnection>
<tag>wiki</tag>
</scm>
<developers>
<developer>
<id>001</id>
<name>qianmoQ</name>
<email>shicheng@devlive.org</email>
<roles>
<role>Owner</role>
</roles>
<organization>Devlive Community</organization>
</developer>
</developers>
<organization>
<name>The Devlive Software Foundation</name>
<url>https://devlive.org</url>
</organization>
<properties>
<lombok.version>1.18.30</lombok.version>
<jackson.version>2.16.0</jackson.version>
<springboot.version>2.7.4</springboot.version>
<mysql.version>8.0.30</mysql.version>
<guava.version>32.1.3-jre</guava.version>
<jjwt.version>0.9.1</jjwt.version>
<jaxb.version>2.3.1</jaxb.version>
<environment.compile.java.version>1.8</environment.compile.java.version>
<plugin.maven.compiler.version>3.2</plugin.maven.compiler.version>
<plugin.maven.checkstyle.version>3.0.0</plugin.maven.checkstyle.version>
<plugin.maven.findbugs.version>3.0.5</plugin.maven.findbugs.version>
<plugin.maven.assembly.version>3.6.0</plugin.maven.assembly.version>
<plugin.maven.clean.version>3.0.0</plugin.maven.clean.version>
</properties>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
<version>${springboot.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>${springboot.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
<version>${springboot.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
<version>${springboot.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-cache</artifactId>
<version>${springboot.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<version>${springboot.version}</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${mysql.version}</version>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt</artifactId>
<version>${jjwt.version}</version>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>${jaxb.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${plugin.maven.compiler.version}</version>
<configuration>
<source>${environment.compile.java.version}</source>
<target>${environment.compile.java.version}</target>
<encoding>utf-8</encoding>
<compilerArgs>
<arg>-J-Dfile.encoding=UTF-8</arg>
</compilerArgs>
</configuration>
<executions>
<execution>
<id>default-compile</id>
<phase>none</phase>
</execution>
<execution>
<id>default-testCompile</id>
<phase>none</phase>
</execution>
<execution>
<id>java-compile</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>java-test-compile</id>
<phase>test-compile</phase>
<goals>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>${plugin.maven.checkstyle.version}</version>
<configuration>
<configLocation>configure/checks.xml</configLocation>
</configuration>
<executions>
<execution>
<id>validate</id>
<phase>validate</phase>
<configuration>
<encoding>UTF-8</encoding>
<consoleOutput>true</consoleOutput>
<failsOnError>true</failsOnError>
</configuration>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>${plugin.maven.findbugs.version}</version>
<configuration>
<effort>Low</effort>
<threshold>Medium</threshold>
<failOnError>true</failOnError>
<includeTests>true</includeTests>
<excludeFilterFile>configure/findbugs.xml</excludeFilterFile>
</configuration>
<executions>
<execution>
<id>run-findbugs</id>
<phase>package</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>${plugin.maven.clean.version}</version>
<configuration>
<excludeDefaultDirectories>false</excludeDefaultDirectories>
<filesets>
<fileset>
<directory>${project.basedir}/dist/</directory>
<followSymlinks>false</followSymlinks>
<includes>
<include>*.tar.gz</include>
<include>infosphere*/</include>
</includes>
</fileset>
</filesets>
</configuration>
</plugin>
</plugins>
</build>
</project>
1
https://gitee.com/devlive-community/incubator-infosphere.git
git@gitee.com:devlive-community/incubator-infosphere.git
devlive-community
incubator-infosphere
incubator-infosphere
dev

搜索帮助