1 Star 0 Fork 136

After90丶小忧傷/kstry-core

forked from lykan/kstry-core 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 10.85 KB
一键复制 编辑 原始数据 按行查看 历史
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ /*
~ *
~ * * Copyright (c) 2020-2022, Lykan (jiashuomeng@gmail.com).
~ * * <p>
~ * * Licensed under the Apache License, Version 2.0 (the "License");
~ * * you may not use this file except in compliance with the License.
~ * * You may obtain a copy of the License at
~ * * <p>
~ * * http://www.apache.org/licenses/LICENSE-2.0
~ * * <p>
~ * * Unless required by applicable law or agreed to in writing, software
~ * * distributed under the License is distributed on an "AS IS" BASIS,
~ * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ * * See the License for the specific language governing permissions and
~ * * limitations under the License.
~ *
~ */
-->
<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>cn.kstry.framework</groupId>
<artifactId>kstry-core</artifactId>
<version>1.0.8</version>
<name>Kstry Core</name>
<description>Kstry Core</description>
<url>https://github.com/kstry/kstry-core</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<dependency.spring.version>4.1.9.RELEASE</dependency.spring.version>
<dependency.snakeyaml.version>1.30</dependency.snakeyaml.version>
<dependency.collections.version>3.2.2</dependency.collections.version>
<dependency.fastjson.version>1.2.75</dependency.fastjson.version>
<dependency.lang3.version>3.11</dependency.lang3.version>
<dependency.guava.version>30.0-jre</dependency.guava.version>
<dependency.beanutils.version>1.9.4</dependency.beanutils.version>
<dependency.slf4j.version>1.7.30</dependency.slf4j.version>
<dependency.logback-classic.version>1.2.3</dependency.logback-classic.version>
<dependency.jcl-over-slf4j.version>1.7.30</dependency.jcl-over-slf4j.version>
<dependency.validator.version>6.1.7.Final</dependency.validator.version>
<dependency.javax.el.version>3.0.0</dependency.javax.el.version>
<dependency.camunda.version>7.15.0</dependency.camunda.version>
<dependency.reactor.version>3.4.11</dependency.reactor.version>
<dependency.junit.version>4.13.2</dependency.junit.version>
<jakarta.el.version>3.0.3</jakarta.el.version>
</properties>
<dependencies>
<!-- core dependency -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${dependency.spring.version}</version>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>${dependency.snakeyaml.version}</version>
</dependency>
<dependency>
<groupId>org.camunda.bpm.model</groupId>
<artifactId>camunda-bpmn-model</artifactId>
<version>${dependency.camunda.version}</version>
</dependency>
<!-- util -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>${dependency.fastjson.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${dependency.lang3.version}</version>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>${dependency.collections.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${dependency.guava.version}</version>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>${dependency.beanutils.version}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<scope>provided</scope>
<version>${dependency.validator.version}</version>
</dependency>
<dependency>
<groupId>javax.el</groupId>
<artifactId>javax.el-api</artifactId>
<version>${dependency.javax.el.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>javax.el</artifactId>
<version>${dependency.javax.el.version}</version>
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-core</artifactId>
<version>${dependency.reactor.version}</version>
</dependency>
<!-- log -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${dependency.slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>${dependency.jcl-over-slf4j.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>provided</scope>
<version>${dependency.logback-classic.version}</version>
</dependency>
<!-- test -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${dependency.junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>${dependency.spring.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.22</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<configuration>
<charset>UTF-8</charset>
<docencoding>UTF-8</docencoding>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.4.2</version>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<licenses>
<license>
<name>GNU AFFERO GENERAL PUBLIC LICENSE</name>
<url>https://github.com/kstry/kstry-core/blob/master/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>http://kstry.cn</url>
<connection>scm:git:https://github.com/kstry/kstry-core.git</connection>
<developerConnection>scm:git:https://github.com/kstry/kstry-core.git</developerConnection>
</scm>
<developers>
<developer>
<name>jiashuomeng(lykan)</name>
<email>jiashuomeng@gmail.com</email>
<organization>http://kstry.cn</organization>
<organizationUrl>http://kstry.cn</organizationUrl>
</developer>
</developers>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/xiaolongzi/kstry-core.git
git@gitee.com:xiaolongzi/kstry-core.git
xiaolongzi
kstry-core
kstry-core
master

搜索帮助