David Pérez Carmona

Results 45 issues of David Pérez Carmona

## steps SBT 1.6.1, Java 17, Scala 2.13, Linux projectDependencies := Seq(many jars listed) ## problem SBT complains ``` > update [info] Updating [info] Resolved dependencies [warn] [warn] Note: Unresolved...

Bug

I have an `inputTask` defined in this way: ``` scala val taskA = inputTask[Unit]("Task A") taskA := { println("Task A") } ``` and both the `inspect taskA` and `help taskA`...

uncategorized

## steps SBT 1.6.1 ``` set offline := true update ``` ## problem I don't have connectivity with my VPN, so `update` hangs when trying to access some dependencies in...

Bug

After migrating to SBT 1.3.0 from 1.1.4, here is the result of running: packCopyDependencies java.nio.file.FileAlreadyExistsException: /home/dd/rds/servision/src/main/webapp/WEB-INF/lib/jt-utils-1.5.0.jar The cause is that tries to create a symbolic link for the same dependency...

Some years ago, I added the capability to this plugin to check for duplicated dependencies. Now I see that this feature isn't integrated. I can provide it again and make...

My need: To copy `*.jar` of a webapp called `myproject` to `WEB-INF/lib` The `pack` task doesn't work because it creates a `bin` and a `lib` folders, and other stuff. I've...

I'm trying to do `myproject/pack`, but I don't want `myproject.jar` to be included. All the dependencies of `myproject.jar` must be included. The cause is that I prefer to use `WEB-INF/classes`...

I'm trying to do `myproject/pack`, but I don't want `myproject.jar` to be included. All the dependencies of `myproject.jar` must be included. The cause is that I prefer to use `WEB-INF/classes`...

I have this schema: ``` scala lazy val C = project .dependsOn(A, B).settings( (projectID in A).value exclude("commons-logging", "commons-logging"), (projectID in B).value exclude("commons-logging", "commons-logging") exclude("commons-codec", "commons-codec"), .... ) ``` But `sbt-pack`...

Currently only one column can be chosen. With current tools, I think it should be easy to implement. As an example, you can look at Quod Libet

enhancement