Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate to GitHub Actions #14

Merged
merged 3 commits into from Oct 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/maven-build.yml
@@ -0,0 +1,23 @@
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven

name: Java CI with Maven

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B -V verify -Dmaven.javadoc.skip=true --file pom.xml
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -81,7 +81,7 @@ See the License for the specific language governing permissions and
limitations under the License.
</inlineHeader>
<properties>
<owner>The ${artifactId} Authors</owner>
<owner>The ${project.artifactId} Authors</owner>
<project.inceptionYear>2019</project.inceptionYear>
</properties>
<project>
Expand Down