https://github.com/marcelcoding/nova
Nova is a framework on top of spring boot. It aims to provide nice additions to the spring ecosystem.
https://github.com/marcelcoding/nova
Last synced: 3 months ago
JSON representation
Nova is a framework on top of spring boot. It aims to provide nice additions to the spring ecosystem.
- Host: GitHub
- URL: https://github.com/marcelcoding/nova
- Owner: MarcelCoding
- License: agpl-3.0
- Created: 2020-05-21T18:29:34.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-08-09T23:20:06.000Z (about 1 year ago)
- Last Synced: 2025-07-07T08:11:54.815Z (3 months ago)
- Language: Java
- Homepage:
- Size: 1.28 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.adoc
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
= Nova
image:https://img.shields.io/github/v/tag/MarcelCoding/nova?label=latest%20version&style=flat-square[latest version,link=https://github.com/MarcelCoding/nova/releases]
image:https://img.shields.io/github/workflow/status/MarcelCoding/nova/CI?label=CI&style=flat-square[CI,link=https://github.com/MarcelCoding/nova/actions]Nova Framework is a framework on top of spring boot.
It aims to provide nice additions to the spring ecosystem.== Getting Started
To add it to your project just add this repository and thees dependencies.
To keep your bundle size small it is recommended to only add the modules witch you are need.
Dependencies between modules are resolved automatically.
Keep in mind that you still need a stand-alone spring boot application to start.
You can use the https://start.spring.io/[Spring Initializer].
Nova aims to provide out of the box compatibility for https://github.com/spring-projects-experimental/spring-native/[spring native].Currently, the latest version is:
image:https://img.shields.io/github/v/tag/MarcelCoding/nova?label=latest%20version&style=flat-square[latest version,link=https://github.com/MarcelCoding/nova/releases]
[source,groovy]
----
repositories {
mavenCentral {
content { excludeGroup('de.m4rc3l.nova') }
}
maven {
url 'https://mvn.m4rc3l.de'
content { includeGroup('de.m4rc3l.nova') }
}
}dependencies {
implementation 'de.m4rc3l.nova:nova-cdn:'
implementation 'de.m4rc3l.nova:nova-core:'
implementation 'de.m4rc3l.nova:nova-data-jpa:'
}
----== Contributing
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
See deployment for notes on how to deploy the project on a live system.=== Prerequisites
What things you need to install the software and how to install them
* a Java IDE (https://www.jetbrains.com/idea/[IntelliJ IDEA])
* https://adoptium.net/[JDK 18] or higher
* https://git-scm.com/[Git]=== Installing
A step by step series of examples that tell you how to get a development env running
[source,bash]
----
git clone https://github.com/MarcelCoding/nova.git
----Then you can open it with you IDE and start contributing.
== Built With
* https://gradle.org/[Gradle] - The build tool
* https://junit.org/[JUnit] - The test tool== License
|===
|Licenses|From 08.08.2020 link:LICENSE[AGPL v3]
|Upto 07.08.2020 https://github.com/MarcelCoding/nova/blob/9988969fdfdf69540b3cb54a04cd70b21457f1fc/LICENSE[MIT]
|===== Third Party Licenses
link:THIRD-PARTY-NOTICES[THIRD-PARTY-NOTICES]