File tree Expand file tree Collapse file tree 1 file changed +15
-4
lines changed Expand file tree Collapse file tree 1 file changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -118,14 +118,25 @@ Once you check out the code from GitHub, you can build it using Maven.
118
118
119
119
Note: The ` archetypes/archetype-lambda ` project requires that you have Python 3 in your path as ` python ` .
120
120
121
+ ### Build a Specific Service Module
122
+
123
+ This is the fastest option if you only need to build a certain sub-project like S3 or the DynamoDB Enhanced Client.
124
+
125
+ ``` sh
126
+ # Build a specific service module; Skip tests, checkstyles, findbugs, etc
127
+ mvn clean install -pl :s3 -P quick --am
128
+ ```
129
+
130
+ ### Build the Entire Project
131
+
132
+ Note that this can take quite a long time to complete.
133
+
121
134
``` sh
135
+ # Build the entire project
122
136
mvn clean install
123
137
124
- # Skip tests, checkstyles, findbugs, etc for quick build
138
+ # Build the entire project; Skip tests, checkstyles, findbugs, etc
125
139
mvn clean install -P quick
126
-
127
- # Build a specific service module
128
- mvn clean install -pl :s3 -P quick --am
129
140
```
130
141
131
142
### Code Generation
You can’t perform that action at this time.
0 commit comments