Skip to content

Commit

Permalink
Merge pull request #64 from JayPi4c/63-rewrite-to-use-java-9+-module-…
Browse files Browse the repository at this point in the history
…structure

63 rewrite to use java 9+ module structure
  • Loading branch information
JayPi4c authored Jan 30, 2024
2 parents a3981d3 + 568b841 commit 7526ee6
Show file tree
Hide file tree
Showing 23 changed files with 1,514 additions and 1,397 deletions.
62 changes: 0 additions & 62 deletions .github/workflows/build-badges.yml

This file was deleted.

22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build Project

on:
push:
paths:
- 'src/**'
- 'pom.xml'

jobs:
verify:
name: Verify project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Verify with Maven
run: ./mvnw --batch-mode --update-snapshots verify
32 changes: 0 additions & 32 deletions .github/workflows/deploy-javadoc.yml

This file was deleted.

85 changes: 0 additions & 85 deletions .github/workflows/development-release.yml

This file was deleted.

85 changes: 0 additions & 85 deletions .github/workflows/pre-release.yml

This file was deleted.

86 changes: 0 additions & 86 deletions .github/workflows/tagged-release.yml

This file was deleted.

Binary file added .mvn/wrapper/maven-wrapper.jar
Binary file not shown.
18 changes: 18 additions & 0 deletions .mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.6/apache-maven-3.9.6-bin.zip
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar
Loading

0 comments on commit 7526ee6

Please sign in to comment.