@@ -4,7 +4,7 @@ import sbt.Keys._
4
4
import sbt .Project .projectToRef
5
5
import sbt ._
6
6
7
- val apiVersion = " 0.0.6 "
7
+ val apiVersion = " 0.0.7 "
8
8
val paradisePluginVersion = " 2.1.0"
9
9
val _scalaVersion = " 2.11.8"
10
10
val scalaJsDomVersion = " 0.9.0"
@@ -25,7 +25,7 @@ val commonSettings = Seq(
25
25
)
26
26
27
27
lazy val root = (project in file(" ." )).
28
- aggregate(core, angularjs, express, facebook, kafkanode , linkedin, mongodb, nodejs)
28
+ aggregate(core, angularjs, express, facebook, kafka_node , linkedin, mongodb, nodejs)
29
29
30
30
lazy val core = (project in file(" core" )).
31
31
enablePlugins(ScalaJSPlugin ).
@@ -36,72 +36,80 @@ lazy val core = (project in file("core")).
36
36
)
37
37
38
38
lazy val angularjs = (project in file(" angularjs" )).
39
- enablePlugins(ScalaJSPlugin ).
40
39
dependsOn(core).
40
+ enablePlugins(ScalaJSPlugin ).
41
41
settings(commonSettings : _* ).
42
42
settings(
43
43
name := " means-angularjs" ,
44
44
description := " AngularJS bindings for Scala.js"
45
45
)
46
46
47
47
lazy val facebook = (project in file(" facebook" )).
48
- enablePlugins(ScalaJSPlugin ).
49
48
dependsOn(core, angularjs).
49
+ enablePlugins(ScalaJSPlugin ).
50
50
settings(commonSettings : _* ).
51
51
settings(
52
52
name := " means-facebook" ,
53
53
description := " Facebook buildings for Scala.js"
54
54
)
55
55
56
56
lazy val express = (project in file(" express" )).
57
- enablePlugins(ScalaJSPlugin ).
58
57
dependsOn(core, nodejs).
58
+ enablePlugins(ScalaJSPlugin ).
59
59
settings(commonSettings : _* ).
60
60
settings(
61
61
name := " means-express" ,
62
62
description := " Express.js bindings for Scala.js"
63
63
)
64
64
65
65
lazy val linkedin = (project in file(" linkedin" )).
66
- enablePlugins(ScalaJSPlugin ).
67
66
dependsOn(core, angularjs).
67
+ enablePlugins(ScalaJSPlugin ).
68
68
settings(commonSettings : _* ).
69
69
settings(
70
70
name := " means-linkedin" ,
71
71
description := " LinkedIn buildings for Scala.js"
72
72
)
73
73
74
- lazy val kafkanode = (project in file(" kafkanode" )).
74
+ lazy val kafka_node = (project in file(" kafka_node" )).
75
+ dependsOn(core, nodejs, node_zookeeper).
75
76
enablePlugins(ScalaJSPlugin ).
76
- dependsOn(core, nodejs).
77
77
settings(commonSettings : _* ).
78
78
settings(
79
79
name := " means-kafka-node" ,
80
80
description := " Kafka bindings for Scala.js"
81
81
)
82
82
83
83
lazy val mongodb = (project in file(" mongodb" )).
84
- enablePlugins(ScalaJSPlugin ).
85
84
dependsOn(core, nodejs).
85
+ enablePlugins(ScalaJSPlugin ).
86
86
settings(commonSettings : _* ).
87
87
settings(
88
88
name := " means-mongodb" ,
89
89
description := " MongoDB bindings for Scala.js"
90
90
)
91
91
92
92
lazy val nodejs = (project in file(" nodejs" )).
93
- enablePlugins(ScalaJSPlugin ).
94
93
dependsOn(core).
94
+ enablePlugins(ScalaJSPlugin ).
95
95
settings(commonSettings : _* ).
96
96
settings(
97
97
name := " means-nodejs" ,
98
98
description := " Node.js bindings for Scala.js"
99
99
)
100
100
101
- lazy val examples = (project in file(" examples " )).
102
- aggregate (core, express, kafkanode, mongodb , nodejs).
101
+ lazy val node_zookeeper = (project in file(" node_zookeeper " )).
102
+ dependsOn (core, nodejs).
103
103
enablePlugins(ScalaJSPlugin ).
104
- dependsOn(core, express, kafkanode, mongodb, nodejs).
104
+ settings(commonSettings : _* ).
105
+ settings(
106
+ name := " means-node-zookeeper-client" ,
107
+ description := " Zookeeper client bindings for Scala.js"
108
+ )
109
+
110
+ lazy val examples = (project in file(" examples" )).
111
+ aggregate(core, express, kafka_node, mongodb, nodejs, node_zookeeper).
112
+ dependsOn(core, express, kafka_node, mongodb, nodejs, node_zookeeper).
105
113
enablePlugins(ScalaJSPlugin ).
106
114
settings(commonSettings : _* ).
107
115
settings(
0 commit comments