当前仓库属于关闭状态,部分功能使用受限,详情请查阅 仓库状态说明
1 Star 0 Fork 18

ruge-open/javadocreader
关闭

forked from 10km/javadocreader 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 3.60 KB
一键复制 编辑 原始数据 按行查看 历史
<?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>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>com.gitee.l0km</groupId>
<artifactId>javadocreader</artifactId>
<version>1.1.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>javadoc reader</name>
<url>https://gitee.com/l0km</url>
<description>read comments from java source using javadoc</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.compilerVersion>1.7</maven.compiler.compilerVersion>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<!-- surefire 插件 跳过测试 -->
<skipTests>true</skipTests>
</properties>
<profiles>
<profile>
<id>default-profile</id>
<activation>
<activeByDefault>true</activeByDefault>
<file>
<exists>${java.home}/../lib/tools.jar</exists>
</file>
</activation>
<properties>
<toolsjar>${java.home}/../lib/tools.jar</toolsjar>
</properties>
</profile>
<!-- <profile> <id>java_home_profile</id> <activation> <activeByDefault>false</activeByDefault>
<file> <missing>${JAVA_HOME}/lib/tools.jar</missing> </file> </activation>
<properties> <toolsjar>${java.home}/../lib/tools.jar</toolsjar> </properties>
</profile> -->
<profile>
<id>osx_profile</id>
<activation>
<os>
<family>mac</family>
</os>
</activation>
<properties>
<toolsjar>${java.home}/../Classes/classes.jar</toolsjar>
</properties>
</profile>
<profile>
<id>doclint-java8-disable</id>
<activation>
<jdk>[1.8,)</jdk>
</activation>
<properties>
<javadoc.opts>-Xdoclint:none</javadoc.opts>
</properties>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>com.sun</groupId>
<artifactId>tools</artifactId>
<version>${maven.compiler.compilerVersion}</version>
<scope>system</scope>
<systemPath>${toolsjar}</systemPath>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>20.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<configuration>
<!-- 禁用java 8 的DocLint新特性,以确保当javadoc有编译错误时,也能正常生成javadoc jar包 -->
<!-- ${javadoc.opts}由profile指定 -->
<additionalparam>${javadoc.opts}</additionalparam>
</configuration>
</plugin>
</plugins>
</build>
<licenses>
<license>
<name>The 2-Clause BSD License</name>
<url>https://gitee.com/l0km/javadocreader/tree/master/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>guyadong</name>
<email>[email protected]</email>
<url>https://gitee.com/l0km</url>
</developer>
</developers>
<scm>
<connection>scm:git:https://gitee.com/l0km/javadocreader.git</connection>
<developerConnection>scm:git:https://gitee.com/l0km/javadocreader.git</developerConnection>
<url>https://gitee.com/l0km/javadocreader</url>
</scm>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/ruge-open/javadocreader.git
[email protected]:ruge-open/javadocreader.git
ruge-open
javadocreader
javadocreader
master

搜索帮助