Skip to content

Commit 524a4bc

Browse files
committed
Skip Bokeh in Scala 2.11 build until they fix their dependencies.
1 parent e892136 commit 524a4bc

File tree

5 files changed

+25
-12
lines changed

5 files changed

+25
-12
lines changed

bokeh/deploy-scala-2.10.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@
8282
<groupId>io.continuum.bokeh</groupId>
8383
<artifactId>bokeh_2.10</artifactId>
8484
<version>0.7</version>
85-
<scope>provided</scope>
8685
</dependency>
8786

8887
</dependencies>

bokeh/deploy-scala-2.11.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@
8282
<groupId>io.continuum.bokeh</groupId>
8383
<artifactId>bokeh_2.11</artifactId>
8484
<version>0.7</version>
85-
<scope>provided</scope>
8685
</dependency>
8786

8887
</dependencies>

bokeh/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@
111111
<groupId>io.continuum.bokeh</groupId>
112112
<artifactId>bokeh_${scala.binary.version}</artifactId>
113113
<version>0.7</version>
114-
<scope>provided</scope>
115114
</dependency>
116115

117116
</dependencies>

make-poms.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,6 @@
534534
<groupId>io.continuum.bokeh</groupId>
535535
<artifactId>bokeh_${{scala.binary.version}}</artifactId>
536536
<version>0.7</version>
537-
<scope>provided</scope>
538537
</dependency>
539538
540539
</dependencies>
@@ -573,7 +572,6 @@
573572
<groupId>io.continuum.bokeh</groupId>
574573
<artifactId>bokeh_2.10</artifactId>
575574
<version>0.7</version>
576-
<scope>provided</scope>
577575
</dependency>
578576
579577
</dependencies>
@@ -612,7 +610,6 @@
612610
<groupId>io.continuum.bokeh</groupId>
613611
<artifactId>bokeh_2.11</artifactId>
614612
<version>0.7</version>
615-
<scope>provided</scope>
616613
</dependency>
617614
618615
</dependencies>

pom.xml

Lines changed: 25 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,31 @@
3030
<organizationUrl>http://diana-hep.org</organizationUrl>
3131
</developer>
3232
</developers>
33-
34-
<modules>
35-
<module>core</module>
36-
<module>sparksql</module>
37-
<module>bokeh</module>
38-
</modules>
33+
34+
<profiles>
35+
<profile>
36+
<id>scala-2.10</id>
37+
<activation>
38+
<activeByDefault>true</activeByDefault>
39+
</activation>
40+
<modules>
41+
<module>core</module>
42+
<module>sparksql</module>
43+
<module>bokeh</module>
44+
</modules>
45+
</profile>
46+
<profile>
47+
<id>scala-2.11</id>
48+
<activation>
49+
<property><name>scala-2.11</name></property>
50+
</activation>
51+
<modules>
52+
<module>core</module>
53+
<module>sparksql</module>
54+
<!-- <module>bokeh</module> --> <!-- Not supported until they fix their dependencies. -->
55+
</modules>
56+
</profile>
57+
</profiles>
3958

4059
<distributionManagement>
4160
<snapshotRepository>

0 commit comments

Comments
 (0)