1
mirror of https://github.com/CarmJos/EasyPlugin.git synced 2026-06-04 16:48:16 +08:00

测试javadoc部署

This commit is contained in:
2022-01-08 01:35:16 +08:00
parent 43643ba423
commit d5632d371b
4 changed files with 19 additions and 4 deletions
+1
View File
@@ -0,0 +1 @@
Hello world
+4 -3
View File
@@ -25,7 +25,7 @@ jobs:
distribution: 'adopt' distribution: 'adopt'
- name: Generate docs - name: Generate docs
run: mvn clean package -DskipTests run: mvn javadoc:javadoc -DskipTests
env: env:
MAVEN_USERNAME: ${{ github.repository_owner }} MAVEN_USERNAME: ${{ github.repository_owner }}
MAVEN_TOKEN: ${{secrets.GITHUB_TOKEN}} MAVEN_TOKEN: ${{secrets.GITHUB_TOKEN}}
@@ -34,8 +34,9 @@ jobs:
run: | run: |
rm -rf docs rm -rf docs
mkdir -vp docs mkdir -vp docs
cp -vrf EasyPlugin-api/target/apidocs/* docs/ for i in ../easyplugin* ; do if test -e "$i/target/apidocs/"; then echo cp -vrf "$i/target/apidocs/*" "docs/$1/"; fi ;done;
cp -vrf .documentation/JAVADOC-README.md docs/README.md cp -vrf .documentation/javadoc/JAVADOC-README.md docs/README.md
cp -vrf .documentation/javadoc/index.html docs/index.html
- name: Generate the sitemap - name: Generate the sitemap
id: sitemap id: sitemap
+14 -1
View File
@@ -18,7 +18,7 @@
<artifactId>easyplugin-bom</artifactId> <artifactId>easyplugin-bom</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>
<name>00-EasyPlugin-Bom</name> <name>00-EasyPlugin-Bom</name>
<description>轻松插件汇总导入模块,允许快捷导入相关的接口并避免版本不一致问题。</description> <description>轻松插件汇总导入模块,允许快捷导入相关的接口并避免版本不一致问题。</description>
<url>https://github.com/CarmJos/EasyPlugin</url> <url>https://github.com/CarmJos/EasyPlugin</url>
@@ -103,5 +103,18 @@
</dependency> </dependency>
</dependencies> </dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
</plugins>
</build>
</project> </project>