Modul Web nach client-web umbenannt.
This commit is contained in:
6
.idea/encodings.xml
generated
6
.idea/encodings.xml
generated
@@ -7,11 +7,13 @@
|
|||||||
<file url="file://$PROJECT_DIR$/client-app/src/main/resources" charset="UTF-8" />
|
<file url="file://$PROJECT_DIR$/client-app/src/main/resources" charset="UTF-8" />
|
||||||
<file url="file://$PROJECT_DIR$/client-lib/src/main/java" charset="UTF-8" />
|
<file url="file://$PROJECT_DIR$/client-lib/src/main/java" charset="UTF-8" />
|
||||||
<file url="file://$PROJECT_DIR$/client-lib/src/main/resources" charset="UTF-8" />
|
<file url="file://$PROJECT_DIR$/client-lib/src/main/resources" charset="UTF-8" />
|
||||||
|
<file url="file://$PROJECT_DIR$/client-web/src/main/java" charset="UTF-8" />
|
||||||
|
<file url="file://$PROJECT_DIR$/client-web/src/main/resources" charset="UTF-8" />
|
||||||
|
<file url="file://$PROJECT_DIR$/docs/src/main/java" charset="UTF-8" />
|
||||||
|
<file url="file://$PROJECT_DIR$/docs/src/main/resources" charset="UTF-8" />
|
||||||
<file url="file://$PROJECT_DIR$/server-app/src/main/java" charset="UTF-8" />
|
<file url="file://$PROJECT_DIR$/server-app/src/main/java" charset="UTF-8" />
|
||||||
<file url="file://$PROJECT_DIR$/server-app/src/main/resources" charset="UTF-8" />
|
<file url="file://$PROJECT_DIR$/server-app/src/main/resources" charset="UTF-8" />
|
||||||
<file url="file://$PROJECT_DIR$/src/main/java" charset="UTF-8" />
|
<file url="file://$PROJECT_DIR$/src/main/java" charset="UTF-8" />
|
||||||
<file url="file://$PROJECT_DIR$/src/main/resources" charset="UTF-8" />
|
<file url="file://$PROJECT_DIR$/src/main/resources" charset="UTF-8" />
|
||||||
<file url="file://$PROJECT_DIR$/web-frontend/src/main/java" charset="UTF-8" />
|
|
||||||
<file url="file://$PROJECT_DIR$/web-frontend/src/main/resources" charset="UTF-8" />
|
|
||||||
</component>
|
</component>
|
||||||
</project>
|
</project>
|
||||||
@@ -8,7 +8,7 @@
|
|||||||
<artifactId>productknowledge-parent</artifactId>
|
<artifactId>productknowledge-parent</artifactId>
|
||||||
<version>1.0-SNAPSHOT</version>
|
<version>1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>web-frontend</artifactId>
|
<artifactId>client-web</artifactId>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
@@ -11,7 +11,6 @@
|
|||||||
|
|
||||||
<artifactId>docs</artifactId>
|
<artifactId>docs</artifactId>
|
||||||
|
|
||||||
<!-- ... existing code ... -->
|
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
@@ -29,6 +28,12 @@
|
|||||||
<attributes>
|
<attributes>
|
||||||
<!-- Pfad-Helper, um auf Code in anderen Modulen zuzugreifen -->
|
<!-- Pfad-Helper, um auf Code in anderen Modulen zuzugreifen -->
|
||||||
<project-root>${project.basedir}/..</project-root>
|
<project-root>${project.basedir}/..</project-root>
|
||||||
|
<project-name>${project.parent.name}</project-name>
|
||||||
|
<project-version>${project.version}</project-version>
|
||||||
|
<project-root>${project.basedir}/..</project-root>
|
||||||
|
<revnumber>${project.version}</revnumber>
|
||||||
|
<revdate>${maven.build.timestamp}</revdate>
|
||||||
|
<source-highlighter>coderay</source-highlighter>
|
||||||
</attributes>
|
</attributes>
|
||||||
</configuration>
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
= Dokumentation für {project-name}
|
= Dokumentation für {project-name}
|
||||||
Vorname Nachname <autor@example.com>
|
Jens Bühring <jens.buehring@kapdion.com>
|
||||||
:icons: font
|
:icons: font
|
||||||
|
|
||||||
== Einleitung
|
== Einleitung
|
||||||
@@ -7,4 +7,7 @@ Dies ist die zentrale Dokumentation für unser Jakarta EE & Spring Projekt.
|
|||||||
|
|
||||||
== Module
|
== Module
|
||||||
* *api-definition*: Enthält die Api.
|
* *api-definition*: Enthält die Api.
|
||||||
* *Web*: Angular Frontend und REST-Controller.
|
* *server-app* Eine Server-Applikation, welche Beispielprodukte zur Verfügung stellt.
|
||||||
|
* *client-lib* Client-Library
|
||||||
|
* *client-app* Client-Java-App, verwendet Client-Library
|
||||||
|
* *client-web*: Angular Implementierung eines Clients
|
||||||
|
|||||||
2
pom.xml
2
pom.xml
@@ -17,7 +17,7 @@
|
|||||||
<module>server-app</module>
|
<module>server-app</module>
|
||||||
<module>client-lib</module>
|
<module>client-lib</module>
|
||||||
<module>client-app</module>
|
<module>client-app</module>
|
||||||
<module>web-frontend</module>
|
<module>client-web</module>
|
||||||
<module>docs</module>
|
<module>docs</module>
|
||||||
</modules>
|
</modules>
|
||||||
|
|
||||||
|
|||||||
@@ -27,7 +27,7 @@
|
|||||||
<!-- warte auf web-frontend, damit die gebauten Seiten eingebettet werden können -->
|
<!-- warte auf web-frontend, damit die gebauten Seiten eingebettet werden können -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.kapdion.pisano</groupId>
|
<groupId>com.kapdion.pisano</groupId>
|
||||||
<artifactId>web-frontend</artifactId>
|
<artifactId>client-web</artifactId>
|
||||||
<version>${project.version}</version>
|
<version>${project.version}</version>
|
||||||
<type>pom</type>
|
<type>pom</type>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
|
|||||||
Reference in New Issue
Block a user