forked from feathr-ai/feathr
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugins.sbt
More file actions
33 lines (29 loc) · 945 Bytes
/
Copy pathplugins.sbt
File metadata and controls
33 lines (29 loc) · 945 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "1.1.0")
/**
* Helps us publish the artifacts to sonatype, which in turn
* pushes to maven central.
*
* https://github.com/xerial/sbt-sonatype/releases
*/
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.5") //https://github.com/xerial/sbt-sonatype/releases
/**
*
* Signs all the jars, used in conjunction with sbt-sonatype.
*
* https://github.com/sbt/sbt-pgp/releases
*/
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2")
/*
This is an sbt plugin to help automate releases to Sonatype and Maven Central from GitHub Actions.
https://github.com/sbt/sbt-ci-release
*/
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10")
/**
*
* Supports more advanced dependency tree scripts
*
* ex.
* sbt dependencyTree -java-home /Library/Java/JavaVirtualMachines/adoptopenjdk-8.jdk/Contents/Home
* https://www.baeldung.com/scala/sbt-dependency-tree
*/
addDependencyTreePlugin