Skip to content

Commit

Permalink
comments change
Browse files Browse the repository at this point in the history
  • Loading branch information
workingDog committed Dec 27, 2017
1 parent 7920dfd commit e4da4c9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ of attributes of the TAXII 2.0 server responses.

### Installation and packaging

To use the latest release add the following dependency to your build.sbt:
To use the latest release (from Maven Central) add the following dependency to your *build.sbt*:

libraryDependencies += "com.github.workingDog" %% "taxii2lib" % "0.2"

Expand All @@ -60,11 +60,11 @@ This will produce a jar file "taxii2lib_2.12-0.3-SNAPSHOT.jar" in the "./target/
for use in Scala applications.


To publish the libraries to your local (Ivy) repository, simply type:
To publish the libraries to your local repository, simply type:

sbt publishLocal

Then put this in your Scala app build.sbt file
Then put this in your Scala app *build.sbt* file

libraryDependencies += "com.github.workingDog" %% "taxii2lib" % "0.3-SNAPSHOT"

Expand All @@ -73,7 +73,7 @@ Then put this in your Scala app build.sbt file
See *build.sbt* for the code dependencies.

Note: Java Cryptography Extension (JCE) Unlimited Strength is needed for TLS-1.2 https connections.
With Java 1.8.0_152 (and above) to enable TLS-1.2 use the following code:
With Java 1.8.0_152 to enable TLS-1.2 use the following code at the start of your app:

Security.setProperty("crypto.policy", "unlimited")

Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/com/kodekutters/taxii/TaxiiProtocol.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import play.api.libs.json._
* [1] Trusted Automated Exchange of Intelligence Information (TAXII™) is an application layer protocol
* for the communication of cyber threat information in a simple and scalable manner.
*
* reference: https://oasis-open.github.io/cti-documentation/
* reference[1]: https://oasis-open.github.io/cti-documentation/
*/

sealed trait Taxii2
Expand Down

0 comments on commit e4da4c9

Please sign in to comment.