{{props.SNAPSHOT_BLURB}}
libraryDependencies += "{{props.groupId}}" %% "scala-io-core" % "{{props.version}}" libraryDependencies += "{{props.groupId}}" %% "scala-io-file" % "{{props.version}}"
sbt compile
> curl -L http://jesseeichar.github.com/scala-io-doc/{{props.version}}/example_projects/example-sbt-project.zip > \ tmp.zip && unzip tmp.zip && rm tmp.zip > cd example-sbt-project > sbt run
Add core or file dependency to you project definition
<!-- Core --> <dependency> <groupId>{{props.groupId}}</groupId> <artifactId>scala-io-core_{{props.scalaVersion}}</artifactId> <version>{{props.version}}</version> </dependency> <!-- File --> <dependency> <groupId>{{props.groupId}}</groupId> <artifactId>scala-io-file_{{props.scalaVersion}}</artifactId> <version>{{props.version}}</version> </dependency>
> curl -L http://jesseeichar.github.com/scala-io-doc/{{props.version}}/example_projects/example-maven-project.zip > \ tmp.zip && unzip tmp.zip && rm tmp.zip > cd example-maven-project # if a SNAPSHOT version edit pom.xml and uncomment the snapshot repository section > mvn compile exec:java -Dexec.mainClass="Main"Any questions you may have can be asked on the mailing list: http://groups.google.com/group/scala-incubator