Skip to content

Commit

Permalink
Add SBT to Getting Started
Browse files Browse the repository at this point in the history
  • Loading branch information
gdude2002 committed Jul 11, 2024
1 parent 4aecedb commit acaee3b
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions Writerside/topics/core/Getting-Started.topic
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,33 @@
</dependencies>
</code-block>
</tab>

<tab group-key="sbt" title="SBT">
<warning>
<p>
Kord Extensions is developed using Gradle, and none of the developers are familiar with SBT.
</p>
<p>
While Gradle is highly recommended, if you do decide to use SBT, we'd appreciate feedback
on the below instructions —
especially if corrections or more detail is required.
</p>
</warning>
<p>
Add the following to your <code>build.sbt</code>.
For more information, see
<a href="https://github.com/pfn/kotlin-plugin">the Kotlin SBT plugin</a>.
</p>
<br/>

<code-block lang="scala">
resolvers += Resolver.sonatypeOssRepos("snapshots")

libraryDependencies ++= Seq(
"com.kotlindiscord.kord.extensions" % "kord-extensions" % "%version%"
)
</code-block>
</tab>
</tabs>
</chapter>
</topic>

0 comments on commit acaee3b

Please sign in to comment.