wiki/onboarding.md
... ...
@@ -105,18 +105,18 @@ To deploy an Android project (for example com.sap.sailing.racecommittee.app) to
105 105
4. The app should be started after deployment
106 106
107 107
####Stepps to consider for using other modules
108
-=> For Eclipse Build
109
- - MANIFEST.MF , add module names unter dependencies
110
- - *.gwt.xml , add "<inherits name="-modulename-.-gwt.xml file name-" />"
111
- - In DebugConfigurations => Classpaths, Add Sourcefolder where classes are you want to user from the module
112
-=> For Maven Build
113
- - pom.xml , Add Dependency to used module ie.
114
- <dependency>
115
- <groupId>com.sap.sailing</groupId>
116
- <artifactId>com.sap.sailing.domain.common</artifactId>
117
- <version>1.0.0-SNAPSHOT</version>
118
- <classifier>sources</classifier>
119
- </dependency>
108
+1. For Eclipse Build
109
+ * MANIFEST.MF , add module names unter dependencies
110
+ * *.gwt.xml , add "<inherits name="-modulename-.-gwt.xml file name-" />"
111
+ * In DebugConfigurations => Classpaths, Add Sourcefolder where classes are you want to user from the module
112
+2. For Maven Build
113
+ * pom.xml , Add Dependency to used module ie.
114
+<dependency>
115
+<groupId>com.sap.sailing</groupId>
116
+<artifactId>com.sap.sailing.domain.common</artifactId>
117
+<version>1.0.0-SNAPSHOT</version>
118
+<classifier>sources</classifier>
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