blob: dd04926705d6c858ec7c7261dbd859fa66d1cf7c [file] [log] [blame]
alisdair sullivan06d0fa02014-08-05 19:54:57 -07001%%
2%% Licensed to the Apache Software Foundation (ASF) under one
3%% or more contributor license agreements. See the NOTICE file
4%% distributed with this work for additional information
5%% regarding copyright ownership. The ASF licenses this file
6%% to you under the Apache License, Version 2.0 (the
7%% "License"); you may not use this file except in compliance
8%% with the License. You may obtain a copy of the License at
9%%
10%% http://www.apache.org/licenses/LICENSE-2.0
11%%
12%% Unless required by applicable law or agreed to in writing,
13%% software distributed under the License is distributed on an
14%% "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15%% KIND, either express or implied. See the License for the
16%% specific language governing permissions and limitations
17%% under the License.
18%%
19%%% -*- mode:erlang -*-
20{application, thrift_test, [
21 % A quick description of the application.
22 {description, "tests for thrift erlang compiler backend"},
23
24 % The version of the applicaton
25 {vsn, "1.0.0-dev"},
26
27 % All modules used by the application.
28 {modules, [
29 ]},
30
31 % All of the registered names the application uses. This can be ignored.
32 {registered, []},
33
34 % Applications that are to be started prior to this one. This can be ignored
35 % leave it alone unless you understand it well and let the .rel files in
36 % your release handle this.
37 {applications, [kernel, stdlib]},
38
39 % OTP application loader will load, but not start, included apps. Again
40 % this can be ignored as well. To load but not start an application it
41 % is easier to include it in the .rel file followed by the atom 'none'
42 {included_applications, []},
43
44 % configuration parameters similar to those in the config file specified
45 % on the command line. can be fetched with gas:get_env
46 {env, [
47 % If an error/crash occurs during processing of a function,
48 % should the TApplicationException serialized back to the client
49 % include the erlang backtrace?
50 {exceptions_include_traces, true}
51 ]}
52]}.