Skip to content

Commit

Permalink
chore: Update dependency module name
Browse files Browse the repository at this point in the history
update dependency module name from did-datamodel-server-1.0.0.jar to did-datamodel-sdk-server-1.0.0.jar
  • Loading branch information
jhkim5981 committed Oct 11, 2024
1 parent 4e49188 commit ed994cc
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 35 deletions.
34 changes: 17 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ did-blockchain-sdk-server
├── CHANGELOG.md
├── CLA.md
├── CODE_OF_CONDUCT.md
├── LICENSE.dependencies.md
├── LICENSE-dependencies.md
├── CONTRIBUTING.md
├── MAINTAINERS.md
├── README.md
Expand All @@ -33,29 +33,29 @@ did-blockchain-sdk-server
```


| Name | Description |
| -------------------------- | ------------------------------------------------|
| CHANGELOG.md | Version-specific changes in the project |
| CLA.md | Contributor License Agreement |
| CODE_OF_CONDUCT.md | Code of conduct for contributors |
| CONTRIBUTING.md | Contribution guidelines and procedures |
| LICENSE.dependencies.md | Licenses for the project’s dependency libraries |
| MAINTAINERS.md | General guidelines for maintaining |
| README.md | Overview and description of the project |
| RELEASE-PROCESS.md | Release process |
| SECURITY.md | Security policy and vulnerability reporting |
| docs | Documentation |
| ┖ api | API guide documentation |
| source | SDK source code project |
| Name | Description |
|-------------------------| ------------------------------------------------|
| CHANGELOG.md | Version-specific changes in the project |
| CLA.md | Contributor License Agreement |
| CODE_OF_CONDUCT.md | Code of conduct for contributors |
| CONTRIBUTING.md | Contribution guidelines and procedures |
| LICENSE-dependencies.md | Licenses for the project’s dependency libraries |
| MAINTAINERS.md | General guidelines for maintaining |
| README.md | Overview and description of the project |
| RELEASE-PROCESS.md | Release process |
| SECURITY.md | Security policy and vulnerability reporting |
| docs | Documentation |
| ┖ api | API guide documentation |
| source | SDK source code project |

<br>

## Libraries
Libraries can be found in the `release` folder.
1. Copy the `did-datamodel-server-1.0.0.jar` file into the project's `libs` directory.
1. Copy the `did-datamodel-sdk-server-1.0.0.jar` file into the project's `libs` directory.
2. Add the following dependencies to the project's `build.gradle` file:
```groovy
implementation files('libs/did-datamodel-server-1.0.0.jar')
implementation files('libs/did-datamodel-sdk-server-1.0.0.jar')
implementation('org.hyperledger.fabric:fabric-gateway-java:2.2.9')
implementation('com.fasterxml.jackson.core:jackson-databind:2.15.2')
implementation('org.apache.commons:commons-pool2:2.12.0')
Expand Down
34 changes: 17 additions & 17 deletions README_ko.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ did-blockchain-sdk-server
├── CHANGELOG.md
├── CLA.md
├── CODE_OF_CONDUCT.md
├── LICENSE.dependencies.md
├── LICENSE-dependencies.md
├── CONTRIBUTING.md
├── MAINTAINERS.md
├── README.md
Expand All @@ -32,29 +32,29 @@ did-blockchain-sdk-server
└── src
```

| 이름 | 역할 |
| -------------------------- | ------------------------------------------ |
| CHANGELOG.md | 프로젝트 버전별 변경사항 |
| CLA.md | Contributor License Agreement |
| CODE_OF_CONDUCT.md | 기여자의 행동강령 |
| CONTRIBUTING.md | 기여 절차 및 방법 |
| LICENSE.dependencies.md | 프로젝트 의존성 라이브러리에 대한 라이선스 |
| MAINTAINERS.md | 유지관리 가이드 |
| README.md | 프로젝트의 전체적인 개요 설명 |
| RELEASE-PROCESS.md | 릴리즈 절차 |
| SECURITY.md | 보안취약점 보고 및 보안정책 |
| docs | 문서 |
| ┖ api | API 가이드 문서 |
| source | SDK 소스코드 프로젝트 |
| 이름 | 역할 |
|-------------------------| ------------------------------------------ |
| CHANGELOG.md | 프로젝트 버전별 변경사항 |
| CLA.md | Contributor License Agreement |
| CODE_OF_CONDUCT.md | 기여자의 행동강령 |
| CONTRIBUTING.md | 기여 절차 및 방법 |
| LICENSE-dependencies.md | 프로젝트 의존성 라이브러리에 대한 라이선스 |
| MAINTAINERS.md | 유지관리 가이드 |
| README.md | 프로젝트의 전체적인 개요 설명 |
| RELEASE-PROCESS.md | 릴리즈 절차 |
| SECURITY.md | 보안취약점 보고 및 보안정책 |
| docs | 문서 |
| ┖ api | API 가이드 문서 |
| source | SDK 소스코드 프로젝트 |

<br>

## 라이브러리
라이브러리는 `release` 폴더에서 찾을 수 있습니다.
1. 프로젝트의 `libs``did-datamodel-server-1.0.0.jar` 파일을 복사합니다.
1. 프로젝트의 `libs``did-datamodel-sdk-server-1.0.0.jar` 파일을 복사합니다.
2. 프로젝트의 `build.gradle`에 아래 의존성을 추가합니다.
```groovy
implementation files('libs/did-datamodel-server-1.0.0.jar')
implementation files('libs/did-datamodel-sdk-server-1.0.0.jar')
implementation('org.hyperledger.fabric:fabric-gateway-java:2.2.9')
implementation('com.fasterxml.jackson.core:jackson-databind:2.15.2')
implementation('org.apache.commons:commons-pool2:2.12.0')
Expand Down
2 changes: 1 addition & 1 deletion source/did-blockchain-sdk-server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ repositories {
}

dependencies {
implementation files('libs/did-data-model-server-1.0.0.jar')
implementation files('libs/did-datamodel-sdk-server-1.0.0.jar')
implementation('org.hyperledger.fabric:fabric-gateway-java:2.2.9')
implementation('com.fasterxml.jackson.core:jackson-databind:2.15.2')
implementation('org.apache.commons:commons-pool2:2.12.0')
Expand Down

0 comments on commit ed994cc

Please sign in to comment.