Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Point out that current version is not available in official repositories #22

Open
martinburger opened this issue Sep 2, 2011 · 6 comments

Comments

@martinburger
Copy link

Currently, it is not sufficient to just include SbtEclipsify as plugin dependency, as it is not available via the official repositories.

Therefore, running sbt eclipse version produces some errors:

[warn] :: problems summary :: [warn] :::: WARNINGS [warn] module not found: de.element34#sbt-eclipsify;0.10.0 [warn] ==== local: tried [warn] /Users/Foo/.ivy2/local/de.element34/sbt-eclipsify/0.10.0/ivys/ivy.xml [warn] -- artifact de.element34#sbt-eclipsify;0.10.0!sbt-eclipsify.jar: [warn] /Users/Foo/.ivy2/local/de.element34/sbt-eclipsify/0.10.0/jars/sbt-eclipsify.jar [warn] ==== public: tried [warn] http://repo1.maven.org/maven2/de/element34/sbt-eclipsify/0.10.0/sbt-eclipsify-0.10.0.pom [warn] -- artifact de.element34#sbt-eclipsify;0.10.0!sbt-eclipsify.jar: [warn] http://repo1.maven.org/maven2/de/element34/sbt-eclipsify/0.10.0/sbt-eclipsify-0.10.0.jar [warn] ==== Scala-Tools Maven2 Repository: tried [warn] http://scala-tools.org/repo-releases/de/element34/sbt-eclipsify/0.10.0/sbt-eclipsify-0.10.0.pom [warn] -- artifact de.element34#sbt-eclipsify;0.10.0!sbt-eclipsify.jar: [warn] http://scala-tools.org/repo-releases/de/element34/sbt-eclipsify/0.10.0/sbt-eclipsify-0.10.0.jar [warn] :::::::::::::::::::::::::::::::::::::::::::::: [warn] :: UNRESOLVED DEPENDENCIES :: [warn] :::::::::::::::::::::::::::::::::::::::::::::: [warn] :: de.element34#sbt-eclipsify;0.10.0: not found [warn] ::::::::::::::::::::::::::::::::::::::::::::::

I think you should update both wiki page "Setting up SbtEclipsify" and file "README.md" to point out that you have to install locally (do an update publish-local).

@musk
Copy link
Owner

musk commented Sep 4, 2011

Currently there is a snapshot version available. You have to include the
Snapshot Repository in your build.sbt and use 0.10.0-SNAPSHOT. There are
still some issues with the android and plugin project natures that I have to
figure out first.

Stefan
Am 02.09.2011 13:58 schrieb "martinburger" <
[email protected]>:

Currently, it is not sufficient to just include SbtEclipsify as plugin
dependency, as it is not available via the official repositories.

Therefore, running sbt eclipse version produces some errors:

[warn] :: problems summary :: [warn] :::: WARNINGS [warn] module not found: de.element34#sbt-eclipsify;0.10.0 [warn] ==== local: tried [warn] /Users/Foo/.ivy2/local/de.element34/sbt-eclipsify/0.10.0/ivys/ivy.xml [warn] -- artifact de.element34#sbt-eclipsify;0.10.0!sbt-eclipsify.jar: [warn] /Users/Foo/.ivy2/local/de.element34/sbt-eclipsify/0.10.0/jars/sbt-eclipsify.jar [warn] ==== public: tried [warn] http://repo1.maven.org/maven2/de/element34/sbt-eclipsify/0.10.0/sbt-eclipsify-0.10.0.pom [warn] -- artifact de.element34#sbt-eclipsify;0.10.0!sbt-eclipsify.jar: [warn] http://repo1.maven.org/maven2/de/element34/sbt-eclipsify/0.10.0/sbt-eclipsify-0.10.0.jar [warn] ==== Scala-Tools Maven2 Repository: tried [warn] http://scala-tools.org/repo-releases/de/element34/sbt-eclipsify/0.10.0/sbt-eclipsify-0.10.0.pom [warn] -- artifact de.element34#sbt-eclipsify;0.10.0!sbt-eclipsify.jar: [warn] http://scala-tools.org/repo-releases/de/element34/sbt-eclipsify/0.10.0/sbt-eclipsify-0.10.0.jar [warn] :::::::::::::::::::::::::::::::::::::::::::::: [warn] :: UNRESOLVED DEPENDENCIES :: [warn] :::::::::::::::::::::::::::::::::::::::::::::: [warn] :: de.element34#sbt-eclipsify;0.10.0: not found [warn] ::::::::::::::::::::::::::::::::::::::::::::::

I think you should update both wiki page "Setting up SbtEclipsify" and
file "README.md" to point out that you have to install locally (do an
update publish-local).

Reply to this email directly or view it on GitHub:
#22

@martinburger
Copy link
Author

Well, unfortunately, the Scala version is hard-wired. Currently, this is version 2.8.1: http://scala-tools.org/repo-snapshots/de/element34/sbt-eclipsify_2.8.1/

I think, as I am using 2.9.1, sbt could not find the corresponding snapshot version.

@musk
Copy link
Owner

musk commented Sep 6, 2011

There exists no crossbuild yet. I get it out as soon as possible.

Stefan
Am 05.09.2011 11:41 schrieb "martinburger" <
[email protected]>:

Well, unfortunately, the Scala version is hard-wired. Currently, this is
version 2.8.1:
http://scala-tools.org/repo-snapshots/de/element34/sbt-eclipsify_2.8.1/

I think, as I am using 2.9.1, sbt could not find the corresponding
snapshot version.

Reply to this email directly or view it on GitHub:
#22 (comment)

@julienrf
Copy link

Hi,
According to the documentation, it seems to be a matter of adding a line like this, in your build.sbt file:
crossScalaVersions := Seq("2.7.7", "2.8.0", "2.8.1")

@musk
Copy link
Owner

musk commented Sep 23, 2011

No it isn't as this is a plugin for sbt it also has to be compiled on
the correct sbt version or else it will break. The problem is that I
haven't found the time to compile it for 0.11 and publish it.

Stefan

2011/9/22 Julien Richard-Foy
[email protected]:

Hi,
According to the documentation, it seems to be a matter of adding a line like this, in your build.sbt file:
crossScalaVersions := Seq("2.7.7", "2.8.0", "2.8.1")

Reply to this email directly or view it on GitHub:
#22 (comment)

@NYCBrit
Copy link

NYCBrit commented Jan 21, 2012

Looking forward to a 0.11 version, is this going to be released soon?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants