We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3556c0a commit 440209fCopy full SHA for 440209f
README.md
@@ -1,4 +1,33 @@
1
Example Maven multi-module project
2
===
3
4
+With multi-module projects the groupId becomes: com.github.User.Repo
5
+And artifactId remains the same as in the module's pom file.
6
7
+Module 1:
8
+```xml
9
+ <dependency>
10
+ <groupId>com.github.jitpack.maven-modular</groupId>
11
+ <artifactId>module1</artifactId>
12
+ <version>1.1</version>
13
+ </dependency>
14
+```
15
+
16
+Module 2:
17
18
19
20
+ <artifactId>module2</artifactId>
21
22
23
24
25
+To get both of them together use the usual repository syntax:
26
27
28
29
+ <groupId>com.github.jitpack</groupId>
30
+ <artifactId>maven-modular</artifactId>
31
32
33
0 commit comments