Skip to content

Commit

Permalink
Adds missing builder method
Browse files Browse the repository at this point in the history
- Added setter for the output the in the
``SparqlBasedExportRdfCommand#Builder``.
  • Loading branch information
tonyKunchev committed May 16, 2022
1 parent 64aca09 commit 76be222
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/package-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
run: mvn -B package -DskipTests -Dcheckstyle.skip --file pom.xml

- name: Publish to GitHub Packages Apache Maven
run: mvn deploy -DskipTests -Dcheckstyle.skip -s $GITHUB_WORKSPACE/settings.xml
run: mvn --batch-mode deploy -DskipTests -Dcheckstyle.skip -s $GITHUB_WORKSPACE/settings.xml
env:
ONTO_MVN_USER_REF: ${{ secrets.ONTO_MAVEN_REPO_USER }}
ONTO_MVN_TOKEN_REF: ${{ secrets.ONTO_MAVEN_REPO_PASSWORD }}
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,11 @@ public Builder setRepository(String repository) {
return this;
}

public Builder setOutput(OutputType output) {
this.output = output;
return this;
}

/**
* Builds a {@link SparqlBasedExportRdfCommand}.
*
Expand Down

0 comments on commit 76be222

Please sign in to comment.