File tree 4 files changed +26
-10
lines changed
4 files changed +26
-10
lines changed Original file line number Diff line number Diff line change @@ -231,12 +231,20 @@ subprojects {
231
231
}
232
232
repositories {
233
233
maven {
234
- name = " GitHubPackages"
235
- url = uri(" https://maven.pkg.github.com/KeYProject/key" )
236
- credentials {
234
+ name = " GitlabPackages"
235
+ // url = uri("https://maven.pkg.github.com/KeYProject/key")
236
+ url " https://git.key-project.org/api/v4/projects/35/packages/maven"
237
+ credentials(HttpHeaderCredentials ) {
238
+ name = ' Private-Token'
239
+ value = System . getenv(" TOKEN" )
240
+ }
241
+ authentication {
242
+ header(HttpHeaderAuthentication )
243
+ }
244
+ /* credentials {
237
245
username = project.findProperty("gpr.user") ?: System.getenv("USERNAME")
238
246
password = project.findProperty("gpr.key") ?: System.getenv("TOKEN")
239
- }
247
+ }*/
240
248
}
241
249
}
242
250
}
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ compileJavacc {
39
39
doLast {
40
40
// Some manual overwriting of Token files needed
41
41
copy {
42
- from(" src/main/javacc/de/uka/ilkd//parser/schemajava/Token.java" )
42
+ from(" src/main/javacc/de/uka/ilkd/key /parser/schemajava/Token.java" )
43
43
into " $javaCCOutputDirMain /de/uka/ilkd/key/parser/schemajava/"
44
44
}
45
45
copy {
Original file line number Diff line number Diff line change 1
- DEPLOYURL=https://maven.pkg.github.com/KeYProject/key
1
+ # PROJECT 53 = key-public/key
2
+ DEPLOYURL=https://git.key-project.org/api/v4/projects/35/packages/maven
2
3
3
4
MVNDEPLOY=" mvn -s settings.xml deploy:deploy-file -DrepositoryId=gpr -Durl=$DEPLOYURL "
4
5
5
6
6
7
# recoderkey
7
- # $MVNDEPLOY -DpomFile=recoderKey.pom.xml -Dfile=../../key.core/lib/recoderkey.jar
8
+ $MVNDEPLOY -DpomFile=recoderKey.pom.xml -Dfile=../../key.core/lib/recoderkey.jar
8
9
9
10
# docking-frames-core
10
11
# $MVNDEPLOY -DpomFile=docking-frames-core.pom.xml -Dfile=../../key.ui/lib/docking-frames-core.jar
11
12
12
- $MVNDEPLOY -DpomFile=docking-frames-common.pom.xml -Dfile=../../key.ui/lib/docking-frames-common.jar
13
+ # docking-frames-common
14
+ # $MVNDEPLOY -DpomFile=docking-frames-common.pom.xml -Dfile=../../key.ui/lib/docking-frames-common.jar
Original file line number Diff line number Diff line change 5
5
<servers >
6
6
<server >
7
7
<id >gpr</id >
8
- <username >wadoon</username >
9
- <password >17f82842578a76ba27a29fd5f6f34a68b5a266ee</password >
8
+ <configuration >
9
+ <httpHeaders >
10
+ <property >
11
+ <name >Private-Token</name >
12
+ <value >Lk6PZsfupdf4jYZRvqKS</value >
13
+ </property >
14
+ </httpHeaders >
15
+ </configuration >
10
16
</server >
11
17
</servers >
12
18
</settings >
You can’t perform that action at this time.
0 commit comments