Skip to content

Commit

Permalink
Merge pull request #6 from npoctaswampy/master
Browse files Browse the repository at this point in the history
Removing old build information
  • Loading branch information
csotherden authored Jul 8, 2020
2 parents 6a460ef + cd55fb5 commit b32cc48
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 38 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ authentikat-jwt
===============

![Build Status](https://travis-ci.org/jasongoodwin/authentikat-jwt.svg?branch=master)
![Current Version](https://img.shields.io/badge/version-0.4.5-brightgreen.svg?style=flat "0.4.5")
![Current Version](https://img.shields.io/badge/version-0.4.6-brightgreen.svg?style=flat "0.4.6")
[![Apache 2.0 License](https://img.shields.io/badge/license-Apache%202-blue.svg)](LICENSE)
[![Known Vulnerabilities](https://snyk.io/test/github/benjaminjacobberg/authentikat-jwt/badge.svg?targetFile=build.sbt)](https://snyk.io/test/github/benjaminjacobberg/authentikat-jwt?targetFile=build.sbt)
[![Join the chat at https://gitter.im/jasongoodwin/authentikat-jwt](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/jasongoodwin/authentikat-jwt?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
Expand All @@ -13,9 +13,9 @@ Summary
A simple claims based JWT implementation for Scala.
JWT - pronounced 'jot' - is a claims-based authentication standard.

0.4.5
0.4.6
=====
Please update to 0.4.5 as soon as possible. Previous versions may be vulnerable to injection in cases where user controls values in the claims.
Please update to 0.4.6 as soon as possible. Previous versions may be vulnerable to injection in cases where user controls values in the claims.

1.0.0 Milestone Status
======================
Expand Down Expand Up @@ -219,4 +219,4 @@ Or create a test with a known correct JWT :)
Licensing
=========

See attached [LICENSE](LICENSE) file. Apache2 licenced.
See attached [LICENSE](LICENSE) file. Apache2 licenced.
35 changes: 1 addition & 34 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -27,46 +27,13 @@ resolvers ++= Seq(

publishMavenStyle := true

publishTo := {
val nexus = "https://oss.sonatype.org/"
if (isSnapshot.value)
Some("snapshots" at nexus + "content/repositories/snapshots")
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
}

publishArtifact in Test := false

pomIncludeRepository := { _ => false }

pomExtra := (
<url>http://github.com/jason-goodwin.com/authentikat-jwt</url>
<licenses>
<license>
<name>Apache2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>git@github.com:jasongoodwin/authentikat-jwt.git</url>
<connection>scm:git:git@github.com:jasongoodwin/authentikat-jwt.git</connection>
</scm>
<developers>
<developer>
<id>jasongoodwin</id>
<name>Jason Goodwin</name>
<url>http://refactoringfactory.wordpress.com</url>
</developer>
</developers>)

credentials += Credentials("Sonatype Nexus Repository Manager",
"oss.sonatype.org",
"<your username>",
"<your password>")


bintrayOrganization := Some("signalpath")
bintrayRepository := "scala"

licenses += ("Apache-2.0", url("http://www.apache.org/licenses/LICENSE-2.0.html"))

0 comments on commit b32cc48

Please sign in to comment.