Skip to content

Commit

Permalink
fix: maven deploy update
Browse files Browse the repository at this point in the history
  • Loading branch information
dlangst committed Jul 29, 2022
1 parent db048f2 commit 51af524
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build_test_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,6 @@ jobs:
echo "Running script setMavenVersion"
build/setMavenVersion_gha.sh
echo "Running mvn clean"
mvn clean javadocs:aggregate
mvn clean javadoc:aggregate
echo "Running script publish"
build/publishJavadoc_gha.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1410,6 +1410,8 @@ public List<Annotation> getLines() {
/**
* Gets the line scope at given index.
*
* @param index position to retrieve
*
* @return the line scope
*/
public Annotation getLines(int index) {
Expand Down Expand Up @@ -1442,6 +1444,8 @@ public List<Annotation> getSentences() {
/**
* Gets the sentence scope at given index.
*
* @param index position to retrieve
*
* @return the sentence scope
*/
public Annotation getSentences(int index) {
Expand Down Expand Up @@ -1474,6 +1478,8 @@ public List<Annotation> getParagraphs() {
/**
* Gets the paragraph scope at given index.
*
* @param index position to retrieve
*
* @return the paragraph scope
*/
public Annotation getParagraphs(int index) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ public List<RelationNode> getNodes() {
/**
* Gets the node.
*
* @param index position to retrieve
*
* @return the node
*/
public RelationNode getNode(int index) {
Expand Down

0 comments on commit 51af524

Please sign in to comment.