代码拉取完成,页面将自动刷新
同步操作将从 江离/Cloud-Platform 强制同步,此操作会覆盖自 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>com.github.wxiaoqi</groupId>
<artifactId>ace-security</artifactId>
<version>2.0-SNAPSHOT</version>
<url>https://github.com/wxiaoqi/ace-security</url>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.0.RELEASE</version>
</parent>
<properties>
<docker.image.prefix>ace</docker.image.prefix>
<docker.plugin.version>1.2.2</docker.plugin.version>
<mapper.version>3.4.0</mapper.version>
<maven.compile.source>1.8</maven.compile.source>
<maven.compile.target>1.8</maven.compile.target>
<boot.admin.client>2.1.2</boot.admin.client>
<docker.image.skip>false</docker.image.skip>
</properties>
<modules>
<module>ace-gate</module>
<module>ace-api</module>
<module>ace-infrastructure</module>
<module>ace-modules</module>
<module>ace-dev-base</module>
<module>cloud-platform-compose</module>
</modules>
<packaging>pom</packaging>
<developers>
<developer>
<name>ace</name>
</developer>
</developers>
<dependencies>
<!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.14</version>
<scope>provided</scope>
</dependency>
</dependencies>
<!--<repositories>
<repository>
<id>oss</id>
<name>oss</name>
<url>https://oss.sonatype.org/content/groups/public</url>
</repository>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/libs-milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
</repositories>-->
<!--依赖管理,用于管理spring-cloud的依赖,其中Camden.SR3是版本号-->
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Hoxton.SR6</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.33</version>
</dependency>
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-alibaba-dependencies</artifactId>
<version>2.1.1.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<profiles>
<!--查看当前激活的profile mvn help:active-profiles -->
<!--查看所有的profile mvn help:all-profiles -->
<profile>
<id>local</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<env>local</env>
<skipBuild>true</skipBuild>
<skipDocker>true</skipDocker>
<skipCompose>true</skipCompose>
</properties>
</profile>
<profile>
<id>remote_windows</id>
<activation>
<!--根据系统属性激活,value可以不指定 可以设置系统环境变量,也可以使用命令指定 mvn -DtestProfile,注意区分和直接使用-P指定profile的区别-->
<property>
<!--存在系统属性testprofile且值是test时激活此profile,也可以不指定value,就是存在这个系统属性时激活-->
<name>testprofile</name>
<value>test</value>
</property>
<!--根据操作系统激活-->
<os>
<name>Window XP</name>
<family>Windows</family>
<arch>x86</arch>
<version>5.1.2600</version>
</os>
<!--根据文件是否存在激活profile-->
<file>
<missing>t1.properties</missing>
<exists>t2.properties</exists>
</file>
</activation>
<properties>
<env>remote_windows</env>
<skipBuild>false</skipBuild>
<skipDocker>false</skipDocker>
<redisVolumePath>./docker/redis</redisVolumePath>
<dockerHost>http://10.2.116.56:2375</dockerHost>
<registryUrl>10.2.116.56:5000</registryUrl>
</properties>
</profile>
<profile>
<id>remote_linux</id>
<properties>
<env>remote_linux</env>
<skipBuild>true</skipBuild>
<skipDocker>true</skipDocker>
<redisVolumePath>/docker/redis</redisVolumePath>
<dockerHost>http://okali.top:6849</dockerHost>
<registryUrl>okali.top:5000</registryUrl>
</properties>
</profile>
</profiles>
<!-- <distributionManagement>-->
<!-- <snapshotRepository>-->
<!-- <id>ossrh</id>-->
<!-- <url>https://oss.sonatype.org/content/repositories/snapshots</url>-->
<!-- </snapshotRepository>-->
<!-- <repository>-->
<!-- <id>ossrh</id>-->
<!-- <name>Maven Central Staging Repository</name>-->
<!-- <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>-->
<!-- </repository>-->
<!-- </distributionManagement>-->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>${maven.compile.source}</source>
<target>${maven.compile.target}</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<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-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
<plugin>
<groupId>com.dkanejs.maven.plugins</groupId>
<artifactId>docker-compose-maven-plugin</artifactId>
<version>4.0.0</version>
</plugin>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<configuration>
<!--日期格式;默认值:dd.MM.yyyy '@' HH:mm:ss z;-->
<dateFormat>yyyy-MM-dd HH:mm:ss</dateFormat>
<!-- <!–,构建过程中,是否打印详细信息;默认值:false;–>-->
<!-- <verbose>true</verbose>-->
<!-- <!– ".git"文件路径;默认值:${project.basedir}/.git; –>-->
<!-- <dotGitDirectory>${project.basedir}/.git</dotGitDirectory>-->
<!-- <!–若项目打包类型为pom,是否取消构建;默认值:true;–>-->
<!-- <skipPoms>false</skipPoms>-->
<!-- <!–是否生成"git.properties"文件;默认值:false;–>-->
<!-- <generateGitPropertiesFile>true</generateGitPropertiesFile>-->
<!-- <!–指定"git.properties"文件的存放路径(相对于${project.basedir}的一个路径);–>-->
<!-- <generateGitPropertiesFilename>git.properties</generateGitPropertiesFilename>-->
<!--".git"文件夹未找到时,构建是否失败;若设置true,则构建失败;若设置false,则跳过执行该目标;默认值:true;-->
<failOnNoGitDirectory>false</failOnNoGitDirectory>
<!--默认为properties-->
<format>json</format>
<!--git描述配置,可选;由JGit提供实现;-->
<gitDescribe>
<!--是否生成描述属性-->
<!-- <skip>false</skip>-->
<!-- <!–提交操作未发现tag时,仅打印提交操作ID,–>-->
<!-- <always>false</always>-->
<!-- <!–提交操作ID显式字符长度,最大值为:40;默认值:7;-->
<!-- 0代表特殊意义;后面有解释;-->
<!-- –>-->
<!-- <abbrev>7</abbrev>-->
<!--构建触发时,代码有修改时(即"dirty state"),添加指定后缀;默认值:"";-->
<dirty>-dirty</dirty>
<!--always print using the "tag-commits_from_tag-g_commit_id-maybe_dirty" format, even if "on" a tag.
The distance will always be 0 if you're "on" the tag.
-->
<!-- <forceLongFormat>false</forceLongFormat>-->
</gitDescribe>
</configuration>
</plugin>
<!--<plugin>-->
<!--<groupId>org.apache.maven.plugins</groupId>-->
<!--<artifactId>maven-javadoc-plugin</artifactId>-->
<!--<version>2.10.3</version>-->
<!--<executions>-->
<!--<execution>-->
<!--<id>attach-javadocs</id>-->
<!--<goals>-->
<!--<goal>jar</goal>-->
<!--</goals>-->
<!--</execution>-->
<!--</executions>-->
<!--</plugin>-->
</plugins>
</build>
</project>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。