|
| 1 | +# Run RemRem-Publish Applciation |
| 2 | + |
| 3 | +RemRem-Publish application can be executed with Maven command or with the maven built war file. |
| 4 | + |
| 5 | +## Requirements |
| 6 | + |
| 7 | +- Java |
| 8 | +- Maven |
| 9 | + |
| 10 | +## Run RemRem-Publish With Maven Command |
| 11 | + |
| 12 | +1. Change to service directory: |
| 13 | +`cd publish-service` |
| 14 | + |
| 15 | +2. Execute maven command to build and run RemRem-Publish: |
| 16 | +`mvn spring-boot:run` |
| 17 | + |
| 18 | + |
| 19 | +## Run RemRem-Publish With Java Command |
| 20 | + |
| 21 | +1. Go to RemRem-Publish git root directory |
| 22 | + |
| 23 | +2. Execute maven package command to build the RemRem-Publish war file: |
| 24 | +`mvn package -DskipTests` |
| 25 | + |
| 26 | +This will produce a war file in the "target" folder. |
| 27 | +The RemRem-Publish released war file can be downloaded from JitPack. |
| 28 | + |
| 29 | +3. Run RemRem-Publish application war file |
| 30 | +There is some alternatives to execute the war file with java command. |
| 31 | +`java -classpath publish-service/target/publish-service-2.0.26.war org.springframework.boot.loader.WarLauncher` |
| 32 | +or |
| 33 | +`java -jar publish-service/target/publish-service-2.0.26.war` |
| 34 | + |
| 35 | + |
| 36 | +Provide customized RemRem-Publish application.properties configuration via the spring.config.location java flag which need to be appended to the java command line: |
| 37 | +`-Dspring.config.location=/path/to/application.properties` |
| 38 | + |
| 39 | + |
| 40 | +## Override RemRem-Publish Eiffel Protocol Version |
| 41 | + |
| 42 | +Eiffel-RemRem Protocol versions is developed and released by Github project: |
| 43 | +https://github.com/eiffel-community/eiffel-remrem-semantics |
| 44 | + |
| 45 | +Eiffel-RemRem-Semantic versions is released in Jitpack and can be downloaded as jar file. |
| 46 | +Eiffel-Remrem-Semantic releases version jar files: |
| 47 | +https://jitpack.io/com/github/eiffel-community/eiffel-remrem-semantics |
| 48 | + |
| 49 | +Example of one Eiffel-Semantic-version Jitpack download url address: |
| 50 | +https://jitpack.io/com/github/eiffel-community/eiffel-remrem-semantics/2.2.1/eiffel-remrem-semantics-2.2.1.jar |
| 51 | + |
| 52 | +Eiffel-RemRem-Publish is released with a built-in eiffel-semantic protocol version which can be overridden with a different eiffel-semantic version by adding the external eiffel-semantic version jar file to classpath. |
| 53 | + |
| 54 | +Execute RemRem-Publish application with external eiffel-semantic version jar file to classpath: |
| 55 | +`java -classpath /path/to/protocol/eiffel-remrem-semantics-2.2.2.jar:publish-service/target/publish-service-2.0.26.war org.springframework.boot.loader.WarLauncher` |
| 56 | + |
| 57 | +Another alternative (works only with Java 8): |
| 58 | +`java -Djava.ext.dirs=/path/to/protocol/eiffel-remrem-semantics-2.2.2.jar -jar publish-service/target/publish-service-2.0.26.war` |
| 59 | + |
| 60 | +Go to http://localhost:8080/versions and "semanticsVersion" field should show the overridden eiffel-semantic version. |
| 61 | + |
0 commit comments