@@ -72,14 +72,14 @@ repositories {
72
72
maven {
73
73
url "https://jitpack.io"
74
74
content {
75
- includeGroup "com.github.gitlab4j"
75
+ includeGroup "com.github.gitlab4j.gitlab4j-api "
76
76
}
77
77
}
78
78
}
79
79
80
80
dependencies {
81
81
// ...
82
- implementation 'com.github.gitlab4j:gitlab4j-api:main-SNAPSHOT'
82
+ implementation 'com.github.gitlab4j.gitlab4j-api :gitlab4j-api:main-SNAPSHOT'
83
83
// ...
84
84
}
85
85
```
@@ -96,7 +96,7 @@ dependencies {
96
96
97
97
<dependencies >
98
98
<dependency >
99
- <groupId >com.github.gitlab4j</groupId >
99
+ <groupId >com.github.gitlab4j.gitlab4j-api </groupId >
100
100
<artifactId >gitlab4j-api</artifactId >
101
101
<version >main-SNAPSHOT</version >
102
102
</dependency >
@@ -109,7 +109,7 @@ dependencies {
109
109
You just need to declare the dependency like this, instead of using the maven coordinates:
110
110
111
111
``` 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
113
113
```
114
114
115
115
** Using a specific commit**
@@ -119,20 +119,20 @@ You can also point to a specific commit:
119
119
120
120
``` gradle
121
121
dependencies {
122
- implementation 'com.github.gitlab4j:gitlab4j-api:7dfec10189 '
122
+ implementation 'com.github.gitlab4j.gitlab4j-api :gitlab4j-api:ab6b84c6b0 '
123
123
}
124
124
```
125
125
126
126
``` xml
127
127
<dependency >
128
- <groupId >com.github.gitlab4j</groupId >
128
+ <groupId >com.github.gitlab4j.gitlab4j-api </groupId >
129
129
<artifactId >gitlab4j-api</artifactId >
130
- <version >7dfec10189 </version >
130
+ <version >ab6b84c6b0 </version >
131
131
</dependency >
132
132
```
133
133
134
134
``` java
135
- // DEPS https://github.com/gitlab4j/gitlab4j-api/tree/7dfec10189cdcb11e34fc9ead984abcd6316194a
135
+ // DEPS https://github.com/gitlab4j/gitlab4j-api/tree/ab6b84c6b096ea3079d25115a59c272a4ae602aa
136
136
```
137
137
138
138
---
0 commit comments