11 Star 31 Fork 5

杨昌沛 / httpdoc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 3.29 KB
一键复制 编辑 原始数据 按行查看 历史
core-lib 提交于 2019-08-28 10:38 . 修复BaseURL与接口相对路径问题
<?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.8.1</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-retrofit2</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>
Java
1
https://gitee.com/core-lib/httpdoc.git
git@gitee.com:core-lib/httpdoc.git
core-lib
httpdoc
httpdoc
master

搜索帮助