Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ updates:
- package-ecosystem: "gradle" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "daily"
interval: "weekly"
77 changes: 0 additions & 77 deletions .github/workflows/codeql-analysis.yml

This file was deleted.

5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,8 @@
"java.configuration.updateBuildConfiguration": "automatic",
"java.compile.nullAnalysis.mode": "automatic",
"java.transport": "stdio",
"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\""
"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\"",
"debug.javascript.defaultRuntimeExecutable": {
"pwa-node": "/Users/devon/.local/share/mise/shims/node"
}
}
File renamed without changes.
9 changes: 0 additions & 9 deletions CONFIG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ Welcome to the User Framework SpringBoot Configuration Guide! This document outl
- **DDL Auto (`spring.jpa.hibernate.ddl-auto`)**: Hibernate schema generation strategy, defaults to `update`.
- **Dialect (`spring.jpa.properties.hibernate.dialect`)**: Set this to the appropriate dialect for your database, defaults to `org.hibernate.dialect.MariaDBDialect`.

### Application Properties

- **Name (`spring.application.name`)**: Set your application's name, defaults to `User Framework`.

## User Settings

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

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

## Copyright

- **First Year (`spring.copyrightFirstYear`)**: The starting year for the copyright notice.

## Role and Privileges

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

## New Relic Monitoring

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

## Server and Session Settings

Expand Down
3 changes: 0 additions & 3 deletions Dockerfile

This file was deleted.

34 changes: 34 additions & 0 deletions PUBLISH.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Maven Publishing Guide

# Build and Publish Command Reference

## Building the Project

To build the project, run:

```sh
./gradlew build
```


## Publish to Local Maven

```shell
gradle publishLocal
```

## Publish to Private Maven repository

```shell
gradle publishReposilite
```


## Publish to Maven Central

```shell
gradle publishMavenCentral
```



33 changes: 0 additions & 33 deletions QUICKSTART.md

This file was deleted.

Loading