Skip to content

Commit bed8df5

Browse files
committed
Update readme after the split into multiple modules
See issue #1067
1 parent 99eee82 commit bed8df5

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,14 @@ repositories {
7272
maven {
7373
url "https://jitpack.io"
7474
content {
75-
includeGroup "com.github.gitlab4j"
75+
includeGroup "com.github.gitlab4j.gitlab4j-api"
7676
}
7777
}
7878
}
7979
8080
dependencies {
8181
// ...
82-
implementation 'com.github.gitlab4j:gitlab4j-api:main-SNAPSHOT'
82+
implementation 'com.github.gitlab4j.gitlab4j-api:gitlab4j-api:main-SNAPSHOT'
8383
// ...
8484
}
8585
```
@@ -96,7 +96,7 @@ dependencies {
9696

9797
<dependencies>
9898
<dependency>
99-
<groupId>com.github.gitlab4j</groupId>
99+
<groupId>com.github.gitlab4j.gitlab4j-api</groupId>
100100
<artifactId>gitlab4j-api</artifactId>
101101
<version>main-SNAPSHOT</version>
102102
</dependency>
@@ -109,7 +109,7 @@ dependencies {
109109
You just need to declare the dependency like this, instead of using the maven coordinates:
110110

111111
```java
112-
//DEPS https://github.com/gitlab4j/gitlab4j-api/tree/main#:SNAPSHOT
112+
//DEPS https://github.com/gitlab4j/gitlab4j-api/tree/main#gitlab4j-api:SNAPSHOT
113113
```
114114

115115
**Using a specific commit**
@@ -119,20 +119,20 @@ You can also point to a specific commit:
119119

120120
```gradle
121121
dependencies {
122-
implementation 'com.github.gitlab4j:gitlab4j-api:7dfec10189'
122+
implementation 'com.github.gitlab4j.gitlab4j-api:gitlab4j-api:ab6b84c6b0'
123123
}
124124
```
125125

126126
```xml
127127
<dependency>
128-
<groupId>com.github.gitlab4j</groupId>
128+
<groupId>com.github.gitlab4j.gitlab4j-api</groupId>
129129
<artifactId>gitlab4j-api</artifactId>
130-
<version>7dfec10189</version>
130+
<version>ab6b84c6b0</version>
131131
</dependency>
132132
```
133133

134134
```java
135-
//DEPS https://github.com/gitlab4j/gitlab4j-api/tree/7dfec10189cdcb11e34fc9ead984abcd6316194a
135+
//DEPS https://github.com/gitlab4j/gitlab4j-api/tree/ab6b84c6b096ea3079d25115a59c272a4ae602aa
136136
```
137137

138138
---

0 commit comments

Comments
 (0)