Skip to content

Commit d685e2e

Browse files
committed
Add CI, wiki generator, and initial project files
Bootstrap repository with CI, publishing, and documentation tooling. Adds multiple GitHub Actions workflows (maven-build, maven-publish, merge-main-to-branches, sync-branches-from-upstream, wiki-publish) and a Dependabot configuration. Introduces a Python wiki generator (.github/scripts/generate-wiki-docs.py) and the workflow to publish generated Markdown to the repo wiki. Adds Maven wrapper (mvnw, mvnw.cmd, .mvn/wrapper/maven-wrapper.properties), initial module/root POM files, a CODE_OF_CONDUCT.md, and expands .gitignore. These changes set up automated builds, publishing, branch syncing, dependency updates, and auto-generated API documentation.
1 parent b3939f6 commit d685e2e

16 files changed

Lines changed: 2083 additions & 1 deletion

File tree

.github/dependabot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "maven" # See documentation for possible values
9+
directory: "/"
10+
schedule:
11+
interval: "daily"
12+
open-pull-requests-limit: 10

0 commit comments

Comments
 (0)