Skip to content
Merged
Show file tree
Hide file tree
Changes from 36 commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
55bb636
Initial move
jcxldn Feb 28, 2021
c2586e0
Use shadow to create an uber jar, create uber sources, don't run java…
jcxldn Feb 28, 2021
8298897
Add project-wide reporting for test completion and coverage
jcxldn Feb 28, 2021
2b8cc4d
Add project-wide javadocs
jcxldn Feb 28, 2021
ddc7a8b
Don't use shadow for root uberjar building for now
jcxldn Feb 28, 2021
090ac31
Ignore md and mockmaker for license formatter
jcxldn Feb 28, 2021
c26072c
Clean up build.gradle comments
jcxldn Feb 28, 2021
8fa1a4f
Create initial allprojects and subprojects
jcxldn Feb 28, 2021
5194f2a
Remove sources task back to subprojects
jcxldn Feb 28, 2021
2dba8de
Initial subproject publishing support
jcxldn Feb 28, 2021
dc02136
Add local testing maven repo
jcxldn Feb 28, 2021
3ec2a1a
Try setting UTF8 for agregateJavadoc
jcxldn Feb 28, 2021
ed2707c
Try running javadoc instead of aggregateJavadoc
jcxldn Feb 28, 2021
8c7fc4a
Javadoc fixes, part 3!
jcxldn Feb 28, 2021
3d11785
Move repositories to allprojects
jcxldn Mar 1, 2021
adc439b
Create a libs-all folder for all jars
jcxldn Mar 1, 2021
fd4410a
Simplify copyJars by just copying modules into existing uber libs folder
jcxldn Mar 1, 2021
d712d49
(ci): Publish to local testing repo, artifact and display output
jcxldn Mar 1, 2021
65ca953
Deprecate bukkit.nms; pending removal
jcxldn Mar 1, 2021
57419ee
fix skye formatting complaints
kaylendog Mar 3, 2021
3d2ca6b
consistent quoting
kaylendog Mar 3, 2021
10d514d
make bracketing consistent
kaylendog Mar 3, 2021
d699772
Add better comments to common's build.gradle
jcxldn Mar 3, 2021
d0f127f
Remove the old build.gradle
jcxldn Mar 3, 2021
81a3413
Fix comment
jcxldn Mar 3, 2021
d322b65
Bump version to 2.2.0
jcxldn Mar 3, 2021
5741c89
Rewrite the configuration package (very basic for now) (#98)
jcxldn Mar 17, 2021
767627b
Use the correct nullable import
jcxldn Mar 21, 2021
051a405
(initial): only depend on bungee / bukkit in their respective subproj…
jcxldn Mar 21, 2021
b010d11
Use newer JUnit 5 imports for tests
jcxldn Mar 21, 2021
a73b33d
Move ServerVersion to it's own subproject so that we don't depend on …
jcxldn Mar 21, 2021
cbbcadb
Add :common:serverversion to common jar and sources output
jcxldn Mar 21, 2021
4e46e35
Move the config rewrite to it's own project
jcxldn Mar 21, 2021
c811cfe
Rename configuration package to config
jcxldn Mar 21, 2021
5abc3f0
Remove unused imports, don't use wildcard imports
jcxldn Mar 21, 2021
1c3bcae
Bump version to 3.0
jcxldn Mar 21, 2021
06bb9c8
Improve code style
jcxldn Mar 21, 2021
eff08bd
Add custom configuration for resources
jcxldn Mar 23, 2021
8e9c86e
gradle 7 prep - migrate away from using compile
jcxldn Mar 23, 2021
04094c0
Add spotless for license headers
jcxldn Mar 23, 2021
1ea61fc
Adjust gprSubprojects debug output
jcxldn Mar 23, 2021
6418bba
Edit aggregate-javadoc comment
jcxldn Mar 23, 2021
1bdf593
Update since annotations from #77
jcxldn Mar 23, 2021
959e7f7
Add since annotations to #92
jcxldn Mar 23, 2021
cd4402f
Add since annotations to #72
jcxldn Mar 23, 2021
7ee75f3
Add browseJavadoc, allow frames support (#103)
aakatz3 Mar 23, 2021
53fd378
Bump classgraph to 4.8.103
jcxldn Mar 23, 2021
5a0d96e
Use semver for versioning
jcxldn Mar 29, 2021
f02fdf4
Add extra newline
jcxldn Mar 29, 2021
264b703
Ignore :common:serverversion when publishing
jcxldn Mar 29, 2021
44baa18
Bump classgraph to 4.8.104
jcxldn Mar 29, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,15 @@ jobs:
with:
name: java-${{matrix.version}}
path: build/libs/*
- name: Publish to local testing maven repo
run: ./gradlew publishAllPublicationsToTestingRepository
- name: Display directory structure of testing repo
run: ls -R build/testing-mvn-repo
- name: Save output from testing repo
uses: actions/upload-artifact@v2
with:
name: java-${{matrix.version}}-testing-mvn-repo
path: build/testing-mvn-repo/*
license-header-check:
runs-on: ubuntu-latest
container:
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,4 @@ bin
*.code-workspace

# Generated resources
src/main/resources/generated/*
common/src/main/resources/generated/*
Loading