Skip to content

Commit 95a9881

Browse files
authored
Merge pull request #136 from devondragon/issue-123-Convert-project-from-framework-to-Maven-library-with-separate-demo-app
Issue-123-Convert-project-from-framework-to-Maven-library-with-separate-demo-app
2 parents e170fc3 + c60ded8 commit 95a9881

149 files changed

Lines changed: 2013 additions & 9782 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/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ updates:
88
- package-ecosystem: "gradle" # See documentation for possible values
99
directory: "/" # Location of package manifests
1010
schedule:
11-
interval: "daily"
11+
interval: "weekly"

.github/workflows/codeql-analysis.yml

Lines changed: 0 additions & 77 deletions
This file was deleted.

.vscode/settings.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,8 @@
55
"java.configuration.updateBuildConfiguration": "automatic",
66
"java.compile.nullAnalysis.mode": "automatic",
77
"java.transport": "stdio",
8-
"java.jdt.ls.vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx2G -Xms100m -javaagent:\"/Users/devon/.vscode/extensions/gabrielbb.vscode-lombok-1.0.1/server/lombok.jar\""
8+
"java.jdt.ls.vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx2G -Xms100m -javaagent:\"/Users/devon/.vscode/extensions/gabrielbb.vscode-lombok-1.0.1/server/lombok.jar\"",
9+
"debug.javascript.defaultRuntimeExecutable": {
10+
"pwa-node": "/Users/devon/.local/share/mise/shims/node"
11+
}
912
}
File renamed without changes.

CONFIG.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@ Welcome to the User Framework SpringBoot Configuration Guide! This document outl
2323
- **DDL Auto (`spring.jpa.hibernate.ddl-auto`)**: Hibernate schema generation strategy, defaults to `update`.
2424
- **Dialect (`spring.jpa.properties.hibernate.dialect`)**: Set this to the appropriate dialect for your database, defaults to `org.hibernate.dialect.MariaDBDialect`.
2525

26-
### Application Properties
27-
28-
- **Name (`spring.application.name`)**: Set your application's name, defaults to `User Framework`.
2926

3027
## User Settings
3128

@@ -47,18 +44,12 @@ Welcome to the User Framework SpringBoot Configuration Guide! This document outl
4744

4845
- **From Address (`spring.mail.fromAddress`)**: The email address used as the sender in outgoing emails.
4946

50-
## Copyright
51-
52-
- **First Year (`spring.copyrightFirstYear`)**: The starting year for the copyright notice.
5347

5448
## Role and Privileges
5549

5650
- **Roles and Privileges (`spring.roles-and-privileges`)**: Map out roles to their respective privileges.
5751
- **Role Hierarchy (`spring.role-hierarchy`)**: Define the hierarchy and inheritance of roles.
5852

59-
## New Relic Monitoring
60-
61-
- **API Key and Account ID (`management.newrelic.metrics.export`)**: Required if you're integrating with New Relic for monitoring.
6253

6354
## Server and Session Settings
6455

Dockerfile

Lines changed: 0 additions & 3 deletions
This file was deleted.

PUBLISH.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Maven Publishing Guide
2+
3+
# Build and Publish Command Reference
4+
5+
## Building the Project
6+
7+
To build the project, run:
8+
9+
```sh
10+
./gradlew build
11+
```
12+
13+
14+
## Publish to Local Maven
15+
16+
```shell
17+
gradle publishLocal
18+
```
19+
20+
## Publish to Private Maven repository
21+
22+
```shell
23+
gradle publishReposilite
24+
```
25+
26+
27+
## Publish to Maven Central
28+
29+
```shell
30+
gradle publishMavenCentral
31+
```
32+
33+
34+

QUICKSTART.md

Lines changed: 0 additions & 33 deletions
This file was deleted.

0 commit comments

Comments
 (0)