Hi Pat, Attached are the two build.sbt files, where first is in engine template folder and the second one is in PIO installed folder.
Following are the file paths, File1 path: vsadmin@predictionio:~/SimpligicProductRanking$ sudo nano build.sbt File2 path: vsadmin@predictionio:~/SPIO/apache-predictionio-0.10.0-incubating$ sudo nano build.sbt Regards, Yasho. From: Pat Ferrel [mailto:[email protected]] Sent: 04 January 2017 22:00 To: [email protected] Cc: Sankar M <[email protected]>; Sheik Dawood Jainullabudeen <[email protected]> Subject: Re: PredictionIO :: [error] (*:update) sbt.ResolveException: unresolved dependency: io.prediction#pio-build;0.9.0: not found This indicates that you template is still looking for PIO v0.9.0. [ERROR] [Console$] [error] (*:update) sbt.ResolveException: unresolved dependency: org.apache.predictionio#pio-build;0.9.0: not found So you have changed the namespace to org.apache.predictionio but somewhere there is the old version number. Can you send your build.sbt? On Jan 4, 2017, at 5:43 AM, Yasothai Rasappan <[email protected]<mailto:[email protected]>> wrote: Hi Pat, PFA for specific error which I’m getting while giving pio build option. <image001.png> Regards, Yasho. From: Pat Ferrel [mailto:[email protected]] Sent: 04 January 2017 00:32 To: [email protected]<mailto:[email protected]> Cc: Sankar M; Sheik Dawood Jainullabudeen Subject: Re: PredictionIO :: [error] (*:update) sbt.ResolveException: unresolved dependency: io.prediction#pio-build;0.9.0: not found Please send the text of the error you are seeing, screen shots are very hard to read. What does `pio version` report? On Jan 3, 2017, at 2:26 AM, Yasothai Rasappan <[email protected]<mailto:[email protected]>> wrote: Hi Rasna, Is it possible to have a call to discuss this issue? Regards, Yasho. From: Yasothai Rasappan Sent: 03 January 2017 15:54 To: [email protected]<mailto:[email protected]> Subject: RE: PredictionIO :: [error] (*:update) sbt.ResolveException: unresolved dependency: io.prediction#pio-build;0.9.0: not found Hi Rasna, I have checked the version attribute in all the cd ./.ivy2/local folder and its files. In all the places its value is “0.10.0-incubating”. And also still I’m getting same error while doing pio build. Thanks, Yasho. From: Rasna Tomar [mailto:[email protected]] Sent: 02 January 2017 18:04 To: [email protected]<mailto:[email protected]> Subject: Re: PredictionIO :: [error] (*:update) sbt.ResolveException: unresolved dependency: io.prediction#pio-build;0.9.0: not found Edit - /home/yourusername/.ivy2 On Mon, Jan 2, 2017 at 6:03 PM, Rasna Tomar <[email protected]<mailto:[email protected]>> wrote: Hi You can check whether in .ivy2 folder, these dependencies exist or not, Go to - /home/yourusername.ivy2 You will see two folder - 1) cache 2) local Check in local folder , this folder "org.apache.predictionio" should exist. If it exist then check its contents and which version it has. If it has version other than this, then you have to include that version dependency in your code. Thanks On Mon, Jan 2, 2017 at 5:54 PM, Yasothai Rasappan <[email protected]<mailto:[email protected]>> wrote: Hi Team, Any update on this? Thanks & Regards, Yasothai Rasappan SSE | [email protected]<mailto:[email protected]> Vishwak Solutions Pvt Ltd • 044 - 4222 2300 | Extn – 439. From: Yasothai Rasappan Sent: 30 December 2016 17:14 To: '[email protected]<mailto:[email protected]>'; '[email protected]<mailto:[email protected]>'; 'ActionML Support'; '[email protected]<mailto:[email protected]>' Cc: Sheik Dawood Jainullabudeen; Sankar M Subject: RE: PredictionIO :: [error] (*:update) sbt.ResolveException: unresolved dependency: io.prediction#pio-build;0.9.0: not found Hi Team, Any update on this? Thanks & Regards, Yasothai Rasappan SSE | [email protected]<mailto:[email protected]> Vishwak Solutions Pvt Ltd • 044 - 4222 2300 | Extn – 439. From: Yasothai Rasappan Sent: 29 December 2016 17:01 To: '[email protected]<mailto:[email protected]>'; '[email protected]<mailto:[email protected]>' Cc: Sheik Dawood Jainullabudeen; Sankar M Subject: PredictionIO :: [error] (*:update) sbt.ResolveException: unresolved dependency: io.prediction#pio-build;0.9.0: not found Hi Team, In our project, • we have installed 0.9.0 version and used “Product Ranking” engine. It was working fine, now we are migrating old version PredictionIO to the new version “Apache-0. 10.0-incubating” version. • We have successfully installed the latest version, and also able to download and configured “Product Ranking” engine. <image001.jpg> • After configuring getting following error, <image002.jpg> • For the above error, I have altered “import io.prediction*” to “import org.apache.predictionio*”, including all scala files and sbt files. At this point, /project/pio-build.sbt file after changing to io.prediction to org.apache.predictionio getting following error, <image003.jpg> • Kindly advise me on this issue. Thanks & Regards, Yasothai Rasappan SSE | [email protected]<mailto:[email protected]> Vishwak Solutions Pvt Ltd • 044 - 4222 2300 | +91-9677952753 | Extn - 439 <pio build error.txt>
import AssemblyKeys._ assemblySettings name := "template-scala-parallel-productranking" organization := "org.apache.predictionio" libraryDependencies ++= Seq( "org.apache.predictionio" %% "apache-predictionio-core" % pioVersion.value % "provided", "org.apache.spark" %% "spark-core" % "1.3.0" % "provided", "org.apache.spark" %% "spark-mllib" % "1.3.0" % "provided")
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import UnidocKeys._ name := "apache-predictionio-parent" version in ThisBuild := "0.10.0-incubating" organization in ThisBuild := "org.apache.predictionio" scalaVersion in ThisBuild := "2.10.5" scalacOptions in ThisBuild ++= Seq("-deprecation", "-unchecked", "-feature") scalacOptions in (ThisBuild, Test) ++= Seq("-Yrangepos") fork in (ThisBuild, run) := true javacOptions in (ThisBuild, compile) ++= Seq("-source", "1.7", "-target", "1.7", "-Xlint:deprecation", "-Xlint:unchecked") elasticsearchVersion in ThisBuild := "1.4.4" json4sVersion in ThisBuild := "3.2.10" sparkVersion in ThisBuild := "1.4.0" lazy val pioBuildInfoSettings = buildInfoSettings ++ Seq( sourceGenerators in Compile <+= buildInfo, buildInfoKeys := Seq[BuildInfoKey]( name, version, scalaVersion, sbtVersion, sparkVersion), buildInfoPackage := "org.apache.predictionio.core") lazy val conf = file(".") / "conf" lazy val root = project in file(".") aggregate( common, core, data, tools, e2) lazy val common = (project in file("common")). settings(unmanagedClasspath in Test += conf) lazy val core = (project in file("core")). dependsOn(data). settings(genjavadocSettings: _*). settings(pioBuildInfoSettings: _*). enablePlugins(SbtTwirl). settings(unmanagedClasspath in Test += conf) lazy val data = (project in file("data")). dependsOn(common). settings(genjavadocSettings: _*). settings(unmanagedClasspath in Test += conf) lazy val tools = (project in file("tools")). dependsOn(core). dependsOn(data). enablePlugins(SbtTwirl). settings(unmanagedClasspath in Test += conf) lazy val e2 = (project in file("e2")). settings(genjavadocSettings: _*). settings(unmanagedClasspath in Test += conf) scalaJavaUnidocSettings // scalaUnidocSettings unidocAllSources in (JavaUnidoc, unidoc) := { (unidocAllSources in (JavaUnidoc, unidoc)).value .map(_.filterNot(_.getName.contains("$"))) } scalacOptions in (ScalaUnidoc, unidoc) ++= Seq( "-groups", "-skip-packages", Seq( "akka", "breeze", "html", "org.apache.predictionio.annotation", "org.apache.predictionio.controller.html", "org.apache.predictionio.data.api", "org.apache.predictionio.data.view", "org.apache.predictionio.workflow", "org.apache.predictionio.tools", "org", "scalikejdbc").mkString(":"), "-doc-title", "PredictionIO Scala API", "-doc-version", version.value, "-doc-root-content", "docs/scaladoc/rootdoc.txt") javacOptions in (JavaUnidoc, unidoc) := Seq( "-subpackages", "org.apache.predictionio", "-exclude", Seq( "org.apache.predictionio.controller.html", "org.apache.predictionio.data.api", "org.apache.predictionio.data.view", "org.apache.predictionio.data.webhooks.*", "org.apache.predictionio.workflow", "org.apache.predictionio.tools", "org.apache.hadoop").mkString(":"), "-windowtitle", "PredictionIO Javadoc " + version.value, "-group", "Java Controllers", Seq( "org.apache.predictionio.controller.java", "org.apache.predictionio.data.store.java").mkString(":"), "-group", "Scala Base Classes", Seq( "org.apache.predictionio.controller", "org.apache.predictionio.core", "org.apache.predictionio.data.storage", "org.apache.predictionio.data.storage.*", "org.apache.predictionio.data.store").mkString(":"), "-overview", "docs/javadoc/javadoc-overview.html", "-noqualifier", "java.lang") lazy val pioUnidoc = taskKey[Unit]("Builds PredictionIO ScalaDoc and Javadoc") pioUnidoc := { (unidoc in Compile).value val log = streams.value.log log.info("Adding custom styling.") IO.append( crossTarget.value / "unidoc" / "lib" / "template.css", IO.read(baseDirectory.value / "docs" / "scaladoc" / "api-docs.css")) IO.append( crossTarget.value / "unidoc" / "lib" / "template.js", IO.read(baseDirectory.value / "docs" / "scaladoc" / "api-docs.js")) } homepage := Some(url("http://predictionio.incubator.apache.org")) pomExtra := { <parent> <groupId>org.apache</groupId> <artifactId>apache</artifactId> <version>18</version> </parent> <scm> <connection>scm:git:github.com/apache/incubator-predictionio</connection> <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/incubator-predictionio.git</developerConnection> <url>github.com/apache/incubator-predictionio</url> </scm> <developers> <developer> <id>donald</id> <name>Donald Szeto</name> <url>http://predictionio.incubator.apache.org</url> <email>[email protected]</email> </developer> </developers> } childrenPomExtra in ThisBuild := { <parent> <groupId>org.apache.predictionio</groupId> <artifactId>predictionio-parent_{scalaBinaryVersion.value}</artifactId> <version>{version.value}</version> </parent> } concurrentRestrictions in Global := Seq( Tags.limit(Tags.CPU, 1), Tags.limit(Tags.Network, 1), Tags.limit(Tags.Test, 1), Tags.limitAll( 1 ) ) parallelExecution := false parallelExecution in Global := false testOptions in Test += Tests.Argument("-oDF")
