Skip to content
This repository has been archived by the owner on Sep 14, 2022. It is now read-only.

Commit

Permalink
Merge pull request #65 from swagger-api/cleanup
Browse files Browse the repository at this point in the history
Cleanup
  • Loading branch information
frantuma authored Dec 7, 2019
2 parents b86989d + b08d0d6 commit 4e73a63
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ scala:
- 2.10.6
- 2.11.12
- 2.12.6
- 2.13.0
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ This project is compatible with [swagger-core](https://github.com/swagger-api/sw
To enable the swagger-scala-module, include the appropriate version in your project:

```
"io.swagger" %% "swagger-scala-module" % "1.0.3"
"io.swagger" %% "swagger-scala-module" % "1.0.6-SNAPSHOT"
```

Which will include the proper cross-publish version of swagger-scala-module.
Expand Down Expand Up @@ -66,6 +66,10 @@ See the guide on [getting started with swagger](http://swagger.io) to get starte
sbt publishLocal
```

## Security contact

Please disclose any security-related issues or vulnerabilities by emailing [[email protected]](mailto:[email protected]), instead of using the public issue tracker.

License
-------

Expand Down
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ import Defaults._

organization := "io.swagger"

version := "1.0.5"
version := "1.0.6-SNAPSHOT"

scalaVersion := "2.11.12"

crossScalaVersions := Seq("2.10.6", scalaVersion.value, "2.12.6")
crossScalaVersions := Seq("2.10.6", scalaVersion.value, "2.12.6", "2.13.0")

organizationHomepage in ThisBuild := Some(url("http://swagger.io"))

Expand All @@ -24,9 +24,9 @@ pomIncludeRepository := { x => false }

libraryDependencies ++= Seq(
"org.scala-lang" % "scala-reflect" % scalaVersion.value,
"io.swagger" % "swagger-core" % "1.5.22",
"org.scalatest" %% "scalatest" % "3.0.5" % "test",
"com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.9.8",
"io.swagger" % "swagger-core" % "1.5.24",
"org.scalatest" %% "scalatest" % "3.0.8" % "test",
"com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.9.10",
"junit" % "junit" % "4.12" % "test"
)

Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.1.2
sbt.version=1.2.8

0 comments on commit 4e73a63

Please sign in to comment.