Skip to content

Commit 31ee306

Browse files
committed
Bump version
1 parent 64305f3 commit 31ee306

2 files changed

Lines changed: 22 additions & 4 deletions

File tree

pom.xml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<artifactId>
99
carbon-did</artifactId>
1010

11-
<version>0.9.0-SNAPSHOT</version>
11+
<version>0.10.0-SNAPSHOT</version>
1212
<packaging>jar</packaging>
1313

1414
<url>
@@ -73,6 +73,7 @@
7373
<!-- test resources -->
7474
<junit.version>5.11.3</junit.version>
7575
<titanium.version>1.4.1</titanium.version>
76+
7677
</properties>
7778
<dependencies>
7879
<dependency>
@@ -110,6 +111,14 @@
110111
<version>${jakarta.json.version}</version>
111112
<scope>test</scope>
112113
</dependency>
114+
115+
<!-- REMOVE-->
116+
<dependency>
117+
<groupId>com.apicatalog</groupId>
118+
<artifactId>titanium-json-ld</artifactId>
119+
<version>${titanium.version}</version>
120+
</dependency>
121+
113122
</dependencies>
114123

115124
<build>

src/main/java/com/apicatalog/controller/method/GenericMethodUri.java

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,19 @@
33
import java.net.URI;
44
import java.time.Instant;
55

6-
public record GenericMethodUri(
7-
URI id
8-
) implements VerificationMethod {
6+
public class GenericMethodUri implements VerificationMethod {
97

8+
protected final URI id;
9+
10+
public GenericMethodUri(URI id) {
11+
this.id = id;
12+
}
13+
14+
@Override
15+
public URI id() {
16+
return id;
17+
}
18+
1019
@Override
1120
public String type() {
1221
return null;

0 commit comments

Comments
 (0)