Skip to content

Commit

Permalink
Merge pull request #25 from adhesivee/release/0.2.2
Browse files Browse the repository at this point in the history
Release/0.2.2
  • Loading branch information
adhesivee authored Sep 12, 2018
2 parents a4c4915 + c3b59a3 commit 6681d96
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 13 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ It encourages to adapt to existing implementations instead the other way around.
First define the version to be used and set it as a property
```xml
<properties>
<myndocs.oauth.version>0.2.1</myndocs.oauth.version>
<myndocs.oauth.version>0.2.2</myndocs.oauth.version>
</properties>
```

Expand All @@ -20,7 +20,7 @@ Include the following repository in order to download the artifacts
<repositories>
<repository>
<id>myndocs-oauth2</id>
<url>https://repo.myndocs.nl/repository/oauth2</url>
<url>https://dl.bintray.com/adhesivee/oauth2-server</url>
</repository>
</repositories>
```
Expand Down
2 changes: 1 addition & 1 deletion oauth2-server-client-inmemory/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>kotlin-oauth2-server</artifactId>
<groupId>nl.myndocs</groupId>
<version>0.2.1</version>
<version>0.2.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion oauth2-server-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>kotlin-oauth2-server</artifactId>
<groupId>nl.myndocs</groupId>
<version>0.2.1</version>
<version>0.2.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
3 changes: 2 additions & 1 deletion oauth2-server-http4k/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>kotlin-oauth2-server</artifactId>
<groupId>nl.myndocs</groupId>
<version>0.2.1</version>
<version>0.2.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -16,6 +16,7 @@
<groupId>org.http4k</groupId>
<artifactId>http4k-core</artifactId>
<version>3.37.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>nl.myndocs</groupId>
Expand Down
2 changes: 1 addition & 1 deletion oauth2-server-identity-inmemory/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>kotlin-oauth2-server</artifactId>
<groupId>nl.myndocs</groupId>
<version>0.2.1</version>
<version>0.2.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion oauth2-server-javalin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>kotlin-oauth2-server</artifactId>
<groupId>nl.myndocs</groupId>
<version>0.2.1</version>
<version>0.2.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion oauth2-server-json/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>kotlin-oauth2-server</artifactId>
<groupId>nl.myndocs</groupId>
<version>0.2.1</version>
<version>0.2.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion oauth2-server-ktor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>kotlin-oauth2-server</artifactId>
<groupId>nl.myndocs</groupId>
<version>0.2.1</version>
<version>0.2.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion oauth2-server-sparkjava/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>kotlin-oauth2-server</artifactId>
<groupId>nl.myndocs</groupId>
<version>0.2.1</version>
<version>0.2.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion oauth2-server-token-store-inmemory/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>kotlin-oauth2-server</artifactId>
<groupId>nl.myndocs</groupId>
<version>0.2.1</version>
<version>0.2.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
10 changes: 8 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>nl.myndocs</groupId>
<artifactId>kotlin-oauth2-server</artifactId>
<packaging>pom</packaging>
<version>0.2.1</version>
<version>0.2.2</version>

<properties>
<kotlin.version>1.2.60</kotlin.version>
Expand All @@ -32,6 +32,7 @@
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
<version>${kotlin.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
Expand Down Expand Up @@ -101,5 +102,10 @@
</plugins>
</build>


<distributionManagement>
<repository>
<id>kotlin-oauth2-server</id>
<url>https://api.bintray.com/maven/adhesivee/oauth2-server/kotlin-oauth2-server/;publish=1</url>
</repository>
</distributionManagement>
</project>

0 comments on commit 6681d96

Please sign in to comment.