wiki/onboarding.md
... ...
@@ -107,16 +107,16 @@ To deploy an Android project (for example com.sap.sailing.racecommittee.app) to
107 107
####Stepps to consider for using other modules
108 108
1. For Eclipse Build
109 109
* MANIFEST.MF , add module names unter dependencies
110
- * *.gwt.xml , add "<inherits name="-modulename-.-gwt.xml file name-" />"
110
+ * *.gwt.xml , add `<inherits name="-modulename-.-gwt.xml file name-" />`
111 111
* In DebugConfigurations => Classpaths, Add Sourcefolder where classes are you want to user from the module
112 112
2. For Maven Build
113 113
* pom.xml , Add Dependency to used module ie.
114
-<dependency>
114
+`<dependency>
115 115
<groupId>com.sap.sailing</groupId>
116 116
<artifactId>com.sap.sailing.domain.common</artifactId>
117 117
<version>1.0.0-SNAPSHOT</version>
118 118
<classifier>sources</classifier>
119
-</dependency>
119
+</dependency>`
120 120
121 121
122 122
See [RaceCommittee App](racecommittee-app) for more information regarding the mobile app.
... ...
\ No newline at end of file