Edulify.com Open Source
This is the repository where we release our plugins and open source projects. We are adding this page to avoid confusion if this is a valid repository or not. It is. :-)
This is the repository where we release our plugins and open source projects. We are adding this page to avoid confusion if this is a valid repository or not. It is. :-)
Here you can see how to configure our releases repository so that you can use our modules and plugins.
project/Build.scala
:import sbt._
import Keys._
import play.Project._
object ApplicationBuild extends Build {
val appName = "your-app"
val appVersion = "1.0-SNAPSHOT"
val appDependencies = Seq(
// Add your project dependencies here,
javaCore,
javaJdbc,
javaEbean
)
val main = play.Project(appName, appVersion, appDependencies).settings(
// Add the line bellow to configure our repository
resolvers += Resolver.url("Edulify Repository", url("https://edulify.github.io/modules/releases/"))(Resolver.ivyStylePatterns)
)
}
build.sbt
Just add the following line in your build.sbt
:
resolvers += Resolver.url("Edulify Repository", url("https://edulify.github.io/modules/releases/"))(Resolver.ivyStylePatterns)