mirror of
https://github.com/OpenBankProject/OBP-API.git
synced 2026-02-06 15:06:50 +00:00
docfix: intro sys doc .md table of contents
This commit is contained in:
parent
77234b38ca
commit
5ee2ae6b74
@ -638,6 +638,7 @@
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.eclipse.jetty</groupId>
|
||||
<artifactId>jetty-maven-plugin</artifactId>
|
||||
@ -645,21 +646,14 @@
|
||||
<configuration>
|
||||
<contextPath>/</contextPath>
|
||||
<scanIntervalSeconds>5</scanIntervalSeconds>
|
||||
<httpConnector>
|
||||
<port>8080</port>
|
||||
</httpConnector>
|
||||
<systemProperties>
|
||||
<systemProperty>
|
||||
<name>org.eclipse.jetty.server.HttpConfiguration.requestHeaderSize</name>
|
||||
<value>32768</value>
|
||||
</systemProperty>
|
||||
<systemProperty>
|
||||
<name>org.eclipse.jetty.server.HttpConfiguration.responseHeaderSize</name>
|
||||
<value>32768</value>
|
||||
</systemProperty>
|
||||
</systemProperties>
|
||||
<port>8080</port>
|
||||
|
||||
<!-- Jetty 9.4 plugin settings for max header size -->
|
||||
<requestHeaderSize>32768</requestHeaderSize>
|
||||
<responseHeaderSize>32768</responseHeaderSize>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-idea-plugin</artifactId>
|
||||
|
||||
@ -12,6 +12,16 @@
|
||||
1. [Executive Summary](#executive-summary)
|
||||
2. [System Architecture](#system-architecture)
|
||||
3. [Component Descriptions](#component-descriptions)
|
||||
- 3.1 [OBP-API (Core Server)](#31-obp-api-core-server)
|
||||
- 3.2 [API Explorer](#32-api-explorer)
|
||||
- 3.3 [API Manager](#33-api-manager)
|
||||
- 3.4 [Opey II (AI Agent)](#34-opey-ii-ai-agent)
|
||||
- 3.5 [OBP-OIDC (Development Provider)](#35-obp-oidc-development-provider)
|
||||
- 3.6 [Keycloak Integration (Production Provider)](#36-keycloak-integration-production-provider)
|
||||
- 3.7 [OBP-Hola](#37-obp-hola)
|
||||
- 3.8 [Connectors](#38-connectors)
|
||||
- 3.9 [Adapters](#39-adapters)
|
||||
- 3.10 [Message Docs](#310-message-docs)
|
||||
4. [Standards Compliance](#standards-compliance)
|
||||
5. [Installation and Configuration](#installation-and-configuration)
|
||||
6. [Authentication and Security](#authentication-and-security)
|
||||
@ -4704,7 +4714,3 @@ mvn clean package
|
||||
# Run
|
||||
java -jar target/OBP-API-Dispatch-1.0-SNAPSHOT-jar-with-dependencies.jar
|
||||
```
|
||||
|
||||
**Status:**
|
||||
|
||||
- Experimental
|
||||
|
||||
23
pom.xml
23
pom.xml
@ -220,26 +220,23 @@
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
|
||||
<plugin>
|
||||
<groupId>org.eclipse.jetty</groupId>
|
||||
<artifactId>jetty-maven-plugin</artifactId>
|
||||
<version>${jetty.version}</version>
|
||||
<configuration>
|
||||
<httpConnector>
|
||||
<port>8080</port>
|
||||
</httpConnector>
|
||||
<systemProperties>
|
||||
<systemProperty>
|
||||
<name>org.eclipse.jetty.server.HttpConfiguration.requestHeaderSize</name>
|
||||
<value>32768</value>
|
||||
</systemProperty>
|
||||
<systemProperty>
|
||||
<name>org.eclipse.jetty.server.HttpConfiguration.responseHeaderSize</name>
|
||||
<value>32768</value>
|
||||
</systemProperty>
|
||||
</systemProperties>
|
||||
<contextPath>/</contextPath>
|
||||
<scanIntervalSeconds>5</scanIntervalSeconds>
|
||||
<port>8080</port>
|
||||
|
||||
<!-- Jetty 9.4 plugin settings for max header size -->
|
||||
<requestHeaderSize>32768</requestHeaderSize>
|
||||
<responseHeaderSize>32768</responseHeaderSize>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-idea-plugin</artifactId>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user