forked from pantsbuild/pants
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD.tools
36 lines (31 loc) · 1.44 KB
/
BUILD.tools
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# JVM artifacts that Pants itself depends on.
# http://pantsbuild.github.io/dev_tasks.html#jvm-tool-bootstrapping
target(name = 'scala-js-cli', dependencies=['contrib/scalajs/3rdparty/jvm/org/scala-js:cli'])
target(name = 'scala-js-compiler', dependencies=[
'contrib/scalajs/3rdparty/jvm/org/scala-js:compiler',
'contrib/scalajs/3rdparty/jvm/org/scala-js:library',
])
target(name = 'scala-js-library', dependencies=['contrib/scalajs/3rdparty/jvm/org/scala-js:library'])
jar_library(name = 'scrooge-gen',
jars = [
scala_jar(org='com.twitter', name='scrooge-generator', rev='3.20.0',
excludes=[
# scrooge requires libthrift 0.5.0-1 which is not available on
# the default maven repos. Force scrooge to use thrift-0.6.1, which
# is compatible, instead.
exclude(org = 'org.apache.thrift', name = 'libthrift')
])
],
dependencies = [
'3rdparty:thrift-0.6.1',
])
jar_library(name = 'scrooge-linter',
jars = [
scala_jar(org='com.twitter', name='scrooge-linter', rev='3.20.0',
excludes=[
exclude(org = 'org.apache.thrift', name = 'libthrift')
])
],
dependencies = [
'3rdparty:thrift-0.6.1',
])