Skip to content

Commit

Permalink
Merge pull request #75 from mxenabled/mc/add_test_dependency
Browse files Browse the repository at this point in the history
Add test dependency

[skip actions]
  • Loading branch information
mcoats13 authored Oct 26, 2023
2 parents e68b1c6 + 4b6203a commit 6f45151
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
java-version: '11'

- name: Build with Maven
run: mvn -B package --file pom.xml
Expand All @@ -25,7 +25,7 @@ jobs:
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
java-version: '11'
server-id: ossrh
server-username: MAVEN_USERNAME
server-password: MAVEN_CENTRAL_TOKEN
Expand Down
6 changes: 6 additions & 0 deletions openapi/templates/pom.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,12 @@
<version>${jackson-databind-nullable-version}</version>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit-jupiter-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand Down

0 comments on commit 6f45151

Please sign in to comment.