Skip to content

Commit

Permalink
237 release 40 (#270)
Browse files Browse the repository at this point in the history
* 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
tommy-ocs authored Oct 2, 2024
1 parent 70ddb8f commit 39185dd
Show file tree
Hide file tree
Showing 90 changed files with 1,972 additions and 1,239 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,4 @@ dynamo-jpa/target
dynamo-spring/target
dynamo-vaadin/target
dynamo-frontend-export/frontend/
*.sh
13 changes: 13 additions & 0 deletions README.md
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._
20 changes: 19 additions & 1 deletion dynamo-angular/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,16 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>dynamo-angular</artifactId>
<packaging>jar</packaging>
<name>Dynamo Framework - Angular</name>
<name>Angular</name>
<description>Dynamo Framework Angular 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>
<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -52,6 +55,21 @@
<roots>dynamo,shared</roots>
</configuration>
</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>
28 changes: 28 additions & 0 deletions dynamo-angular/src/site/site.xml
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>
173 changes: 93 additions & 80 deletions dynamo-api/pom.xml
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>
47 changes: 47 additions & 0 deletions dynamo-api/src/site/site.xml
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>
49 changes: 0 additions & 49 deletions dynamo-documentation/media/logo-opencirclesolutions.svg

This file was deleted.

Loading

0 comments on commit 39185dd

Please sign in to comment.