Skip to content

Commit

Permalink
Make all parameters links
Browse files Browse the repository at this point in the history
  • Loading branch information
YaytayAtWork committed May 2, 2024
1 parent 43e5667 commit dfbb95e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.3.0</version>
<version>3.4.1</version>
<executions>
<execution>
<id>maven-jar-plugin-test-jar</id>
Expand Down Expand Up @@ -310,7 +310,7 @@
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>10.15.0</version>
<version>10.16.0</version>
</dependency>
</dependencies>
</plugin>
Expand Down Expand Up @@ -368,7 +368,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.11</version>
<version>0.8.12</version>
<configuration>
<destFile>${basedir}/target/coverage-reports/jacoco-unit.exec</destFile>
<dataFile>${basedir}/target/coverage-reports/jacoco-unit.exec</dataFile>
Expand Down Expand Up @@ -524,7 +524,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.5.2</version>
<version>3.5.3</version>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
<shadedArtifactAttached>true</shadedArtifactAttached>
Expand Down Expand Up @@ -615,7 +615,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.3</version>
<version>3.2.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,9 @@ public Void visitVariable(VariableElement e, Void p) {
if (!this.fields.contains(fieldName)) {
this.fields.add(fieldName);

writer.write("| ");
writer.write("| [[");
writer.write(fieldName);
writer.write("]]");
writer.write(fieldName);
writer.write("\n");

Expand Down Expand Up @@ -212,7 +214,9 @@ public Void visitExecutable(ExecutableElement e, Void p) {
if (!this.fields.contains(fieldName)) {
this.fields.add(fieldName);

writer.write("| ");
writer.write("| [[");
writer.write(fieldName);
writer.write("]]");
writer.write(fieldName);
writer.write("\n");

Expand Down

0 comments on commit dfbb95e

Please sign in to comment.