1% This is an -*- erlang -*- file.
2%% %CopyrightBegin%
3%%
4%% Copyright Ericsson AB 2009-2020. All Rights Reserved.
5%%
6%% Licensed under the Apache License, Version 2.0 (the "License");
7%% you may not use this file except in compliance with the License.
8%% 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, software
13%% distributed under the License is distributed on an "AS IS" BASIS,
14%% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15%% See the License for the specific language governing permissions and
16%% limitations under the License.
17%%
18%% %CopyrightEnd%
19
20{application, common_test,
21 [{description, "The OTP Common Test application"},
22  {vsn, "%VSN%"},
23  {modules, [ct_cover,
24	     ct,
25             ct_default_gl,
26	     ct_event,
27	     ct_framework,
28	     ct_ftp,
29	     ct_gen_conn,
30	     ct_groups,
31             ct_hooks,
32             ct_hooks_lock,
33	     ct_logs,
34	     ct_make,
35	     ct_master,
36	     ct_master_event,
37	     ct_master_logs,
38	     ct_master_status,
39	     ct_netconfc,
40	     ct_conn_log_h,
41	     ct_property_test,
42	     ct_release_test,
43	     ct_repeat,
44	     ct_rpc,
45	     ct_run,
46	     ct_snmp,
47	     ct_ssh,
48	     ct_telnet_client,
49	     ct_telnet,
50	     ct_testspec,
51	     ct_util,
52	     unix_telnet,
53	     ct_config,
54	     ct_config_plain,
55	     ct_config_xml,
56	     ct_slave,
57             cth_log_redirect,
58	     cth_conn_log,
59             cth_surefire,
60	     erl2html2,
61	     test_server_ctrl,
62	     test_server,
63	     test_server_gl,
64	     test_server_io,
65	     test_server_node,
66	     test_server_sup,
67	     ct_suite
68	    ]},
69  {registered, [ct_logs,
70		ct_util_server,
71		ct_config_server,
72		ct_make_ref,
73		ct_master,
74		ct_master_logs,
75		test_server_ctrl,
76		test_server,
77		test_server_break_process]},
78  {applications, [kernel,stdlib]},
79  {env, []},
80  {runtime_dependencies,
81   ["compiler-6.0",
82    "crypto-3.6",
83    "debugger-4.1",
84    "erts-7.0",
85    "ftp-1.0.0",
86    "inets-6.0",
87    "kernel-4.0",
88    "observer-2.1",
89    "runtime_tools-1.8.16",
90    "sasl-2.4.2",
91    "snmp-5.1.2",
92    "ssh-4.0",
93    "stdlib-3.5",
94    "syntax_tools-1.7",
95    "tools-2.8",
96    "xmerl-1.3.8"
97   ]}]}.
98
99