public
Description: An implementation of a software transactional memory framework in Scala
Homepage: http://www.codecommit.com/blog
Clone URL: git://github.com/djspiewak/scala-stm.git
scala-stm / buildfile
100644 14 lines (9 sloc) 0.3 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'buildr/scala'
 
repositories.remote << 'http://www.ibiblio.org/maven2'
repositories.remote << 'http://scala-tools.org/repo-releases'
 
define 'scala_stm' do
  project.version = '0.2.0'
  project.group = 'com.codecommit'
 
  test.with 'com.codecommit:collection:jar:0.1.0'
  
  package :jar
end