10 Star 46 Fork 21

明天的地平线 / Juggle

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 9.36 KB
一键复制 编辑 原始数据 按行查看 历史
明天的地平线 提交于 2024-05-20 00:25 . fix:移动star的项目位置
<?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>net.somta</groupId>
<artifactId>Juggle</artifactId>
<version>${revision}</version>
<packaging>pom</packaging>
<modules>
<module>core</module>
<module>common</module>
<module>console</module>
<module>starter</module>
<module>example</module>
</modules>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<revision>1.2.0</revision>
<somta-dependencies.varsion>1.4.3</somta-dependencies.varsion>
<somta-core.version>1.4.3</somta-core.version>
<somta-common.version>1.4.3</somta-common.version>
<mybatis-starter.version>2.1.4</mybatis-starter.version>
<pagehelper.version>5.3.1</pagehelper.version>
<h2.version>2.2.220</h2.version>
<aviator.version>5.3.3</aviator.version>
<groovy.version>4.0.20</groovy.version>
<freemarker.version>2.3.32</freemarker.version>
<dashscope.version>2.12.0</dashscope.version>
<httpclient.version>5.2.1</httpclient.version>
<jjwt.version>0.11.5</jjwt.version>
<caffeine.version>2.9.3</caffeine.version>
<junit-jupiter.version>5.8.2</junit-jupiter.version>
<maven-compiler-plugin.version>3.5.1</maven-compiler-plugin.version>
<mapstruct.version>1.5.5.Final</mapstruct.version>
<flatten-maven-plugin.version>1.2.7</flatten-maven-plugin.version>
<jacoco-maven-plugin.version>0.8.10</jacoco-maven-plugin.version>
<maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>net.somta</groupId>
<artifactId>somta-dependencies</artifactId>
<version>${somta-dependencies.varsion}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>net.somta</groupId>
<artifactId>juggle-core</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>net.somta</groupId>
<artifactId>juggle-common</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>net.somta</groupId>
<artifactId>somta-common</artifactId>
<version>${somta-common.version}</version>
</dependency>
<dependency>
<groupId>net.somta</groupId>
<artifactId>somta-core</artifactId>
<version>${somta-core.version}</version>
</dependency>
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>${mybatis-starter.version}</version>
</dependency>
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper</artifactId>
<version>${pagehelper.version}</version>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>${h2.version}</version>
</dependency>
<dependency>
<groupId>com.googlecode.aviator</groupId>
<artifactId>aviator</artifactId>
<version>${aviator.version}</version>
</dependency>
<dependency>
<groupId>org.apache.groovy</groupId>
<artifactId>groovy</artifactId>
<version>${groovy.version}</version>
</dependency>
<dependency>
<groupId>org.apache.groovy</groupId>
<artifactId>groovy-json</artifactId>
<version>${groovy.version}</version>
</dependency>
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>${freemarker.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dashscope-sdk-java</artifactId>
<version>${dashscope.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
<version>${httpclient.version}</version>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-impl</artifactId>
<version>${jjwt.version}</version>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-jackson</artifactId>
<version>${jjwt.version}</version>
</dependency>
<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
<version>${caffeine.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit-jupiter.version}</version>
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct</artifactId>
<version>${mapstruct.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<annotationProcessorPaths>
<path>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>${mapstruct.version}</version>
</path>
<path>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<version>2.7.14</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>${flatten-maven-plugin.version}</version>
<configuration>
<updatePomFile>true</updatePomFile>
<flattenMode>resolveCiFriendliesOnly</flattenMode>
</configuration>
<executions>
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
<execution>
<id>flatten-clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco-maven-plugin.version}</version>
<executions>
<execution>
<id>default-prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
<configuration>
<excludes>
<exclude>**/interfaces/param/**</exclude>
<exclude>**/interfaces/dto/**</exclude>
<exclude>**/domain/**/vo/**</exclude>
<exclude>**/infrastructure/po/**</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
</plugin>
</plugins>
</build>
</project>
Java
1
https://gitee.com/Somta/Juggle.git
git@gitee.com:Somta/Juggle.git
Somta
Juggle
Juggle
develop

搜索帮助