wiki/onboarding.md
... ...
@@ -104,4 +104,19 @@ To deploy an Android project (for example com.sap.sailing.racecommittee.app) to
104 104
3. Select your attached device in the device selection screen
105 105
4. The app should be started after deployment
106 106
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>
120
+
121
+
107 122
See [RaceCommittee App](racecommittee-app) for more information regarding the mobile app.
... ...
\ No newline at end of file