1 Star 0 Fork 7

吕小昊/yapidoc-maven-plugin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 5.56 KB
一键复制 编辑 原始数据 按行查看 历史
冯立彬 提交于 2021-12-25 12:01 . 升级版本
<?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.eeeffff.yapidoc</groupId>
<artifactId>yapidoc</artifactId>
<packaging>pom</packaging>
<version>1.0.5</version>
<name>${project.artifactId}</name>
<description>Maven plugin used to generate yapi document for Java controllers</description>
<url>https://github.com/fenglibin/yapidoc</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/fenglibin/yapidoc</url>
<connection>scm:git:https://github.com/fenglibin/yapidoc.git</connection>
<developerConnection>scm:git:https://github.com/fenglibin/yapidoc.git</developerConnection>
</scm>
<developers>
<developer>
<name>The YApiDoc Project Contributors</name>
<email>56553655@163.com</email>
<url>https://github.com/fenglibin/yapidoc</url>
</developer>
</developers>
<organization>
<name>Fenglibin</name>
<url>https://github.com/fenglibin</url>
</organization>
<issueManagement>
<system>github</system>
<url>https://github.com/fenglibin/yapidoc/issues</url>
</issueManagement>
<distributionManagement>
<repository>
<id>ossrh</id>
<name>Release</name>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>ossrh</id>
<name>SNAPSHOTS</name>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<properties>
<mavenFilteringVersion>3.1.1</mavenFilteringVersion>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- Maven properties -->
<maven.test.skip>false</maven.test.skip>
<!-- Compiler settings properties -->
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<!-- Exclude all generated code -->
</properties>
<modules>
<module>yapidoc-core</module>
<module>yapidoc-maven-plugin</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-filtering</artifactId>
<version>${mavenFilteringVersion}</version>
</dependency>
<dependency>
<groupId>com.eeeffff.yapidoc</groupId>
<artifactId>yapidoc-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.4</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>3.3.9</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>3.3.1</version>
</dependency>
<!-- ssh传输-->
<dependency>
<groupId>ch.ethz.ganymed</groupId>
<artifactId>ganymed-ssh2</artifactId>
<version>262</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.9.9.1</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-yaml</artifactId>
<version>2.9.8</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.9.9</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.26</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.6</version>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>2.0.1.Final</version>
<scope>compile</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/lxhao/yapidoc-maven-plugin.git
git@gitee.com:lxhao/yapidoc-maven-plugin.git
lxhao
yapidoc-maven-plugin
yapidoc-maven-plugin
master

搜索帮助