You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-2Lines changed: 9 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,16 +17,23 @@ or if we want to build the entire repository with Integration Tests enabled, we
17
17
18
18
This should not be needed often as we are usually concerned with a specific module.
19
19
20
+
To build the modules that use Gradle, use the command:
21
+
`mvn clean install -Pgradle-modules`
22
+
This compiles and runs the tests in all the Gradle submodules using the maven-exec plugin.
23
+
20
24
21
25
Building a single module
22
26
====================
23
-
To build a specific module run the command: `mvn clean install` in the module directory.
27
+
To build a specific Maven module run the command: `mvn clean install` in the module directory.
28
+
29
+
To build an individual gradle sub-modules use the `gradlew` command:
30
+
`./gradlew build` or `./gradlew test`.
24
31
25
32
26
33
Working with the IDE
27
34
====================
28
35
This repo contains a large number of modules.
29
-
When you're working with an individual module, there's no need to import all of them (or build all of them) - you can simply import that particular module in either Eclipse or IntelliJ.
36
+
When you're working with an individual module, there's no need to import all of them (or build all of them) - you can simply import that particular module in your IDE.
0 commit comments