archetype-resources.pom.xml Maven / Gradle / Ivy
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>3.2.3</version> </parent> <groupId>${groupId}</groupId> <artifactId>${artifactId}</artifactId> <version>${version}</version> <properties> <java.version>17</java.version> <koupleless.runtime.version>2.1.1</koupleless.runtime.version> <sofa.ark.version>3.1.2</sofa.ark.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <scope>provided</scope> <exclusions> <exclusion> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-log4j2</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.alipay.sofa.koupleless</groupId> <artifactId>koupleless-app-starter</artifactId> <version>${koupleless.runtime.version}</version> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>com.alipay.sofa</groupId> <artifactId>sofa-ark-maven-plugin</artifactId> <version>${sofa.ark.version}</version> <executions> <execution> <id>default-cli</id> <goals> <goal>repackage</goal> </goals> </execution> </executions> <configuration> <skipArkExecutable>true</skipArkExecutable> <outputDirectory>./target</outputDirectory> <bizName>${artifactId}</bizName> <webContextPath>${artifactId}</webContextPath> <declaredMode>true</declaredMode> <!-- 打包、安装和发布 ark biz--> <!-- 静态合并部署需要配置--> <!-- <attach>true</attach>--> <!-- 多 bundle 使用该配置文件 conf/ark/rules.txt 排包,单 bundle 由于不存在依赖传递丢失问题建议使用 scope=provided 排包 --> <packExcludesConfig>rules.txt</packExcludesConfig> </configuration> </plugin> </plugins> </build> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy