Skip to content

Commit 78dfd9a

Browse files
committed
Release to jitpack.
1 parent bd6fd7b commit 78dfd9a

File tree

3 files changed

+33
-1
lines changed

3 files changed

+33
-1
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ deploy:
1515
file:
1616
- "${FILE_TO_UPLOAD}"
1717
skip_cleanup: true
18+
overwrite: true
1819
on:
1920
repo: majusko/grpc-jwt-spring-boot-starter
2021
tags: true

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Spring boot starter for [gRPC framework](https://grpc.io/) with [JWT authorization](https://jwt.io/)
22

3+
[![Release](https://jitpack.io/v/majusko/grpc-jwt-spring-boot-starter.svg)](https://jitpack.io/#majusko/grpc-jwt-spring-boot-starter)
34
[![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)
45
[![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)
56

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

1415
#### 1. Add Maven dependency
1516

17+
```xml
18+
<repositories>
19+
<repository>
20+
<id>jitpack.io</id>
21+
<url>https://jitpack.io</url>
22+
</repository>
23+
</repositories>
24+
```
25+
1626
```xml
1727
<dependency>
1828
<groupId>io.github.majusko</groupId>

pom.xml

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>io.github.majusko</groupId>
66
<artifactId>grpc-jwt-spring-boot-starter</artifactId>
7-
<version>0.0.3-SNAPSHOT</version>
7+
<version>1.0.0</version>
88
<name>grpc-jwt-spring-boot-starter</name>
99
<description>JWT Auth for your Grpc Spring Boot project</description>
1010

@@ -153,4 +153,25 @@
153153
</plugin>
154154
</plugins>
155155
</build>
156+
157+
<licenses>
158+
<license>
159+
<name>Apache License, Version 2.0</name>
160+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
161+
<distribution>repo</distribution>
162+
</license>
163+
</licenses>
164+
165+
<scm>
166+
<connection>scm:git:https://github.com/majusko/grpc-jwt-spring-boot-starter.git</connection>
167+
<url>https://github.com/majusko/grpc-jwt-spring-boot-starter</url>
168+
</scm>
169+
170+
<developers>
171+
<developer>
172+
<name>Mario Kapusta</name>
173+
<email>mariokapustaa@gmail.com</email>
174+
<organizationUrl>https://github.com/majusko</organizationUrl>
175+
</developer>
176+
</developers>
156177
</project>

0 commit comments

Comments
 (0)