Skip to content
This repository has been archived by the owner on Jan 21, 2024. It is now read-only.

Commit

Permalink
Update plugins versions. Fix Java comments
Browse files Browse the repository at this point in the history
  • Loading branch information
postatum committed Dec 17, 2019
1 parent 02903b2 commit 6901e2b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "0.6.0")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.25")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "0.6.1")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.29")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.6.0")
addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.2.7")
addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "1.0.0")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.5")
Expand Down
22 changes: 11 additions & 11 deletions shared/src/main/scala/webapi/WebApiParser.scala
Original file line number Diff line number Diff line change
Expand Up @@ -360,12 +360,12 @@ object Oas20 {
}
}

/** **BETA** Provides methods for OAS 3.0 processing */
/** BETA. Provides methods for OAS 3.0 processing */
@JSExportAll
@JSExportTopLevel("WebApiParser.oas30")
object Oas30 {

/** **BETA** Parses OAS 3.0 JSON content from string or url.
/** BETA. Parses OAS 3.0 JSON content from string or url.
*
* @param urlOrContent File url/path or content string.
* @return Parsed WebApi Model (future).
Expand All @@ -380,7 +380,7 @@ object Oas30 {
}).asClient
}

/** **BETA** Parses OAS 3.0 JSON content from string with a custom API Doc location.
/** BETA. Parses OAS 3.0 JSON content from string with a custom API Doc location.
*
* @param content Content string to be parsed.
* @param baseUrl Location to assign to a doc parsed from a content string.
Expand All @@ -393,7 +393,7 @@ object Oas30 {
}).asClient
}

/** **BETA** Generates file with OAS 3.0 JSON content.
/** BETA. Generates file with OAS 3.0 JSON content.
*
* @param model Parsed WebApi Model to generate content from.
* @param url Path to the generated file.
Expand All @@ -404,7 +404,7 @@ object Oas30 {
}).asClient
}

/** **BETA** Generates string with OAS 3.0 JSON content.
/** BETA. Generates string with OAS 3.0 JSON content.
*
* @param model Parsed WebApi Model to generate content from.
* @return Generated string (future).
Expand All @@ -415,7 +415,7 @@ object Oas30 {
}).asClient
}

/** **BETA** Validates parsed OAS 3.0 model.
/** BETA. Validates parsed OAS 3.0 model.
*
* @param model Parsed WebApi Model to be validated.
* @return Validation report (future).
Expand All @@ -426,7 +426,7 @@ object Oas30 {
}).asClient
}

/** **BETA** Resolves parsed OAS 3.0 model.
/** BETA. Resolves parsed OAS 3.0 model.
*
* Resolution process includes resolving references to all types, libraries, etc.
*
Expand All @@ -442,7 +442,7 @@ object Oas30 {
}).asClient
}

/** **BETA** Parses OAS 3.0 YAML content from string or url.
/** BETA. Parses OAS 3.0 YAML content from string or url.
*
* @param urlOrContent File url/path or content string.
* @return Parsed WebApi Model (future).
Expand All @@ -457,7 +457,7 @@ object Oas30 {
}).asClient
}

/** **BETA** Parses OAS 3.0 YAML content from string with a custom API Doc location.
/** BETA. Parses OAS 3.0 YAML content from string with a custom API Doc location.
*
* @param content Content string to be parsed.
* @param baseUrl Location to assign to a doc parsed from a content string.
Expand All @@ -470,7 +470,7 @@ object Oas30 {
}).asClient
}

/** **BETA** Generates string with OAS 3.0 YAML content.
/** BETA. Generates string with OAS 3.0 YAML content.
*
* @param model Parsed WebApi Model to generate content from.
* @return Generated string (future).
Expand All @@ -481,7 +481,7 @@ object Oas30 {
}).asClient
}

/** **BETA** Generates file with OAS 3.0 YAML content.
/** BETA. Generates file with OAS 3.0 YAML content.
*
* @param model Parsed WebApi Model to generate content from.
* @param url Path to the generated file.
Expand Down

0 comments on commit 6901e2b

Please sign in to comment.