Junichi Kato

Results 3 comments of Junichi Kato

DIコンテナがなくても、プレゼンテーション層がインフラストラクチャ層に依存しないようにできますね。 ```kotlin package domain.task interface TaskRepository { fun findById(taskId: TaskId): Task } ``` ```kotlin package infrastructure.repository.task // インフラストラクチャ層のリポジトリ実装が依存するのはドメイン層のリポジトリI/F class TaskRepositoryOnMySQL : TaskRepository { // ... } ``` ```kotlin package use.case.task...

Dear Lukasz, Thank you for your question and for using this plugin. Your support is truly appreciated. A migration from Sonatype OSSRH to Sonatype Central Portal is currently in progress....

Regarding the workaround for the bug: I was able to avoid the Read Timeout by using the following command: `sbt -Dsun.net.client.defaultReadTimeout=60000 -v ci-release` This successfully circumvents the timeout issue.