Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/workflows/on_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,19 @@ jobs:
cache: 'maven'
- name: Run PMD check
run: mvn -U -B verify -Ppmd


docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
cache: 'maven'
- name: Run docs check
run: mvn -s .ci-settings.xml clean package javadoc:jar -DskipTests -P release-ossrh -B -U -pl agent,deep --also-make

2 changes: 1 addition & 1 deletion deep/src/main/java/com/intergral/deep/Deep.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* <p>
* To use a deep API use
* <code>
* Deep.getInstance().<IDeep>api()
* Deep.getInstance().&lt;IDeep&gt;api()
* </code>
*/
public class Deep {
Expand Down
4 changes: 4 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,10 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<!--force the java doc to use java 8-->
<source>8</source>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
Expand Down