Skip to content

Commit 3ef16bd

Browse files
Fix the document that fails parsing with mvn site (#253)
1 parent 797c297 commit 3ef16bd

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

wiki/markdown/running-eiffel-intelligence-frontend.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Eiffel Intelligence front-end release war files can be downloaded from Jitpack:
88
[jitpack.io](https://jitpack.io/#eiffel-community/eiffel-intelligence-frontend) and look for the
99
latest version. Now replace the latest version in the link below:
1010

11-
https://jitpack.io/com/github/eiffel-community/eiffel-intelligence-frontend/<version>/eiffel-intelligence-<version>.war
11+
https://jitpack.io/com/github/eiffel-community/eiffel-intelligence-frontend/{version}/eiffel-intelligence-{version}.war
1212

1313
## Running with maven command
1414

@@ -32,23 +32,23 @@ If running from source code, war file is generated and produced by maven command
3232

3333
mvn package -DskipTests
3434

35-
This command should produce a eiffel-intelligence-frontend-<version>.war file in target folder, target/eiffel-intelligence-frontend-<version>.war.
35+
This command should produce a eiffel-intelligence-frontend-{version}.war file in target folder, target/eiffel-intelligence-frontend-{version}.war.
3636

3737
War file is executed by following command and with default configuration:
3838

39-
java -jar eiffel-intelligence-frontend-<version>.war
39+
java -jar eiffel-intelligence-frontend-{version}.war
4040

4141
Own configuration can be provided with
4242

43-
java -jar eiffel-intelligence-frontend-<version>.war --spring.config.location=file:<path to own application.properties>
43+
java -jar eiffel-intelligence-frontend-{version}.war --spring.config.location=file:<path to own application.properties>
4444

4545
remember to keep the name of the properties file if you are a beginner to
4646
Spring. More advanced Spring user can look [here](https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-external-config.html)
4747
for more information about using external configuration.
4848

4949
If only few properties need to be overriden, then use Java opts, for example
5050

51-
java -jar eiffel-intelligence-frontend-<version>.war -Dspring.data.mongodb.port=27019
51+
java -jar eiffel-intelligence-frontend-{version}.war -Dspring.data.mongodb.port=27019
5252

5353

5454
## Running in Tomcat instance
@@ -57,9 +57,9 @@ To run Eiffel Intelligence front-end in Tomcat, the war file must be put into th
5757

5858
(catalina home)/webapp/
5959

60-
If Eiffel Intelligence front-end should be run without any context-path in the url address, then overwrite ROOT.war file in webapp folder with eiffel-intelligence-frontend-<version>.war file:
60+
If Eiffel Intelligence front-end should be run without any context-path in the url address, then overwrite ROOT.war file in webapp folder with eiffel-intelligence-frontend-{version}.war file:
6161

62-
cp eiffel-intelligence-frontend-<version>.war (catalina home)/webapp/ROOT.war
62+
cp eiffel-intelligence-frontend-{version}.war (catalina home)/webapp/ROOT.war
6363

6464
Remove "ROOT" folder in webapp folder:
6565

0 commit comments

Comments
 (0)