This repository has been archived by the owner on Oct 1, 2019. It is now read-only.
forked from pantsbuild/pants
-
Notifications
You must be signed in to change notification settings - Fork 5
/
pants.ini
221 lines (163 loc) · 4.99 KB
/
pants.ini
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
# All of the following are seeded with defaults in the config
# user: the current user
# homedir: the current user's home directory
# buildroot: the root of this repo
# pants_bootstrapdir: the global pants scratch space primarily used for caches
# pants_supportdir: pants support files for this repo go here; for example: ivysettings.xml
# pants_distdir: user visible artifacts for this repo go here
# pants_workdir: the scratch space used to for live builds in this repo
#
# NOTE: Values of list and dict type must be valid JSON.
[DEFAULT]
pants_support_baseurls = [
"https://dl.bintray.com/pantsbuild/bin/build-support"
]
outdir: %(pants_distdir)s
jvm_options: ["-Xmx1g", "-XX:MaxPermSize=256m"]
[goals]
# This will pick up the whole top level BUILD file family, including BUILD.commons
bootstrap_buildfiles: [
"%(buildroot)s/BUILD"
]
[ivy]
ivy_settings: %(pants_supportdir)s/ivy/ivysettings.xml
[scrooge-gen]
bootstrap-tools: ["//:scrooge-gen"]
supportdir: %(pants_supportdir)s/bin/scrooge
strict: False
verbose: True
java: {
"gen": "java",
"deps": {
"service": [
"3rdparty:commons-lang",
"3rdparty:finagle-thrift",
"3rdparty:slf4j-api",
"3rdparty:util-core"
],
"structs": [
"3rdparty:commons-lang",
"3rdparty:thrift"
]
}
}
scala: {
"gen": "scala",
"deps": {
"service": [
"3rdparty:scrooge-core",
"3rdparty:finagle-thrift",
"3rdparty:util-core"
],
"structs": [
"3rdparty:scrooge-core",
"3rdparty:thrift"
]
}
}
[thrift-gen]
supportdir: bin/thrift
strict: False
verbose: False
version: 0.5.0-finagle
java: {
"gen": "java:hashcode",
"deps": {
"service": ["3rdparty:thrift-0.5.0-finagle"],
"structs": ["3rdparty:thrift-0.5.0"]
}
}
python: {
"gen": "py:newstyle",
"deps": {
"service": ["3rdparty/python:thrift"],
"structs": ["3rdparty/python:thrift"]
}
}
[antlr-gen]
version: 3.4
javadeps: ["//:antlr-%(version)s"]
[antlr4-gen]
version: 4.0
javadeps: ["//:antlr-4"]
[ragel-gen]
supportdir: bin/ragel
version: 6.8
[checkstyle]
bootstrap-tools: ["//:twitter-checkstyle"]
configuration: %(pants_supportdir)s/checkstyle/coding_style.xml
suppression_files = [ "%(pants_supportdir)s/commons/checkstyle/checkstyle_suppressions.xml" ]
[scalastyle]
config: %(buildroot)s/build-support/scalastyle/scalastyle_config.xml
excludes: %(buildroot)s/build-support/scalastyle/excludes.txt
[java-compile]
jmake-bootstrap-tools: ["//:jmake"]
[compile.java]
partition_size_hint: 1000000000
jvm_args: ["-Xmx2G"]
source: 6
target: 6
compiler-bootstrap-tools: ["//:java-compiler"]
[scala-compile]
compile-bootstrap-tools: ["//:scala-compiler-2.9.3"]
zinc-bootstrap-tools: ["//:zinc"]
runtime-deps: ["//:scala-library-2.9.3"]
jvm_args: ["-Xmx2g", "-XX:MaxPermSize=256m", "-Dzinc.analysis.cache.limit=0"]
[jvm]
# TODO(John Sirois): Kill this when commons tests are converted to use explicit test target
# (default is False).
parallel_test_paths: True
[run.jvm]
jvm_options: ["-Xmx1g", "-XX:MaxPermSize=256m"]
[repl.scala]
jvm_options: ["-Xmx1g", "-XX:MaxPermSize=256m", "-Dscala.usejavacp=true" ]
[scala-repl]
bootstrap-tools: ["//:scala-repl-2.9.3"]
main: scala.tools.nsc.MainGenericRunner
[test.junit]
# -XX:-UseSplitVerifier is needed for emma instrumenter to work against classfiles generated by
# java 7 compilers
jvm_options: [
"-Djava.awt.headless=true", "-Xmx1g", "-XX:MaxPermSize=256m",
"-XX:-UseSplitVerifier"
]
[junit-run]
junit-bootstrap-tools: ["//:junit"]
emma-bootstrap-tools: ["//:emma"]
cobertura-bootstrap-tools: ["//:cobertura"]
[run.specs]
jvm_options: ["-Xmx1g", "-XX:MaxPermSize=256m"]
[specs-run]
bootstrap-tools: ["//:scala-specs-2.9.3"]
[bench]
jvm_options: ["-Xmx1g", "-XX:MaxPermSize=256m"]
[benchmark-run]
bootstrap-tools: ["//:benchmark-caliper-0.5"]
agent-bootstrap-tools: ["//:benchmark-java-allocation-instrumenter-2.1"]
[ide]
python_source_paths: ["src/python"]
python_test_paths: ["tests/python"]
python_lib_paths: ["3rdparty/python"]
[idea]
scala_maximum_heap_size_mb: 1024
java_maximum_heap_size_mb: 1024
[python-setup]
# We only support pants running under 2.7 for now with 3.3+ support to be added later.
# Any example or test targets that are meant to test interpreters outside pants own
# acceptable set should specify an explicit compatibility constraint.
interpreter_requirement: CPython>=2.7,<3
[python-repos]
repos: [
"https://pantsbuild.github.io/cheeseshop/third_party/python/dist/index.html",
"https://pantsbuild.github.io/cheeseshop/third_party/python/index.html"
]
indices: ["https://pypi.python.org/simple/"]
[python-ipython]
entry_point: IPython:start_ipython
requirements: ["ipython==1.0.0"]
[backends]
packages: [
"internal_backend.optional",
"internal_backend.repositories",
"internal_backend.sitegen"
]