1 Star 0 Fork 3

ParkJun/vertx-gateway-template

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 4.50 KB
一键复制 编辑 原始数据 按行查看 历史
ParkJun 提交于 2024-03-25 14:32 . feat[core]:fix prometheus
<?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.gitee.gateway</groupId>
<artifactId>Gateway</artifactId>
<packaging>pom</packaging>
<version>${revision}</version>
<properties>
<revision>1.0</revision>
<encoding>UTF-8</encoding>
<java.version>21</java.version>
<jackson.version>2.16.1</jackson.version>
<vertx.version>4.5.4</vertx.version>
<resilience4j.version>2.2.0</resilience4j.version>
<jdbi.version>3.45.0</jdbi.version>
<hazelcast.version>5.3.6</hazelcast.version>
<slf4j.version>2.0.9</slf4j.version>
<logback.version>1.4.14</logback.version>
<micrometer.version>1.12.4</micrometer.version>
</properties>
<description>Vertx Gateway</description>
<url>https://gitee.com/oschina/vertx-gateway-template</url>
<build>
<sourceDirectory>src/main/java</sourceDirectory>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
<resource>
<directory>src/main/java</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</resource>
</resources>
<plugins>
<!-- Compiler -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<encoding>${encoding}</encoding>
<compilerArgs>--enable-preview</compilerArgs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.6.0</version>
<executions>
<execution>
<id>copy-artifact</id>
<phase>package</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
<type>${project.packaging}</type>
</artifactItem>
</artifactItems>
<outputDirectory>${maven.multiModuleProjectDirectory}/lib</outputDirectory>
</configuration>
</execution>
<execution>
<id>copy</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${maven.multiModuleProjectDirectory}/lib</outputDirectory>
<prependGroupId>false</prependGroupId>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<filesets>
<fileset>
<directory>${maven.multiModuleProjectDirectory}/lib</directory>
<includes>
<include>*</include>
</includes>
<followSymlinks>false</followSymlinks>
</fileset>
</filesets>
</configuration>
</plugin>
</plugins>
</build>
<modules>
<module>core</module>
<module>gateway</module>
<module>services</module>
</modules>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/ParkJun/vertx-gateway-template.git
[email protected]:ParkJun/vertx-gateway-template.git
ParkJun
vertx-gateway-template
vertx-gateway-template
main

搜索帮助