代码拉取完成,页面将自动刷新
同步操作将从 白云/l2cache 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<?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>io.github.ck-jesse</groupId>
<artifactId>l2cache</artifactId>
<name>l2cache</name>
<version>1.0.38</version>
<packaging>pom</packaging>
<description>分布式二级缓存框架</description>
<url>https://github.com/ck-jesse/l2cache</url>
<modules>
<module>l2cache-core</module>
<module>l2cache-spring-boot-starter</module>
<module>l2cache-example</module>
<module>l2cache-jd-hotkey</module>
</modules>
<properties>
<!-- proj`ect -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
<!-- dependencies -->
<spring-boot.version>2.3.0.RELEASE</spring-boot.version>
<spring.cloud.version>Greenwich.RELEASE</spring.cloud.version>
<caffeine.version>2.8.4</caffeine.version>
<guava.version>32.1.2-jre</guava.version>
<redisson.version>3.13.0</redisson.version>
<kafka-clients.version>3.4.0</kafka-clients.version>
<lombok.version>1.18.12</lombok.version>
<junit.version>4.13.1</junit.version>
<hutool.version>5.8.17</hutool.version>
<sentinel.version>1.8.5</sentinel.version>
</properties>
<dependencyManagement>
<dependencies>
<!-- spring-boot -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring-boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- spring-cloud -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring.cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
<version>${caffeine.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<dependency>
<groupId>org.redisson</groupId>
<artifactId>redisson</artifactId>
<version>${redisson.version}</version>
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
<version>${kafka-clients.version}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>${hutool.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<!-- l2cache-core -->
<dependency>
<groupId>io.github.ck-jesse</groupId>
<artifactId>l2cache-core</artifactId>
<version>${project.version}</version>
</dependency>
<!-- l2cache-spring-boot-starter -->
<dependency>
<groupId>io.github.ck-jesse</groupId>
<artifactId>l2cache-spring-boot-starter</artifactId>
<version>${project.version}</version>
</dependency>
<!-- jd-hotkey-client -->
<dependency>
<groupId>io.github.ck-jesse</groupId>
<artifactId>jd-hotkey-client</artifactId>
<version>${project.version}</version>
</dependency>
<!-- sentinel-parameter-flow 热点参数限流 -->
<dependency>
<groupId>com.alibaba.csp</groupId>
<artifactId>sentinel-parameter-flow-control</artifactId>
<version>${sentinel.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<!-- 编译打包 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<!-- 生成源码 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<attach>true</attach>
</configuration>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- 该插件用于复制指定的文件 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<!-- 打包时跳过测试 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
</plugins>
</build>
<pluginRepositories>
<pluginRepository>
<id>public</id>
<name>aliyun nexus</name>
<url>https://maven.aliyun.com/repository/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
<!-- 许可证信息 -->
<licenses>
<license>
<name>Open Software License 3.0</name>
<url>https://opensource.org/licenses/OSL-3.0</url>
</license>
</licenses>
<!-- 开发者信息 -->
<developers>
<developer>
<name>jesse</name>
<organization>https://blog.csdn.net/icansoicrazy/</organization>
</developer>
</developers>
<!-- SCM信息,可以理解为托管信息,我这里在github上托管 -->
<scm>
<connection>scm:https://github.com/ck-jesse/l2cache.git</connection>
<developerConnection>scm:https://github.com/ck-jesse/l2cache.git</developerConnection>
<url>https://github.com/ck-jesse/l2cache.git</url>
</scm>
<profiles>
<!-- private nexus repository for test -->
<!-- 发布到私有仓库: mvn clean deploy -->
<profile>
<id>weeget-nexus</id>
<properties>
<profiles.active>weeget-nexus</profiles.active>
</properties>
<!-- 发布到maven私服 -->
<distributionManagement>
<repository>
<id>maven-releases</id>
<name>youxuan-central</name>
<url>http://nexus.weeget.cn/repository/maven-releases/</url>
</repository>
<snapshotRepository>
<id>maven-snapshots</id>
<name>youxuan-central</name>
<url>http://nexus.weeget.cn/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
</profile>
<!-- Central maven repository -->
<!-- Deploying to OSSRH with Apache Maven: https://central.sonatype.org/publish/publish-maven/ -->
<!-- 发布到中央仓库: mvn clean deploy -P ossrh -Dgpg.passphrase=密码 -Dmaven.test.skip=true -f pom.xml -->
<profile>
<id>ossrh</id>
<properties>
<profiles.active>ossrh</profiles.active>
<gpg.executable>gpg</gpg.executable>
</properties>
<!-- 发布到maven中央仓库 -->
<!-- 403 Forbidden: https://central.sonatype.org/faq/403-error/ -->
<!-- 常见错误: https://central.sonatype.org/faq/ -->
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<name>snapshots maven-central</name>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<name>staging maven-central</name>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<build>
<plugins>
<!-- javadoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<configuration>
<!-- 忽略@date标记,jdk1.8要加上,1.7要去掉,否则会报错 -->
<additionalJOptions>
<additionalJOption>-Xdoclint:none</additionalJOption>
</additionalJOptions>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Gpg Signature 对部署到中央仓库的组件进行签名 -->
<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>
<!-- 自动发布暂存仓库中的组件,简化部署到中央仓库的步骤,无需每次去登陆 https://oss.sonatype.org/ 手动发布 -->
<!--
<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://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
-->
</plugins>
</build>
</profile>
</profiles>
</project>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。