Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Deliganli committed Dec 21, 2020
1 parent afbb142 commit da9fd73
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
5 changes: 3 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ lazy val logging = (project in file("logging"))
lazy val common = Seq(
maintainer := "saitkocatas@gmail.com",
organization := "com.deliganli",
version := "0.1.0",
version := "0.1.1",
scalaVersion := "2.13.3",
scalacOptions ++= Seq("-deprecation", "-encoding", "UTF-8", "-language:higherKinds", "-language:postfixOps", "-feature"),
addCompilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.1"),
Expand All @@ -32,5 +32,6 @@ lazy val common = Seq(
lazy val deployment = Seq(
maintainer := "Sait Sami Kocatas",
packageSummary := "Command line program searches given query on maven",
executableScriptName := "mvns"
executableScriptName := "mvns",
mappings in Universal += (resourceDirectory in Compile).value / "reference.conf" -> "conf/reference.conf"
)
5 changes: 2 additions & 3 deletions scoop/mvns.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
{
"version": "0.1.0",
"version": "0.1.1",
"description": "Command line program searches given query on maven",
"homepage": "https://github.com/Deliganli/maven-search",
"bin": "bin/mvns.bat",
"extract_dir": "stage",
"checkver": "github",
"autoupdate": {
"architecture": {
Expand All @@ -20,7 +19,7 @@
},
"architecture": {
"64bit": {
"url": "https://github.com/Deliganli/maven-search/releases/download/0.1.0/mvns.zip",
"url": "https://github.com/Deliganli/maven-search/releases/download/0.1.1/mvns.zip",
"hash": "c0060590da6bef5b69f122eaeb898379c21fc391a7ac6119042206388129c567"
}
}
Expand Down
3 changes: 3 additions & 0 deletions src/main/resources/application.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
maven-search {
debug = true
}
8 changes: 4 additions & 4 deletions src/main/scala/com/deliganli/maven/search/cmd/package.scala
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@ package object cmd {
OParser.sequence(
programName("mvns"),
head("maven search", "0.1"),
arg[String]("<query string>")
.action((x, p) => p.copy(query = x))
.text("Query string to be searched in maven central"),
opt[Uri]("maven-uri")
.optional()
.action((x, p) => p.copy(mavenUri = x.some))
Expand All @@ -46,7 +43,10 @@ package object cmd {
opt[Boolean]('c', "clear-screen")
.optional()
.action((x, p) => p.copy(clearScreen = x.some))
.text("Clear screen on each navigation activity")
.text("Clear screen on each navigation activity"),
arg[String]("<query string>")
.action((x, p) => p.copy(query = x))
.text("Query string to be searched in maven central")
)
}
}

0 comments on commit da9fd73

Please sign in to comment.