Skip to content

Commit c4d9c88

Browse files
authored
(major/non-breaking?) Modules Refactor (#97, merge)
(major/non-breaking?) Modules Refactor
2 parents 5d56a8a + 44baa18 commit c4d9c88

154 files changed

Lines changed: 1157 additions & 3113 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,16 @@ jobs:
2929
with:
3030
name: java-${{matrix.version}}
3131
path: build/libs/*
32-
license-header-check:
32+
- name: Publish to local testing maven repo
33+
run: ./gradlew publishAllPublicationsToTestingRepository
34+
- name: Display directory structure of testing repo
35+
run: ls -R build/testing-mvn-repo
36+
- name: Save output from testing repo
37+
uses: actions/upload-artifact@v2
38+
with:
39+
name: java-${{matrix.version}}-testing-mvn-repo
40+
path: build/testing-mvn-repo/*
41+
linting-check:
3342
runs-on: ubuntu-latest
3443
container:
3544
image: jcxldn/openjdk-alpine:11-jdk
@@ -39,8 +48,8 @@ jobs:
3948
- uses: actions/checkout@v2
4049
- name: Grant execute permission for gradlew
4150
run: chmod +x gradlew
42-
- name: Run the license formatter checker
43-
run: ./gradlew licenseMain licenseTest
51+
- name: Test our code against our spotless formatting options
52+
run: ./gradlew spotlessCheck
4453
javadoc-check:
4554
runs-on: ubuntu-latest
4655
container:

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ bin
5252
*.code-workspace
5353

5454
# Generated resources
55-
src/main/resources/generated/*
55+
common/src/main/resources/generated/*

LICENSE_HEADER

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1-
Copyright (c) 2020-${year} DumbDogDiner <dumbdogdiner.com>. All rights reserved.
2-
Licensed under the MIT license, see LICENSE for more information...
1+
/*
2+
* Copyright (c) 2020-$YEAR DumbDogDiner <dumbdogdiner.com>. All rights reserved.
3+
* Licensed under the MIT license, see LICENSE for more information...
4+
*/

0 commit comments

Comments
 (0)