-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Generate site * Updated * Moved asciidoc stuff * Added license * Updates * Updated readme * Moved all documentation to src/docs/asciidoc in parent * Removed comments * Variables/attributes * Small tweaks to titles * Fixed typo * Fixed property references * Updated gitignore * Updated image paths * Updated documentation with additional styles * Added license * Tweaks to layout * Tweaks to layout * Fixed some small typo's * Updated some colors * Updated documentation * Updated documentation * Small tweak to reference * Renamed sections * Updates * Updated theme
- Loading branch information
Showing
90 changed files
with
1,972 additions
and
1,239 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,3 +59,4 @@ dynamo-jpa/target | |
dynamo-spring/target | ||
dynamo-vaadin/target | ||
dynamo-frontend-export/frontend/ | ||
*.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Dynamo | ||
|
||
<img src="./src/docs/asciidoc/media/logo-dynamo.png" alt="Dynamo" style="width:256px;"/> | ||
|
||
Dynamo: Web Application Accelerator Framework. | ||
|
||
Developed, maintained and sponsored by: | ||
|
||
<img src="./src/docs/asciidoc/media/logo-ocs.png" alt="Open Circle Solutions" style="width:256px;"/> | ||
|
||
See the [Dynamo Framework website](https://www.dynamoframework.org) for more information. | ||
|
||
_Copyright © 2014 - 2024 Open Circle Solutions BV._ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<project name="Dynamo Framework"> | ||
<body> | ||
<menu name="Documentation"> | ||
<item name="Reference" href="../../reference.html"/> | ||
<item name="Training" href="../../training.html"/> | ||
</menu> | ||
<menu ref="parent"/> | ||
<menu ref="modules"/> | ||
<menu ref="reports"/> | ||
</body> | ||
<skin> | ||
<groupId>org.apache.maven.skins</groupId> | ||
<artifactId>maven-fluido-skin</artifactId> | ||
<version>2.0.0-M10</version> | ||
</skin> | ||
<custom> | ||
<fluidoSkin> | ||
<topBarEnabled>true</topBarEnabled> | ||
<sideBarEnabled>false</sideBarEnabled> | ||
<topBarIcon> | ||
<name>Dynamo Framework</name> | ||
<alt>Dynamo Framework</alt> | ||
<src>../images/logo-dynamo.png</src> | ||
<href>../../index.html</href> | ||
</topBarIcon> | ||
</fluidoSkin> | ||
</custom> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,82 +1,95 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<artifactId>dynamo-api</artifactId> | ||
<packaging>jar</packaging> | ||
<name>Dynamo Framework - API</name> | ||
<description>Dynamo Framework API project.</description> | ||
<parent> | ||
<groupId>org.dynamoframework</groupId> | ||
<artifactId>dynamo-parent</artifactId> | ||
<version>4.0.0-SNAPSHOT</version> | ||
</parent> | ||
<dependencies> | ||
<dependency> | ||
<groupId>jakarta.persistence</groupId> | ||
<artifactId>jakarta.persistence-api</artifactId> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.querydsl</groupId> | ||
<artifactId>querydsl-jpa</artifactId> | ||
<classifier>jakarta</classifier> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.querydsl</groupId> | ||
<artifactId>querydsl-apt</artifactId> | ||
<classifier>jakarta</classifier> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.projectlombok</groupId> | ||
<artifactId>lombok</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-api</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.junit.jupiter</groupId> | ||
<artifactId>junit-jupiter</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>commons-io</groupId> | ||
<artifactId>commons-io</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<plugins> | ||
<!-- Enforce compile version. --> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
</plugin> | ||
<!-- Enforce coding Standards and Guidelines. --> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-checkstyle-plugin</artifactId> | ||
</plugin> | ||
<!-- Check for bugs. --> | ||
<plugin> | ||
<groupId>com.github.spotbugs</groupId> | ||
<artifactId>spotbugs-maven-plugin</artifactId> | ||
</plugin> | ||
<!-- Build Release. --> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-release-plugin</artifactId> | ||
</plugin> | ||
<!-- Code coverage. --> | ||
<plugin> | ||
<groupId>org.jacoco</groupId> | ||
<artifactId>jacoco-maven-plugin</artifactId> | ||
</plugin> | ||
<!-- QueryDSL code generation --> | ||
<plugin> | ||
<groupId>com.mysema.maven</groupId> | ||
<artifactId>apt-maven-plugin</artifactId> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<artifactId>dynamo-api</artifactId> | ||
<packaging>jar</packaging> | ||
<name>API</name> | ||
<description>Dynamo Framework API project.</description> | ||
<parent> | ||
<groupId>org.dynamoframework</groupId> | ||
<artifactId>dynamo-parent</artifactId> | ||
<version>4.0.0-SNAPSHOT</version> | ||
</parent> | ||
<properties> | ||
<stagingDirectory>../target/staging/maven</stagingDirectory> | ||
</properties> | ||
<dependencies> | ||
<dependency> | ||
<groupId>jakarta.persistence</groupId> | ||
<artifactId>jakarta.persistence-api</artifactId> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.querydsl</groupId> | ||
<artifactId>querydsl-jpa</artifactId> | ||
<classifier>jakarta</classifier> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.querydsl</groupId> | ||
<artifactId>querydsl-apt</artifactId> | ||
<classifier>jakarta</classifier> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.projectlombok</groupId> | ||
<artifactId>lombok</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-api</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.junit.jupiter</groupId> | ||
<artifactId>junit-jupiter</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>commons-io</groupId> | ||
<artifactId>commons-io</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-checkstyle-plugin</artifactId> | ||
</plugin> | ||
<plugin> | ||
<groupId>com.github.spotbugs</groupId> | ||
<artifactId>spotbugs-maven-plugin</artifactId> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-release-plugin</artifactId> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.jacoco</groupId> | ||
<artifactId>jacoco-maven-plugin</artifactId> | ||
</plugin> | ||
<plugin> | ||
<groupId>com.mysema.maven</groupId> | ||
<artifactId>apt-maven-plugin</artifactId> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.asciidoctor</groupId> | ||
<artifactId>asciidoctor-maven-plugin</artifactId> | ||
<version>${asciidoctor.maven.plugin.version}</version> | ||
<configuration> | ||
<skip>true</skip> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-site-plugin</artifactId> | ||
<configuration> | ||
<stagingDirectory>../target/staging/maven</stagingDirectory> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<!-- | ||
#%L | ||
Dynamo Framework | ||
%% | ||
Copyright (C) 2014 - 2024 Open Circle Solutions | ||
%% | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
#L% | ||
--> | ||
<project name="Dynamo Framework"> | ||
<body> | ||
<menu name="Documentation"> | ||
<item name="Reference" href="../../reference.html"/> | ||
<item name="Training" href="../../training.html"/> | ||
</menu> | ||
<menu ref="parent"/> | ||
<menu ref="modules"/> | ||
<menu ref="reports"/> | ||
</body> | ||
<skin> | ||
<groupId>org.apache.maven.skins</groupId> | ||
<artifactId>maven-fluido-skin</artifactId> | ||
<version>2.0.0-M10</version> | ||
</skin> | ||
<custom> | ||
<fluidoSkin> | ||
<topBarEnabled>true</topBarEnabled> | ||
<sideBarEnabled>false</sideBarEnabled> | ||
<topBarIcon> | ||
<name>Dynamo Framework</name> | ||
<alt>Dynamo Framework</alt> | ||
<src>../images/logo-dynamo.png</src> | ||
<href>../../index.html</href> | ||
</topBarIcon> | ||
</fluidoSkin> | ||
</custom> | ||
</project> |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.