Skip to content

Commit ced0747

Browse files
committed
refs #1240 fix parent artifactId, fix path and jetty:run in README.md
1 parent d517291 commit ced0747

File tree

5 files changed

+1032
-10
lines changed

5 files changed

+1032
-10
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ This project is dual licensed under the AGPL V3 (see NOTICE) and commercial lice
3636

3737
The project uses Maven 3 as its build tool.
3838

39-
To compile and run jetty, install Maven 3, create your configuration in src/main/resources/props/default.props and execute:
39+
To compile and run jetty, install Maven 3, create your configuration in obp-api/src/main/resources/props/default.props and execute:
4040

41-
./mvn.sh install -pl obp-commons && ./mvn.sh jetty:run -pl obp-api
41+
./mvn.sh install -pl .,obp-commons && ./mvn.sh jetty:run -pl obp-api
4242

4343
## To run with IntelliJ IDEA
4444

@@ -64,7 +64,7 @@ To compile and run jetty, install Maven 3, create your configuration in src/main
6464

6565
* Now **Rebuild** the project so everything is compiled. At this point you may need to select the SDK, see above.
6666

67-
* Once you have rebuilt the project wihtout compile errors, you should be able to RunWebApp in src/test/scala
67+
* Once you have rebuilt the project wihtout compile errors, you should be able to RunWebApp in obp-api/src/test/scala
6868

6969
* Run RunWebApp by right clicking on it or selecting Run. The built in jetty server should start on localhost:8080
7070

@@ -153,7 +153,7 @@ Note: Your Java environment may need to be setup correctly to use SSL
153153

154154
Restart OBP-API, if you get an error, check your Java environment can connect to the host over SSL.
155155

156-
Note you can change the log level in /src/main/resources/default.logback.xml (try TRACE or DEBUG)
156+
Note you can change the log level in /obp-api/src/main/resources/default.logback.xml (try TRACE or DEBUG)
157157

158158
There is a gist / tool which is useful for this. Search the web for SSLPoke. Note this is an external repository.
159159

@@ -287,7 +287,7 @@ If Kafka connector is selected in props (connector=kafka), Kafka and Zookeeper h
287287

288288
* Configuration
289289

290-
* Edit the OBP-API/src/main/resources/props/default.props so that it contains the following lines. Please note that
290+
* Edit the OBP-API/obp-api/src/main/resources/props/default.props so that it contains the following lines. Please note that
291291
kafka.host is used by the producer and kafka.zookeeper_host is used by the consumer. This should be done on each node:
292292

293293
connector=kafka
@@ -466,7 +466,7 @@ You can obfuscate passwords in the props file the same way as for jetty:
466466
* db.url=OBF:fdsafdsakwaetcetcetc
467467

468468
## Rate Limiting
469-
We support rate limiting i.e functionality to limit calls per consumer key (App). Only `New Style Endpoins` support it. The list of they can be found at this fie: https://github.com/OpenBankProject/OBP-API/blob/develop/src/main/scala/code/api/util/NewStyle.scala.
469+
We support rate limiting i.e functionality to limit calls per consumer key (App). Only `New Style Endpoins` support it. The list of they can be found at this file: https://github.com/OpenBankProject/OBP-API/blob/develop/obp-api/src/main/scala/code/api/util/NewStyle.scala.
470470
There are two supported modes:
471471
* In-Memory
472472
* Redis

obp-api/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<modelVersion>4.0.0</modelVersion>
77
<parent>
88
<groupId>com.tesobe</groupId>
9-
<artifactId>obp-api-parent</artifactId>
9+
<artifactId>obp-parent</artifactId>
1010
<relativePath>../pom.xml</relativePath>
1111
<version>1.0</version>
1212
</parent>

obp-commons/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<parent>
77
<groupId>com.tesobe</groupId>
8-
<artifactId>obp-api-parent</artifactId>
8+
<artifactId>obp-parent</artifactId>
99
<relativePath>../pom.xml</relativePath>
1010
<version>1.0</version>
1111
</parent>

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<modelVersion>4.0.0</modelVersion>
66
<groupId>com.tesobe</groupId>
7-
<artifactId>obp-api-parent</artifactId>
7+
<artifactId>obp-parent</artifactId>
88
<version>1.0</version>
99
<packaging>pom</packaging>
1010
<name>Open Bank Project API Parent</name>
@@ -30,8 +30,8 @@
3030
</properties>
3131

3232
<modules>
33-
<module>obp-api</module>
3433
<module>obp-commons</module>
34+
<module>obp-api</module>
3535
</modules>
3636

3737
<repositories>

0 commit comments

Comments
 (0)