1 Star 0 Fork 2

java/HttpDoc

forked from Gitee 极速下载/HttpDoc 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 3.25 KB
一键复制 编辑 原始数据 按行查看 历史
core-lib 提交于 2018-11-28 13:18 +08:00 . 1. 优化SDK导出的压缩包结构
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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.httpdoc</groupId>
<artifactId>httpdoc</artifactId>
<version>v1.6.4</version>
<modules>
<module>httpdoc-core</module>
<module>httpdoc-web</module>
<module>httpdoc-spring-mvc</module>
<module>httpdoc-jestful-client</module>
<module>httpdoc-jestful-server</module>
<module>httpdoc-jackson</module>
<module>httpdoc-gson</module>
<module>httpdoc-nutz</module>
<module>httpdoc-retrofit</module>
<module>httpdoc-objc</module>
<module>httpdoc-spring-boot</module>
<module>httpdoc-ui</module>
<module>httpdoc-sample</module>
</modules>
<packaging>pom</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.25</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>${maven.compiler.source}</source>
<source>${maven.compiler.target}</source>
<fork>true</fork>
<verbose>true</verbose>
<encoding>UTF-8</encoding>
<compilerArguments>
<sourcepath>
${project.basedir}/src/main/java
</sourcepath>
</compilerArguments>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<attach>true</attach>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/java_classic_project_case/HttpDoc.git
git@gitee.com:java_classic_project_case/HttpDoc.git
java_classic_project_case
HttpDoc
HttpDoc
master

搜索帮助