Skip to content

Commit 4eb4bb6

Browse files
authored
Issue #70: Rebrand code base from sentrysoftware to metricshub (#71)
- Update the `pom.xml` files: - Change `groupId` from `org.sentrysoftware` to `org.metricshub`. - Change the `artifactId` accordingly to repository name (lowercase) `printf4j`. - Update the `parent` dependency to latest MetricsHub OSS Parent v2. - Ensure artifact coordinates reflect the new organization. - Update the Organization to MetricsHub - Update all Java package names from `org.sentrysoftware` to `org.metricshub`. - Rename corresponding directories to match the new package structure. - Adjust all `import` statements to reflect the new package names. - Review and update any documentation mentioning *Sentry Software* (README, Javadoc, comments, etc.). - Verify that the build and tests pass after these modifications. ## Tests Heavily covered by unit tests, so additional testing isn't necessary here.
2 parents b493c36 + ca3551c commit 4eb4bb6

File tree

21 files changed

+519
-435
lines changed

21 files changed

+519
-435
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ on:
66

77
jobs:
88
build:
9-
uses: sentrysoftware/workflows/.github/workflows/maven-build.yml@main
9+
uses: metricshub/workflows/.github/workflows/maven-build.yml@v2

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
deploy:
13-
uses: sentrysoftware/workflows/.github/workflows/maven-central-deploy.yml@main
13+
uses: metricshub/workflows/.github/workflows/maven-central-deploy.yml@v2
1414
with:
1515
jdkVersion: "17"
1616
secrets: inherit

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818

1919
jobs:
2020
release:
21-
uses: sentrysoftware/workflows/.github/workflows/maven-central-release.yml@main
21+
uses: metricshub/workflows/.github/workflows/maven-central-release.yml@v2
2222
with:
2323
releaseVersion: ${{ inputs.releaseVersion }}
2424
developmentVersion: ${{ inputs.developmentVersion }}

.prettierrc.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
overrides:
2+
- files:
3+
- "**/*.java"
4+
options:
5+
trailingComma: none
6+
useTabs: true
7+
tabWidth: 2
8+
semi: false
9+
singleQuote: false
10+
printWidth: 120
11+
arrowParens: avoid
12+
endOfLine: auto

0 commit comments

Comments
 (0)