File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# This workflow will build a Java project with Maven
22# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
33
4- name : Java 8 CI
4+ name : Java 11 CI
55
66on :
77 pull_request :
1414
1515 steps :
1616 - uses : actions/checkout@v2
17- - name : Set up JDK 1.8
17+ - name : Set up JDK 11
1818 uses : actions/setup-java@v1
1919 with :
20- java-version : 1.8
20+ java-version : 11
2121 - name : Build with Maven
2222 run : mvn -f pom.xml package
Original file line number Diff line number Diff line change 22An implementation of the [ Decentralized Identifiers (DIDs) v1.0] ( https://www.w3.org/TR/did-core/ ) in Java.
33
44
5- [ ![ Java 8 CI] ( https://github.com/filip26/carbon-decentralized-identifiers/actions/workflows/java8 -build.yml/badge.svg )] ( https://github.com/filip26/carbon-decentralized-identifiers/actions/workflows/java8 -build.yml )
5+ [ ![ Java 11 CI] ( https://github.com/filip26/carbon-decentralized-identifiers/actions/workflows/java11 -build.yml/badge.svg )] ( https://github.com/filip26/carbon-decentralized-identifiers/actions/workflows/java11 -build.yml )
66[ ![ Maven Central] ( https://img.shields.io/maven-central/v/com.apicatalog/carbon-did.svg?label=Maven%20Central )] ( https://search.maven.org/search?q=g:com.apicatalog%20AND%20a:carbon-did )
77[ ![ License] ( https://img.shields.io/badge/License-Apache%202.0-blue.svg )] ( https://opensource.org/licenses/Apache-2.0 )
88
@@ -29,12 +29,16 @@ An implementation of the [Decentralized Identifiers (DIDs) v1.0](https://www.w3.
2929```
3030
3131#### Gradle
32- Android API Level >=24
32+
33+ Android 12+ (API Level >=32)
34+
3335
3436``` gradle
3537implementation("com.apicatalog:carbon-did:0.3.0")
3638```
3739
40+ Do you need to support an older Android version? [ Contact me] ( mailto:filip26@gmail.com )
41+
3842
3943### JSON-P Provider
4044
@@ -71,16 +75,10 @@ All PR's welcome!
7175
7276Fork and clone the project repository.
7377
74- #### Java 17
75- ``` bash
76- > cd carbon-decentralized-identifiers
77- > mvn clean package
78- ```
79-
80- #### Java 8
78+ #### Java 11+
8179``` bash
8280> cd carbon-decentralized-identifiers
83- > mvn -f pom_jre8 .xml clean package
81+ > mvn -f pom_jre .xml clean package
8482```
8583
8684## Resources-
Original file line number Diff line number Diff line change 77 <groupId >com.apicatalog</groupId >
88 <artifactId >carbon-did</artifactId >
99
10- <version >0.3.0 </version >
10+ <version >0.4.0-SNAPSHOT </version >
1111 <packaging >jar</packaging >
1212
1313 <url >https://github.com/filip26/carbon-decentralized-identifiers</url >
5353 <project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
5454 <argLine >-Dfile.encoding=UTF-8</argLine >
5555
56- <maven .compiler.target>1.8 </maven .compiler.target>
57- <maven .compiler.source>1.8 </maven .compiler.source>
56+ <maven .compiler.target>11 </maven .compiler.target>
57+ <maven .compiler.source>11 </maven .compiler.source>
5858
5959 <jakarta .json.version>2.0.1</jakarta .json.version>
6060
104104
105105 <dependency >
106106 <groupId >com.apicatalog</groupId >
107- <artifactId >titanium-json-ld-jre8 </artifactId >
107+ <artifactId >titanium-json-ld</artifactId >
108108 <version >${titanium.version} </version >
109109 <scope >test</scope >
110110 </dependency >
You can’t perform that action at this time.
0 commit comments