@theia/cli 1.34.2 → 1.34.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,360 +1,360 @@
1
- <div align='center'>
2
-
3
- <br />
4
-
5
- <img src='https://raw.githubusercontent.com/eclipse-theia/theia/master/logo/theia.svg?sanitize=true' alt='theia-ext-logo' width='100px' />
6
-
7
- <h2>ECLIPSE THEIA - CLI</h2>
8
-
9
- <hr />
10
-
11
- </div>
12
-
13
- ## Outline
14
-
15
- - [**Description**](#description)
16
- - [**Getting Started**](#getting-started)
17
- - [**Configure**](#configure)
18
- - [**Application Properties**](#application-properties)
19
- - [**Default Preferences**](#default-preferences)
20
- - [**Default Theme**](#default-theme)
21
- - [**Build Target**](#build-target)
22
- - [**Electron Frontend Application Config**](#electron-frontend-application-config)
23
- - [**Using Latest Builds**](#using-latest-builds)
24
- - [**Building**](#building)
25
- - [**Build**](#build)
26
- - [**Watch**](#watch)
27
- - [**Clean**](#clean)
28
- - [**Rebuilding Native Modules**](#rebuilding-native-modules)
29
- - [**Running**](#running)
30
- - [**Debugging**](#debugging)
31
- - [**Testing**](#testing)
32
- - [**Enabling Tests**](#enabling-tests)
33
- - [**Writing Tests**](#writing-tests)
34
- - [**Running Tests**](#running-tests)
35
- - [**Configuring Tests**](#configuring-tests)
36
- - [**Inspecting Tests**](#inspecting-tests)
37
- - [**Reporting Test Coverage**](#reporting-test-coverage)
38
- - [**Downloading Plugins**](#downloading-plugins)
39
- - [**Autogenerated Application**](#autogenerated-application)
40
-
41
- ## Description
42
-
43
- The `@theia/cli` package provides helpful scripts and commands for extension and application development.
44
- The contributed `theia`, is a command line tool to manage Theia-based applications.
45
-
46
- ## Getting Started
47
-
48
- Install `@theia/cli` as a dev dependency in your application.
49
-
50
- With yarn:
51
-
52
- ```bash
53
- yarn add @theia/cli@next --dev
54
- ```
55
-
56
- With npm:
57
-
58
- ```bash
59
- npm install @theia/cli@next --save-dev
60
- ```
61
-
62
- ## Configure
63
-
64
- A Theia-based application can be configured via the `theia` property as described in the application's `package.json`.
65
-
66
- ### Application Properties
67
-
68
- It is possible `Application Properties` for a given application.\
69
- For example, an application can define it's `applicationName` using the following syntax:
70
-
71
- ```json
72
- "theia": {
73
- "frontend": {
74
- "config": {
75
- "applicationName": "Custom Application Name",
76
- }
77
- }
78
- },
79
- ```
80
-
81
- ### Default Preferences
82
-
83
- If required, an application can define for a given preference, the default value.
84
- For example, an application can update the preference value for `files.enableTrash` based on it's requirements:
85
-
86
- ```json
87
-
88
- "theia": {
89
- "frontend": {
90
- "config": {
91
- "preferences": {
92
- "files.enableTrash": false
93
- }
94
- }
95
- }
96
- },
97
- ```
98
-
99
- ### Default Theme
100
-
101
- Default color and icon themes can be configured in `theia.frontend.config` section:
102
- ```json
103
- "theia": {
104
- "frontend": {
105
- "config": {
106
- "defaultTheme": "light",
107
- "defaultIconTheme": "vs-seti"
108
- }
109
- }
110
- },
111
- ```
112
-
113
- ### Build Target
114
-
115
- The following targets are supported: `browser` and `electron`. By default `browser` target is used.
116
- The target can be configured in the `package.json` via `theia/target` property, e.g:
117
-
118
- ```json
119
- {
120
- "theia": {
121
- "target": "electron"
122
- },
123
- "dependencies": {
124
- "@theia/electron": "latest"
125
- }
126
- }
127
- ```
128
-
129
- For `electron` target applications, is it mandatory to include **Electron** runtime dependencies. The `@theia/electron` package is the easiest way to install the necessary dependencies.
130
-
131
- ### Electron Frontend Application Config
132
-
133
- The `electron` frontend application configuration provides configuration options for the `electron` target.\
134
- The currently supported configurations are:
135
-
136
- - `disallowReloadKeybinding`: if set to `true`, reloading the current browser window won't be possible with the <kbd>Ctrl/Cmd</kbd> + <kbd>r</kbd> keybinding. It is `false` by default. Has no effect if not in an electron environment.
137
- - `windowOptions`: override or add properties to the electron `windowOptions`.
138
-
139
- ```json
140
- {
141
- "theia": {
142
- "target": "electron",
143
- "frontend": {
144
- "config": {
145
- "electron": {
146
- "disallowReloadKeybinding": true,
147
- "windowOptions": {
148
- "titleBarStyle": "hidden",
149
- "webPreferences": {
150
- "webSecurity": false,
151
- "nodeIntegration": true,
152
- "webviewTag": true
153
- }
154
- }
155
- }
156
- }
157
- }
158
- }
159
- }
160
- ```
161
-
162
- ### Using Latest Builds
163
-
164
- If you set `next` in your theia config, then Theia will prefer `next` over `latest` as the latest tag.
165
-
166
- ```json
167
- {
168
- "theia": {
169
- "next": "true"
170
- }
171
- }
172
- ```
173
-
174
- ## Building
175
-
176
- ### Build
177
-
178
- The following command can be used to build the application:
179
-
180
- **Development**
181
-
182
- theia build --mode development
183
-
184
- **Production**
185
-
186
- theia build
187
-
188
- ### Watch
189
-
190
- The following command can be used to rebuild the application on each change:
191
-
192
- theia build --watch --mode development
193
-
194
- ### Clean
195
-
196
- The following command can be used to clean up the build result:
197
-
198
- In order to clean up the build result:
199
-
200
- theia clean
201
-
202
- Arguments are passed directly to [webpack](https://webpack.js.org/). Use `--help` to learn which options are supported.
203
-
204
- ## Rebuilding Native Modules
205
-
206
- In order to run Electron targets, one should rebuild native node modules for an electron version:
207
-
208
- theia rebuild
209
-
210
- To rollback native modules, change the target to `browser` and run the command again.
211
-
212
- ## Running
213
-
214
- To run the backend server:
215
-
216
- theia start
217
-
218
- For the browser target a server is started on http://localhost:3000 by default.
219
- For the electron target a server is started on `localhost` host with the dynamically allocated port by default.
220
-
221
- Arguments are passed directly to a server, use `--help` to learn which options are supported.
222
-
223
- ## Debugging
224
-
225
- To debug the backend server:
226
-
227
- theia start --inspect
228
-
229
- Theia CLI accepts `--inspect` node flag: https://nodejs.org/en/docs/inspector/#command-line-options.
230
-
231
-
232
- ## Testing
233
-
234
- ### Enabling Tests
235
-
236
- First enable `expose-loader` in `webpack.config.js`
237
- to expose modules from bundled code to tests
238
- by un-commenting:
239
-
240
- ```js
241
- /**
242
- * Expose bundled modules on window.theia.moduleName namespace, e.g.
243
- * window['theia']['@theia/core/lib/common/uri'].
244
- * Such syntax can be used by external code, for instance, for testing.
245
- config.module.rules.push({
246
- test: /\.js$/,
247
- loader: require.resolve('@theia/application-manager/lib/expose-loader')
248
- }); */
249
- ```
250
-
251
- After that run `theia build` again to expose modules in generated bundle files.
252
-
253
- ### Writing Tests
254
-
255
- See [API Integration Testing](../../doc/api-testing.md) docs.
256
-
257
- ### Running Tests
258
-
259
- To start the backend server and run API tests against it:
260
-
261
- theia test
262
-
263
- After running test this command terminates. It accepts the same arguments as `start` command,
264
- but as well additional arguments to specify test files, enable inspection or generate test coverage.
265
-
266
- ### Configuring Tests
267
-
268
- To specify test files:
269
-
270
- theia test . --test-spec=./test/*.spec.js --plugins=./plugins
271
-
272
- This command starts the application with a current directory as a workspace,
273
- load VS Code extensions from `./plugins`
274
- and run test files matching `./test/*.spec.js` glob.
275
-
276
- Use `theia test --help` to learn more options. Test specific options start with `--test-`.
277
-
278
- ### Inspecting Tests
279
-
280
- To inspect tests:
281
-
282
- theia test . --test-spec=./test/*.spec.js --test-inspect --inspect
283
-
284
- This command starts the application server in the debug mode
285
- as well as open the Chrome devtools to debug frontend code and test files.
286
- One can reload/rerun code and tests by simply reloading the page.
287
-
288
- > Important! Since tests are relying on focus, while running tests keep the page focused.
289
-
290
- ### Reporting Test Coverage
291
-
292
- To report test coverage:
293
-
294
- theia test . --test-spec=./test/*.spec.js --test-coverage
295
-
296
- This command executes tests and generate test coverage files consumable by [Istanbul](https://github.com/istanbuljs/istanbuljs).
297
-
298
- ## Downloading Plugins
299
-
300
- The `@theia/cli` package provides a utility for applications to define and download a list of plugins it requires as part of their application using the command:
301
-
302
- theia download:plugins
303
-
304
- This utility works by declaring in the `package.json` a location to store downloaded plugins, as well defining each plugin the application wishes to download.
305
-
306
- The property `theiaPluginsDir` describes the location of which to download plugins (relative to the `package.json`), for example:
307
-
308
- ```json
309
- "theiaPluginsDir": "plugins",
310
- ```
311
-
312
- The property `theiaPlugins` describes the list of plugins to download, for example:
313
-
314
- ```json
315
- "theiaPlugins": {
316
- "vscode.theme-defaults": "https://open-vsx.org/api/vscode/theme-defaults/1.62.3/file/vscode.theme-defaults-1.62.3.vsix",
317
- "vscode-builtin-extension-pack": "https://open-vsx.org/api/eclipse-theia/builtin-extension-pack/1.50.0/file/eclipse-theia.builtin-extension-pack-1.50.0.vsix",
318
- "vscode-editorconfig": "https://open-vsx.org/api/EditorConfig/EditorConfig/0.14.4/file/EditorConfig.EditorConfig-0.14.4.vsix",
319
- "vscode-eslint": "https://open-vsx.org/api/dbaeumer/vscode-eslint/2.1.1/file/dbaeumer.vscode-eslint-2.1.1.vsix",
320
- }
321
- ```
322
-
323
- Please note that in order to use `extensionPacks` properly you should use `namespace.name` as the `id` you give extensions so that when resolving the pack we do not re-download an existing plugin under a different name.
324
-
325
- The property `theiaPluginsExcludeIds` can be used to declare the list of plugin `ids` to exclude when using extension-packs.
326
- The `ids` referenced by the property will not be downloaded when resolving extension-packs, and can be used to omit extensions which are problematic or unwanted. The format of the property is as follows:
327
-
328
- ```json
329
- "theiaPluginsExcludeIds": [
330
- "vscode.cpp"
331
- ]
332
- ```
333
-
334
- ## Autogenerated Application
335
-
336
- This package can auto-generate application code for both the backend and frontend, as well as webpack configuration files.
337
-
338
- When targeting Electron, the `electron-main.js` script will spawn the backend process in a Node.js sub-process, where Electron's API won't be available. To prevent the generated application from forking the backend, you can pass a `--no-cluster` flag. This flag is mostly useful/used for debugging.
339
-
340
- ```sh
341
- # when developing a Theia application with @theia/cli:
342
- yarn theia start --no-cluster
343
-
344
- # when starting a bundled application made using @theia/cli:
345
- bundled-application.exe --no-cluster
346
- ```
347
-
348
- ## Additional Information
349
-
350
- - [Theia - GitHub](https://github.com/eclipse-theia/theia)
351
- - [Theia - Website](https://theia-ide.org/)
352
-
353
- ## License
354
-
355
- - [Eclipse Public License 2.0](http://www.eclipse.org/legal/epl-2.0/)
356
- - [一 (Secondary) GNU General Public License, version 2 with the GNU Classpath Exception](https://projects.eclipse.org/license/secondary-gpl-2.0-cp)
357
-
358
- ## Trademark
359
- "Theia" is a trademark of the Eclipse Foundation
360
- https://www.eclipse.org/theia
1
+ <div align='center'>
2
+
3
+ <br />
4
+
5
+ <img src='https://raw.githubusercontent.com/eclipse-theia/theia/master/logo/theia.svg?sanitize=true' alt='theia-ext-logo' width='100px' />
6
+
7
+ <h2>ECLIPSE THEIA - CLI</h2>
8
+
9
+ <hr />
10
+
11
+ </div>
12
+
13
+ ## Outline
14
+
15
+ - [**Description**](#description)
16
+ - [**Getting Started**](#getting-started)
17
+ - [**Configure**](#configure)
18
+ - [**Application Properties**](#application-properties)
19
+ - [**Default Preferences**](#default-preferences)
20
+ - [**Default Theme**](#default-theme)
21
+ - [**Build Target**](#build-target)
22
+ - [**Electron Frontend Application Config**](#electron-frontend-application-config)
23
+ - [**Using Latest Builds**](#using-latest-builds)
24
+ - [**Building**](#building)
25
+ - [**Build**](#build)
26
+ - [**Watch**](#watch)
27
+ - [**Clean**](#clean)
28
+ - [**Rebuilding Native Modules**](#rebuilding-native-modules)
29
+ - [**Running**](#running)
30
+ - [**Debugging**](#debugging)
31
+ - [**Testing**](#testing)
32
+ - [**Enabling Tests**](#enabling-tests)
33
+ - [**Writing Tests**](#writing-tests)
34
+ - [**Running Tests**](#running-tests)
35
+ - [**Configuring Tests**](#configuring-tests)
36
+ - [**Inspecting Tests**](#inspecting-tests)
37
+ - [**Reporting Test Coverage**](#reporting-test-coverage)
38
+ - [**Downloading Plugins**](#downloading-plugins)
39
+ - [**Autogenerated Application**](#autogenerated-application)
40
+
41
+ ## Description
42
+
43
+ The `@theia/cli` package provides helpful scripts and commands for extension and application development.
44
+ The contributed `theia`, is a command line tool to manage Theia-based applications.
45
+
46
+ ## Getting Started
47
+
48
+ Install `@theia/cli` as a dev dependency in your application.
49
+
50
+ With yarn:
51
+
52
+ ```bash
53
+ yarn add @theia/cli@next --dev
54
+ ```
55
+
56
+ With npm:
57
+
58
+ ```bash
59
+ npm install @theia/cli@next --save-dev
60
+ ```
61
+
62
+ ## Configure
63
+
64
+ A Theia-based application can be configured via the `theia` property as described in the application's `package.json`.
65
+
66
+ ### Application Properties
67
+
68
+ It is possible `Application Properties` for a given application.\
69
+ For example, an application can define it's `applicationName` using the following syntax:
70
+
71
+ ```json
72
+ "theia": {
73
+ "frontend": {
74
+ "config": {
75
+ "applicationName": "Custom Application Name",
76
+ }
77
+ }
78
+ },
79
+ ```
80
+
81
+ ### Default Preferences
82
+
83
+ If required, an application can define for a given preference, the default value.
84
+ For example, an application can update the preference value for `files.enableTrash` based on it's requirements:
85
+
86
+ ```json
87
+
88
+ "theia": {
89
+ "frontend": {
90
+ "config": {
91
+ "preferences": {
92
+ "files.enableTrash": false
93
+ }
94
+ }
95
+ }
96
+ },
97
+ ```
98
+
99
+ ### Default Theme
100
+
101
+ Default color and icon themes can be configured in `theia.frontend.config` section:
102
+ ```json
103
+ "theia": {
104
+ "frontend": {
105
+ "config": {
106
+ "defaultTheme": "light",
107
+ "defaultIconTheme": "vs-seti"
108
+ }
109
+ }
110
+ },
111
+ ```
112
+
113
+ ### Build Target
114
+
115
+ The following targets are supported: `browser` and `electron`. By default `browser` target is used.
116
+ The target can be configured in the `package.json` via `theia/target` property, e.g:
117
+
118
+ ```json
119
+ {
120
+ "theia": {
121
+ "target": "electron"
122
+ },
123
+ "dependencies": {
124
+ "@theia/electron": "latest"
125
+ }
126
+ }
127
+ ```
128
+
129
+ For `electron` target applications, is it mandatory to include **Electron** runtime dependencies. The `@theia/electron` package is the easiest way to install the necessary dependencies.
130
+
131
+ ### Electron Frontend Application Config
132
+
133
+ The `electron` frontend application configuration provides configuration options for the `electron` target.\
134
+ The currently supported configurations are:
135
+
136
+ - `disallowReloadKeybinding`: if set to `true`, reloading the current browser window won't be possible with the <kbd>Ctrl/Cmd</kbd> + <kbd>r</kbd> keybinding. It is `false` by default. Has no effect if not in an electron environment.
137
+ - `windowOptions`: override or add properties to the electron `windowOptions`.
138
+
139
+ ```json
140
+ {
141
+ "theia": {
142
+ "target": "electron",
143
+ "frontend": {
144
+ "config": {
145
+ "electron": {
146
+ "disallowReloadKeybinding": true,
147
+ "windowOptions": {
148
+ "titleBarStyle": "hidden",
149
+ "webPreferences": {
150
+ "webSecurity": false,
151
+ "nodeIntegration": true,
152
+ "webviewTag": true
153
+ }
154
+ }
155
+ }
156
+ }
157
+ }
158
+ }
159
+ }
160
+ ```
161
+
162
+ ### Using Latest Builds
163
+
164
+ If you set `next` in your theia config, then Theia will prefer `next` over `latest` as the latest tag.
165
+
166
+ ```json
167
+ {
168
+ "theia": {
169
+ "next": "true"
170
+ }
171
+ }
172
+ ```
173
+
174
+ ## Building
175
+
176
+ ### Build
177
+
178
+ The following command can be used to build the application:
179
+
180
+ **Development**
181
+
182
+ theia build --mode development
183
+
184
+ **Production**
185
+
186
+ theia build
187
+
188
+ ### Watch
189
+
190
+ The following command can be used to rebuild the application on each change:
191
+
192
+ theia build --watch --mode development
193
+
194
+ ### Clean
195
+
196
+ The following command can be used to clean up the build result:
197
+
198
+ In order to clean up the build result:
199
+
200
+ theia clean
201
+
202
+ Arguments are passed directly to [webpack](https://webpack.js.org/). Use `--help` to learn which options are supported.
203
+
204
+ ## Rebuilding Native Modules
205
+
206
+ In order to run Electron targets, one should rebuild native node modules for an electron version:
207
+
208
+ theia rebuild
209
+
210
+ To rollback native modules, change the target to `browser` and run the command again.
211
+
212
+ ## Running
213
+
214
+ To run the backend server:
215
+
216
+ theia start
217
+
218
+ For the browser target a server is started on http://localhost:3000 by default.
219
+ For the electron target a server is started on `localhost` host with the dynamically allocated port by default.
220
+
221
+ Arguments are passed directly to a server, use `--help` to learn which options are supported.
222
+
223
+ ## Debugging
224
+
225
+ To debug the backend server:
226
+
227
+ theia start --inspect
228
+
229
+ Theia CLI accepts `--inspect` node flag: https://nodejs.org/en/docs/inspector/#command-line-options.
230
+
231
+
232
+ ## Testing
233
+
234
+ ### Enabling Tests
235
+
236
+ First enable `expose-loader` in `webpack.config.js`
237
+ to expose modules from bundled code to tests
238
+ by un-commenting:
239
+
240
+ ```js
241
+ /**
242
+ * Expose bundled modules on window.theia.moduleName namespace, e.g.
243
+ * window['theia']['@theia/core/lib/common/uri'].
244
+ * Such syntax can be used by external code, for instance, for testing.
245
+ config.module.rules.push({
246
+ test: /\.js$/,
247
+ loader: require.resolve('@theia/application-manager/lib/expose-loader')
248
+ }); */
249
+ ```
250
+
251
+ After that run `theia build` again to expose modules in generated bundle files.
252
+
253
+ ### Writing Tests
254
+
255
+ See [API Integration Testing](../../doc/api-testing.md) docs.
256
+
257
+ ### Running Tests
258
+
259
+ To start the backend server and run API tests against it:
260
+
261
+ theia test
262
+
263
+ After running test this command terminates. It accepts the same arguments as `start` command,
264
+ but as well additional arguments to specify test files, enable inspection or generate test coverage.
265
+
266
+ ### Configuring Tests
267
+
268
+ To specify test files:
269
+
270
+ theia test . --test-spec=./test/*.spec.js --plugins=./plugins
271
+
272
+ This command starts the application with a current directory as a workspace,
273
+ load VS Code extensions from `./plugins`
274
+ and run test files matching `./test/*.spec.js` glob.
275
+
276
+ Use `theia test --help` to learn more options. Test specific options start with `--test-`.
277
+
278
+ ### Inspecting Tests
279
+
280
+ To inspect tests:
281
+
282
+ theia test . --test-spec=./test/*.spec.js --test-inspect --inspect
283
+
284
+ This command starts the application server in the debug mode
285
+ as well as open the Chrome devtools to debug frontend code and test files.
286
+ One can reload/rerun code and tests by simply reloading the page.
287
+
288
+ > Important! Since tests are relying on focus, while running tests keep the page focused.
289
+
290
+ ### Reporting Test Coverage
291
+
292
+ To report test coverage:
293
+
294
+ theia test . --test-spec=./test/*.spec.js --test-coverage
295
+
296
+ This command executes tests and generate test coverage files consumable by [Istanbul](https://github.com/istanbuljs/istanbuljs).
297
+
298
+ ## Downloading Plugins
299
+
300
+ The `@theia/cli` package provides a utility for applications to define and download a list of plugins it requires as part of their application using the command:
301
+
302
+ theia download:plugins
303
+
304
+ This utility works by declaring in the `package.json` a location to store downloaded plugins, as well defining each plugin the application wishes to download.
305
+
306
+ The property `theiaPluginsDir` describes the location of which to download plugins (relative to the `package.json`), for example:
307
+
308
+ ```json
309
+ "theiaPluginsDir": "plugins",
310
+ ```
311
+
312
+ The property `theiaPlugins` describes the list of plugins to download, for example:
313
+
314
+ ```json
315
+ "theiaPlugins": {
316
+ "vscode.theme-defaults": "https://open-vsx.org/api/vscode/theme-defaults/1.62.3/file/vscode.theme-defaults-1.62.3.vsix",
317
+ "vscode-builtin-extension-pack": "https://open-vsx.org/api/eclipse-theia/builtin-extension-pack/1.50.0/file/eclipse-theia.builtin-extension-pack-1.50.0.vsix",
318
+ "vscode-editorconfig": "https://open-vsx.org/api/EditorConfig/EditorConfig/0.14.4/file/EditorConfig.EditorConfig-0.14.4.vsix",
319
+ "vscode-eslint": "https://open-vsx.org/api/dbaeumer/vscode-eslint/2.1.1/file/dbaeumer.vscode-eslint-2.1.1.vsix",
320
+ }
321
+ ```
322
+
323
+ Please note that in order to use `extensionPacks` properly you should use `namespace.name` as the `id` you give extensions so that when resolving the pack we do not re-download an existing plugin under a different name.
324
+
325
+ The property `theiaPluginsExcludeIds` can be used to declare the list of plugin `ids` to exclude when using extension-packs.
326
+ The `ids` referenced by the property will not be downloaded when resolving extension-packs, and can be used to omit extensions which are problematic or unwanted. The format of the property is as follows:
327
+
328
+ ```json
329
+ "theiaPluginsExcludeIds": [
330
+ "vscode.cpp"
331
+ ]
332
+ ```
333
+
334
+ ## Autogenerated Application
335
+
336
+ This package can auto-generate application code for both the backend and frontend, as well as webpack configuration files.
337
+
338
+ When targeting Electron, the `electron-main.js` script will spawn the backend process in a Node.js sub-process, where Electron's API won't be available. To prevent the generated application from forking the backend, you can pass a `--no-cluster` flag. This flag is mostly useful/used for debugging.
339
+
340
+ ```sh
341
+ # when developing a Theia application with @theia/cli:
342
+ yarn theia start --no-cluster
343
+
344
+ # when starting a bundled application made using @theia/cli:
345
+ bundled-application.exe --no-cluster
346
+ ```
347
+
348
+ ## Additional Information
349
+
350
+ - [Theia - GitHub](https://github.com/eclipse-theia/theia)
351
+ - [Theia - Website](https://theia-ide.org/)
352
+
353
+ ## License
354
+
355
+ - [Eclipse Public License 2.0](http://www.eclipse.org/legal/epl-2.0/)
356
+ - [一 (Secondary) GNU General Public License, version 2 with the GNU Classpath Exception](https://projects.eclipse.org/license/secondary-gpl-2.0-cp)
357
+
358
+ ## Trademark
359
+ "Theia" is a trademark of the Eclipse Foundation
360
+ https://www.eclipse.org/theia