1%% 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, "Thrift cross language test"}, 23 24 % The version of the applicaton 25 {vsn, "0.18.0"}, 26 27 % All modules used by the application. 28 {modules, [ 29 test_client, 30 test_thrift_server 31 ]}, 32 33 % All of the registered names the application uses. This can be ignored. 34 {registered, []}, 35 36 % Applications that are to be started prior to this one. This can be ignored 37 % leave it alone unless you understand it well and let the .rel files in 38 % your release handle this. 39 {applications, [kernel, stdlib]}, 40 41 % OTP application loader will load, but not start, included apps. Again 42 % this can be ignored as well. To load but not start an application it 43 % is easier to include it in the .rel file followed by the atom 'none' 44 {included_applications, []}, 45 46 % configuration parameters similar to those in the config file specified 47 % on the command line. can be fetched with gas:get_env 48 {env, [ 49 % If an error/crash occurs during processing of a function, 50 % should the TApplicationException serialized back to the client 51 % include the erlang backtrace? 52 {exceptions_include_traces, true} 53 ]} 54]}. 55