~ubuntu-branches/ubuntu/wily/hawtdispatch/wily-proposed

« back to all changes in this revision

Viewing changes to build.gradle

  • Committer: Package Import Robot
  • Author(s): Emmanuel Bourg
  • Date: 2015-07-22 20:14:35 UTC
  • Revision ID: package-import@ubuntu.com-20150722201435-s694odej0ch4qung
Tags: upstream-1.20
ImportĀ upstreamĀ versionĀ 1.20

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
subprojects {
 
2
        apply plugin: 'java'
 
3
 
 
4
        repositories {
 
5
                mavenCentral()
 
6
        }
 
7
 
 
8
        dependencies {
 
9
                compile 'asm:asm-tree:3.1', 'org.osgi:org.osgi.core:4.2.0', 'org.osgi:org.osgi.compendium:4.2.0', 'log4j:log4j:1.2.14', 'org.fusesource.hawtbuf:hawtbuf:1.9'
 
10
 
 
11
                testCompile 'junit:junit:4.7'
 
12
        }
 
13
 
 
14
        tasks.withType(Compile) {
 
15
                options.encoding = 'UTF-8'
 
16
                options.warnings = false
 
17
        }
 
18
}
 
19
 
 
20
project(':hawtdispatch-example') {
 
21
        dependencies {
 
22
                compile project(':hawtdispatch-scala'), project(':hawtdispatch-transport'), 'org.scala-lang:scala-library:2.10.0', 'org.scala-lang:scala-compiler:2.10.0'
 
23
 
 
24
                testCompile 'org.scalatest:scalatest_2.10.0:2.10.0'
 
25
        }
 
26
}
 
27
 
 
28
project(':hawtdispatch-netty') {
 
29
        dependencies {
 
30
                compile 'io.netty:netty-transport:4.0.0.Beta1', project(':hawtdispatch')
 
31
        }
 
32
}
 
33
 
 
34
project(':hawtdispatch-scala')  {
 
35
        dependencies {
 
36
                compile 'iorg.scala-lang:scala-library:2.10.0', project(':hawtdispatch')
 
37
 
 
38
                testCompile 'org.scalatest:scalatest_2.10.0:2.10.0'
 
39
        }
 
40
}
 
41
 
 
42
project(':hawtdispatch-transport') {
 
43
        dependencies {
 
44
                compile project(':hawtdispatch')
 
45
        }
 
46
}