1 Star 0 Fork 52

mycoin/clivia

forked from palading/clivia 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 11.79 KB
一键复制 编辑 原始数据 按行查看 历史
风_起 提交于 2021-12-12 09:46 . first commit
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You 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
http://www.apache.org/licenses/LICENSE-2.0
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>org.palading</groupId>
<artifactId>clivia</artifactId>
<packaging>pom</packaging>
<version>0.0.1</version>
<description>org.palading.clivia.config.api gateway with high performance, high elasticity, responsiveness and high expansion</description>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>palading_cr</id>
<name>palading</name>
<email>palading_cr@163.com</email>
<roles>
<role>author</role>
</roles>
</developer>
</developers>
<modules>
<module>clivia-admin-core</module>
<module>clivia-api</module>
<module>clivia-client-core</module>
<module>clivia-cache</module>
<module>clivia-dynamic</module>
<module>clivia-event</module>
<module>clivia-example</module>
<module>clivia-filter</module>
<module>clivia-invoker</module>
<module>clivia-assembly-base</module>
<module>clivia-loadbalance</module>
<module>clivia-support</module>
<module>clivia-spi</module>
</modules>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.6.RELEASE</version>
</parent>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<version.commons-pool2>2.7.0</version.commons-pool2>
<version.commons-codec>1.6</version.commons-codec>
<version.fastjson>1.2.38</version.fastjson>
<version.reflections>0.9.10</version.reflections>
<version.guava>23.0</version.guava>
<version.commons-text>1.6</version.commons-text>
<version.jackson-databind>2.9.4</version.jackson-databind>
<version.commons-lang3>3.10</version.commons-lang3>
<version.disruptor>3.3.4</version.disruptor>
<version.httpclient>4.3.1</version.httpclient>
<version.mybatis-generator-core>1.4.0</version.mybatis-generator-core>
<version.mybatis-generator-maven-plugin>1.4.0</version.mybatis-generator-maven-plugin>
<version.mybatis-spring-boot-starter>2.1.0</version.mybatis-spring-boot-starter>
<version.mysql-connector-java>5.1.41</version.mysql-connector-java>
<version.hystrix-core>1.5.12</version.hystrix-core>
<version.hystrix-metrics-event-stream>1.4.10</version.hystrix-metrics-event-stream>
<version.rxjava-reactive-streams>1.2.1</version.rxjava-reactive-streams>
<version.groovy-all>2.3.10</version.groovy-all>
<version.dubbo>2.6.5</version.dubbo>
<version.eureka>1.9.3</version.eureka>
<version.spring.cloud.common>2.2.6.RELEASE</version.spring.cloud.common>
<version.spring.cloud.ribbon>2.2.6.RELEASE</version.spring.cloud.ribbon>
<version.apache.dubbo>2.7.7</version.apache.dubbo>
<version.maven.source.plugin>3.0.1</version.maven.source.plugin>
<version.apache-rat-plugin>0.12</version.apache-rat-plugin>
<version.maven-surefire-plugin>2.22.2</version.maven-surefire-plugin>
<version.maven-javadoc-plugin>3.0.0</version.maven-javadoc-plugin>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
<version>${version.commons-pool2}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>${version.fastjson}</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>${version.commons-codec}</version>
</dependency>
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<version>${version.reflections}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${version.guava}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${version.jackson-databind}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${version.commons-lang3}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<version>${version.commons-text}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>${version.httpclient}</version>
</dependency>
<dependency>
<groupId>com.netflix.hystrix</groupId>
<artifactId>hystrix-core</artifactId>
<version>${version.hystrix-core}</version>
</dependency>
<dependency>
<groupId>com.netflix.hystrix</groupId>
<artifactId>hystrix-metrics-event-stream</artifactId>
<version>${version.hystrix-metrics-event-stream}</version>
</dependency>
<dependency>
<groupId>io.reactivex</groupId>
<artifactId>rxjava-reactive-streams</artifactId>
<version>${version.rxjava-reactive-streams}</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>${version.groovy-all}</version>
</dependency>
<dependency>
<groupId>com.lmax</groupId>
<artifactId>disruptor</artifactId>
<version>${version.disruptor}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo</artifactId>
<version>${version.dubbo}</version>
</dependency>
<dependency>
<groupId>org.apache.dubbo</groupId>
<artifactId>dubbo</artifactId>
<version>${version.apache.dubbo}</version>
</dependency>
<!--<dependency>-->
<!--<groupId>org.springframework.cloud</groupId>-->
<!--<artifactId>spring-cloud-commons</artifactId>-->
<!--<version>${version.spring.cloud.common}</version>-->
<!--</dependency>-->
<!--<dependency>-->
<!--<groupId>org.springframework.cloud</groupId>-->
<!--<artifactId>spring-cloud-starter-netflix-ribbon</artifactId>-->
<!--<version>${version.spring.cloud.ribbon}</version>-->
<!--</dependency>-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-commons</artifactId>
<version>${version.spring.cloud.common}</version>
</dependency>
<dependency>
<groupId>com.netflix.eureka</groupId>
<artifactId>eureka-client</artifactId>
<version>${version.eureka}</version>
</dependency>
<dependency>
<groupId>com.netflix.eureka</groupId>
<artifactId>eureka-core</artifactId>
<version>${version.eureka}</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${version.mysql-connector-java}</version>
</dependency>
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>${version.mybatis-spring-boot-starter}</version>
</dependency>
<dependency>
<groupId>org.mybatis.generator</groupId>
<artifactId>mybatis-generator-maven-plugin</artifactId>
<version>${version.mybatis-generator-maven-plugin}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${version.maven.source.plugin}</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>templating-maven-plugin</artifactId>
<version>1.0.0</version>
<executions>
<execution>
<id>filter-src</id>
<goals>
<goal>filter-sources</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
</plugins>
</build>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/mycoin/clivia.git
git@gitee.com:mycoin/clivia.git
mycoin
clivia
clivia
main

搜索帮助

D67c1975 1850385 1daf7b77 1850385