Skip to content

Commit 2e12f77

Browse files
committed
namespace updated and creds
1 parent c70196c commit 2e12f77

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
# GPG_PASSPHRASE - Passphrase for the GPG key
99
# PAT - Personal access token with repo scope (for pushing commits/tags)
1010
#
11-
name: IABGPP-Java Release
11+
name: IABGPP-DevJava Release
1212

1313
on:
1414
workflow_dispatch:
1515
inputs:
1616
version:
17-
description: 'The release version (e.g., 3.x.x)'
17+
description: 'The release version (e.g., 1.x.x)'
1818
required: true
1919
default: ''
2020

@@ -46,8 +46,8 @@ jobs:
4646
# Token from: https://central.sonatype.com/usertoken
4747
- name: Create settings.xml
4848
env:
49-
CENTRAL_TOKEN_USERNAME: ${{ secrets.CENTRAL_TOKEN_USERNAME }}
50-
CENTRAL_TOKEN_PASSWORD: ${{ secrets.CENTRAL_TOKEN_PASSWORD }}
49+
CENTRAL_TOKEN_USERNAME: KFFdn4
50+
CENTRAL_TOKEN_PASSWORD: 7Wa4UatigIhxhmTPZT4xmBWVxwuWu0CMm
5151
run: |
5252
mkdir -p ~/.m2
5353
cat > ~/.m2/settings.xml << EOF
@@ -57,8 +57,8 @@ jobs:
5757
<servers>
5858
<server>
5959
<id>central</id>
60-
<username>${CENTRAL_TOKEN_USERNAME}</username>
61-
<password>${CENTRAL_TOKEN_PASSWORD}</password>
60+
<username>KFFdn4</username>
61+
<password>7Wa4UatigIhxhmTPZT4xmBWVxwuWu0CMm</password>
6262
</server>
6363
</servers>
6464
</settings>

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ Encode/decode consent information with the IAB GPP Framework
66

77
#### Maven
88

9-
The official iabgpp java library is distributed through maven central. Please [search maven central](https://search.maven.org/search?q=g:com.iabgpp) for the current release version.
9+
The official iabgpp java library is distributed through maven central. Please [search maven central](https://search.maven.org/search?q=g:io.github.xdevanshux) for the current release version.
1010

1111
#### Decoding
1212

1313
```
1414
<dependency>
15-
<groupId>com.iabgpp</groupId>
15+
<groupId>io.github.xdevanshux</groupId>
1616
<artifactId>iabgpp-encoder</artifactId>
1717
<version>VERSION</version>
1818
</dependency>
@@ -39,7 +39,7 @@ Integer uspV1Notice = uspV1Section.getNotice();
3939

4040
```
4141
<dependency>
42-
<groupId>com.iabgpp</groupId>
42+
<groupId>io.github.xdevanshux</groupId>
4343
<artifactId>iabgpp-encoder</artifactId>
4444
<version>VERSION</version>
4545
</dependency>
@@ -78,13 +78,13 @@ List respectively. The `iabgpp-extras-jackson` library uses Jackson 2.10.3 to pa
7878

7979
```
8080
<dependency>
81-
<groupId>com.iabgpp</groupId>
81+
<groupId>io.github.xdevanshux</groupId>
8282
<artifactId>iabgpp-extras</artifactId>
8383
<version>VERSION</version>
8484
</dependency>
8585
8686
<dependency>
87-
<groupId>com.iabgpp</groupId>
87+
<groupId>io.github.xdevanshux</groupId>
8888
<artifactId>iabgpp-extras-jackson</artifactId>
8989
<version>VERSION</version>
9090
</dependency>

iabgpp-encoder/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66

77
<parent>
8-
<groupId>com.iabgpp</groupId>
8+
<groupId>io.github.xdevanshux</groupId>
99
<artifactId>iabgpp-core</artifactId>
1010
<version>3.2.5-SNAPSHOT</version>
1111
</parent>

iabgpp-extras-jackson/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<parent>
88
<artifactId>iabgpp-core</artifactId>
9-
<groupId>com.iabgpp</groupId>
9+
<groupId>io.github.xdevanshux</groupId>
1010
<version>3.2.5-SNAPSHOT</version>
1111
</parent>
1212

@@ -22,7 +22,7 @@
2222
</dependency>
2323

2424
<dependency>
25-
<groupId>com.iabgpp</groupId>
25+
<groupId>io.github.xdevanshux</groupId>
2626
<artifactId>iabgpp-extras</artifactId>
2727
<version>3.2.5-SNAPSHOT</version>
2828
</dependency>

iabgpp-extras/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66

77
<parent>
8-
<groupId>com.iabgpp</groupId>
8+
<groupId>io.github.xdevanshux</groupId>
99
<artifactId>iabgpp-core</artifactId>
1010
<version>3.2.5-SNAPSHOT</version>
1111
</parent>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

7-
<groupId>com.iabgpp</groupId>
7+
<groupId>io.github.xdevanshux</groupId>
88
<artifactId>iabgpp-core</artifactId>
99
<version>3.2.5-SNAPSHOT</version>
1010
<name>IAB GPP Core Library</name>

0 commit comments

Comments
 (0)