{{props.SNAPSHOT_BLURB}}
val core = "{{props.groupId}}" %% "core" % "{{props.version}}" val file = "{{props.groupId}}" %% "file" % "{{props.version}}"
sbt update
> curl -L https://github.com/downloads/jesseeichar/scala-io/example-sbt-project.zip > \ tmp.zip && unzip tmp.zip && rm tmp.zip > cd example-sbt-project > sbt update run
<!-- Core --> <dependency> <groupId>{{props.groupId}}</groupId> <artifactId>core_{{props.scalaVersion}}</artifactId> <version>{{props.version}}</version> </dependency> <!-- File --> <dependency> <groupId>{{props.groupId}}</groupId> <artifactId>file_{{props.scalaVersion}}</artifactId> <version>{{props.version}}</version> </dependency>
<repositories> <repository> <id>scala-tools.org</id> <name>Scala-Tools Maven2 Repository</name> <url>http://scala-tools.org/repo-releases</url> </repository> </repositories>
> curl -L https://github.com/downloads/jesseeichar/scala-io/example-maven-project.zip > \ tmp.zip && unzip tmp.zip && rm tmp.zip > cd example-maven-project > mvn compile exec:java -Dexec.mainClass="Main" ]]>http://groups.google.com/group/scala-incubator