Skip to content

Commit

Permalink
use sybila maven repo for org.processing:core dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
earldouglas committed Dec 27, 2011
1 parent ca1fbb0 commit 78948fb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
1 change: 0 additions & 1 deletion README
@@ -1,3 +1,2 @@
Conway's Game of Life implemented in Scala. Conway's Game of Life implemented in Scala.


This project uses the Processing project which is not available from Maven Central, so you need to download it from processing.org and put the core.jar file inside the lib directory to build it.
6 changes: 4 additions & 2 deletions build.gradle
Expand Up @@ -5,12 +5,14 @@ defaultTasks 'run'
repositories { repositories {
mavenLocal() mavenLocal()
mavenCentral() mavenCentral()
flatDir name:'lib', dirs:'lib' maven {
url "http://sybila.fi.muni.cz/public/maven"
}
} }


dependencies { dependencies {
scalaTools 'org.scala-lang:scala-compiler:2.9.1', 'org.scala-lang:scala-library:2.9.1' scalaTools 'org.scala-lang:scala-compiler:2.9.1', 'org.scala-lang:scala-library:2.9.1'
compile 'org.scala-lang:scala-library:2.9.1', 'lib:core:1.5.1' compile 'org.scala-lang:scala-library:2.9.1', 'org.processing:core:1.5.1'
} }


mainClassName='conways.ConwaysGameProcessing' mainClassName='conways.ConwaysGameProcessing'
1 change: 0 additions & 1 deletion lib/PLACEHOLDER

This file was deleted.

0 comments on commit 78948fb

Please sign in to comment.