File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,8 @@ val nixBuild = sys.props.isDefinedAt("nix")
10
10
val mantisDev = sys.props.get(" mantisDev" ).contains(" true" ) || sys.env.get(" MANTIS_DEV" ).contains(" true" )
11
11
12
12
def commonSettings (projectName : String ): Seq [sbt.Def .Setting [_]] = Seq (
13
- name := s " mantis- ${projectName}" ,
13
+ name := projectName,
14
+ organization := " io.iohk" ,
14
15
version := " 3.1.0" ,
15
16
scalaVersion := " 2.12.12" ,
16
17
// Scalanet snapshots are published to Sonatype after each build.
@@ -55,7 +56,7 @@ lazy val rlp = {
55
56
val rlp = project
56
57
.in(file(" rlp" ))
57
58
.configs(Integration )
58
- .settings(commonSettings(" rlp" ))
59
+ .settings(commonSettings(" mantis- rlp" ))
59
60
.settings(
60
61
libraryDependencies ++=
61
62
Dependencies .akkaUtil ++
@@ -128,13 +129,12 @@ lazy val node = {
128
129
buildInfoKeys := Seq [BuildInfoKey ](name, version, git.gitHeadCommit),
129
130
buildInfoPackage := " io.iohk.ethereum.utils"
130
131
)
131
- .settings(commonSettings(" node " ): _* )
132
+ .settings(commonSettings(" mantis " ): _* )
132
133
.settings(
133
134
libraryDependencies ++= dep
134
135
)
135
136
.settings(
136
- executableScriptName := " mantis" ,
137
- packageName in Universal := s " mantis- ${version.value}"
137
+ executableScriptName := name.value,
138
138
)
139
139
.settings(
140
140
inConfig(Integration )(
You can’t perform that action at this time.
0 commit comments