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-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-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/resources" 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$/web-frontend/src/main/java" charset="UTF-8" />
|
||||
<file url="file://$PROJECT_DIR$/web-frontend/src/main/resources" charset="UTF-8" />
|
||||
</component>
|
||||
</project>
|
||||
@@ -8,7 +8,7 @@
|
||||
<artifactId>productknowledge-parent</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>web-frontend</artifactId>
|
||||
<artifactId>client-web</artifactId>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
@@ -11,7 +11,6 @@
|
||||
|
||||
<artifactId>docs</artifactId>
|
||||
|
||||
<!-- ... existing code ... -->
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
@@ -29,6 +28,12 @@
|
||||
<attributes>
|
||||
<!-- Pfad-Helper, um auf Code in anderen Modulen zuzugreifen -->
|
||||
<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>
|
||||
</configuration>
|
||||
</execution>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
= Dokumentation für {project-name}
|
||||
Vorname Nachname <autor@example.com>
|
||||
Jens Bühring <jens.buehring@kapdion.com>
|
||||
:icons: font
|
||||
|
||||
== Einleitung
|
||||
@@ -7,4 +7,7 @@ Dies ist die zentrale Dokumentation für unser Jakarta EE & Spring Projekt.
|
||||
|
||||
== Module
|
||||
* *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>client-lib</module>
|
||||
<module>client-app</module>
|
||||
<module>web-frontend</module>
|
||||
<module>client-web</module>
|
||||
<module>docs</module>
|
||||
</modules>
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@
|
||||
<!-- warte auf web-frontend, damit die gebauten Seiten eingebettet werden können -->
|
||||
<dependency>
|
||||
<groupId>com.kapdion.pisano</groupId>
|
||||
<artifactId>web-frontend</artifactId>
|
||||
<artifactId>client-web</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<type>pom</type>
|
||||
<scope>provided</scope>
|
||||
|
||||
Reference in New Issue
Block a user