Skip to content

Commit

Permalink
Release to jitpack.
Browse files Browse the repository at this point in the history
  • Loading branch information
majusko committed Nov 9, 2019
1 parent bd6fd7b commit 78dfd9a
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ deploy:
file:
- "${FILE_TO_UPLOAD}"
skip_cleanup: true
overwrite: true
on:
repo: majusko/grpc-jwt-spring-boot-starter
tags: true
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Spring boot starter for [gRPC framework](https://grpc.io/) with [JWT authorization](https://jwt.io/)

[![Release](https://jitpack.io/v/majusko/grpc-jwt-spring-boot-starter.svg)](https://jitpack.io/#majusko/grpc-jwt-spring-boot-starter)
[![Build Status](https://travis-ci.com/majusko/grpc-jwt-spring-boot-starter.svg?branch=master)](https://travis-ci.com/majusko/grpc-jwt-spring-boot-starter)
[![Test Coverage](https://codecov.io/gh/majusko/grpc-jwt-spring-boot-starter/branch/master/graph/badge.svg)](https://codecov.io/gh/majusko/grpc-jwt-spring-boot-starter/branch/master)

Expand All @@ -13,6 +14,15 @@ Simple start consist only from 3 simple steps.

#### 1. Add Maven dependency

```xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
```

```xml
<dependency>
<groupId>io.github.majusko</groupId>
Expand Down
23 changes: 22 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.majusko</groupId>
<artifactId>grpc-jwt-spring-boot-starter</artifactId>
<version>0.0.3-SNAPSHOT</version>
<version>1.0.0</version>
<name>grpc-jwt-spring-boot-starter</name>
<description>JWT Auth for your Grpc Spring Boot project</description>

Expand Down Expand Up @@ -153,4 +153,25 @@
</plugin>
</plugins>
</build>

<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<scm>
<connection>scm:git:https://github.com/majusko/grpc-jwt-spring-boot-starter.git</connection>
<url>https://github.com/majusko/grpc-jwt-spring-boot-starter</url>
</scm>

<developers>
<developer>
<name>Mario Kapusta</name>
<email>mariokapustaa@gmail.com</email>
<organizationUrl>https://github.com/majusko</organizationUrl>
</developer>
</developers>
</project>

0 comments on commit 78dfd9a

Please sign in to comment.