Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/icon-project/javaee-scorex
scorex package for Java SCORE
https://github.com/icon-project/javaee-scorex
Last synced: 14 days ago
JSON representation
scorex package for Java SCORE
- Host: GitHub
- URL: https://github.com/icon-project/javaee-scorex
- Owner: icon-project
- Created: 2021-06-16T02:56:09.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-04-26T07:22:38.000Z (over 1 year ago)
- Last Synced: 2024-08-01T18:24:11.864Z (3 months ago)
- Language: Java
- Size: 96.7 KB
- Stars: 2
- Watchers: 6
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-icon - javaee-scorex - some useful Java classes that can be used as substitutes for some Java standard I/O and collections frameworks when you write ICON Java smart contracts (Execution environment)
README
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/foundation.icon/javaee-scorex/badge.svg)](https://search.maven.org/search?q=g:foundation.icon%20a:javaee-scorex)
# scorex package for Java SCORE
This repository contains some useful Java classes that can be used as substitutes for some Java standard I/O and collections frameworks when you write Java SCORE.
All classes are under `scorex` package namespace and can be mapped to the corresponding standard ones, e.g., you can use `scorex.util.ArrayList` instead of `java.util.ArrayList`.## Usage
You can include this package from [Maven Central](https://search.maven.org/search?q=g:foundation.icon%20a:javaee-scorex)
by adding the following dependency in your `build.gradle`.```groovy
implementation 'foundation.icon:javaee-scorex:0.5.4.1'
```## License
The code is custom modification of the OpenJDK source to support the sandbox environment,
thus the code follows the OpenJDK license, the GNU General Public License version 2 ("GPLv2").