jesseeichar / scala-io

Repository for work on Scala Standard Library I/O components
http://jesseeichar.github.com/scala-io-doc
132 stars 36 forks source link

Published maven pom depends on two versions of parser-combinators #94

Open adamretter opened 10 years ago

adamretter commented 10 years ago

The POM file for scala-io-file_2.11 0.4.3 published to Maven central contains two dependencies on scala-parser-combinators, version 1.0.0 and 1.0.1. The main problem apart from the conflict is that 1.0.0 is not available in Maven Central.

<dependency>
  <groupId>org.scala-lang.modules</groupId>
  <artifactId>scala-parser-combinators_2.11</artifactId>
  <version>1.0.1</version>
</dependency>
<dependency>
  <groupId>org.scala-lang.modules</groupId>
  <artifactId>scala-parser-combinators_2.11</artifactId>
  <version>1.0.0</version>
</dependency>

See: http://search.maven.org/remotecontent?filepath=com/github/scala-incubator/io/scala-io-file_2.11/0.4.3/scala-io-file_2.11-0.4.3.pom

mikem commented 7 years ago

This has been fixed in scala-io-file_2.11-0.4.3-1. Updating my dependency to "com.github.scala-incubator.io" %% "scala-io-file" % "0.4.3-1" fixed the issue.

raboof commented 7 years ago

Can we update the documentation to recommend depending on 0.4.3-1?