Skip to content

Commit

Permalink
Use custom domain name for dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mduesterhoeft committed Mar 5, 2021
1 parent 97f2131 commit b3eab11
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![](https://jitpack.io/v/moia-oss/lambda-kotlin-request-router.svg)](https://jitpack.io/#moia-oss/lambda-kotlin-request-router)
[![](https://jitpack.io/v/io.moia/lambda-kotlin-request-router.svg)](https://jitpack.io/#io.moia/lambda-kotlin-request-router)
[![Build Status](https://travis-ci.org/moia-oss/lambda-kotlin-request-router.svg?branch=master)](https://travis-ci.org/moia-oss/lambda-kotlin-request-router)
[![Coverage Status](https://coveralls.io/repos/github/moia-dev/lambda-kotlin-request-router/badge.svg?branch=master)](https://coveralls.io/github/moia-dev/lambda-kotlin-request-router?branch=master)
# lambda-kotlin-request-router
Expand Down Expand Up @@ -29,7 +29,7 @@ repositories {
}
dependencies {
implementation 'com.github.moia-oss.lambda-kotlin-request-router:router:0.9.7'
implementation 'io.moia.lambda-kotlin-request-router:router:0.9.7'
}
```
Expand Down Expand Up @@ -163,7 +163,7 @@ So we do no validation of the JWT token.
The module `router-protobuf` helps to ease implementation of handlers that receive and return protobuf messages.

```
implementation 'com.github.moia-dev.lambda-kotlin-request-router:router-protobuf:0.8.8'
implementation 'io.moia.lambda-kotlin-request-router:router-protobuf:0.9.7'
```

A handler implementation that wants to take advantage of the protobuf support should inherit from `ProtoEnabledRequestHandler`.
Expand Down Expand Up @@ -214,7 +214,7 @@ This library validates:
- ...

```
testImplementation 'com.github.moia-oss.lambda-kotlin-request-router:router-openapi-request-validator:0.9.7'
testImplementation 'io.moia.lambda-kotlin-request-router:router-openapi-request-validator:0.9.7'
```

```kotlin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation(kotlin("reflect"))

implementation("com.github.moia-dev.lambda-kotlin-request-router:router-protobuf:0.8.8")
implementation("io.moia.lambda-kotlin-request-router:router-protobuf:0.9.7")

implementation("com.amazonaws:aws-lambda-java-core:1.2.0")
implementation("com.amazonaws:aws-lambda-java-log4j2:1.1.0")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation(kotlin("reflect"))

implementation("com.github.moia-dev.lambda-kotlin-request-router:router:0.8.8")
implementation("io.moia.lambda-kotlin-request-router:router:0.9.7")

implementation("com.amazonaws:aws-lambda-java-core:1.2.0")
implementation("com.amazonaws:aws-lambda-java-log4j2:1.1.0")
Expand Down

0 comments on commit b3eab11

Please sign in to comment.