Skip to content

Commit

Permalink
fix mvn deploy plugin version & invalid Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
Feuermagier committed Feb 4, 2024
1 parent f62705d commit 104fee7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ public static <T> CtExpression<T> resolveConstant(CtExpression<T> ctExpression)
}

/**
* Converts a binary operator like < to <= or > to >= and adjusts the operands accordingly
* Converts a binary operator like &lt; to &lt;= or > to >= and adjusts the operands accordingly
* to make finding patterns on them easier by not having to special-case them. Additionally,
* one can specify a predicate to swap the operands if necessary. For example, to ensure that
* a literal is always on the right-hand side.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public Formatter(String lineSeparator, Highlight highlight, Integer viewbox) {
* | |_^
* 13 |
* 14 | fn another_function {
* }
* }}
* <p>
* Here the two lines before and after the span are shown.
* So a viewbox of 0 will only show the lines of the span.
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -164,11 +164,6 @@
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.1.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
Expand Down Expand Up @@ -201,6 +196,11 @@
<maxmem>512m</maxmem>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.0.0</version>
</plugin>
</plugins>
</pluginManagement>
</build>
Expand Down

0 comments on commit 104fee7

Please sign in to comment.