forked from microsoft/vscode-java-dependency
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.ts
More file actions
26 lines (23 loc) · 784 Bytes
/
Copy pathconstants.ts
File metadata and controls
26 lines (23 loc) · 784 Bytes
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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
export namespace Context {
export const EXTENSION_ACTIVATED: string = "java:projectManagerActivated";
export const SUPPORTED_BUILD_FILES: string = "java:supportedBuildFiles";
export const NO_JAVA_PEOJECT: string = "java:noJavaProjects";
}
export namespace Explorer {
export enum ContextValueType {
WorkspaceFolder = "workspaceFolder",
Project = "project",
Container = "container",
PackageRoot = "packageRoot",
Package = "package",
Jar = "jar",
File = "file",
Type = "type",
Folder = "folder",
}
}
export namespace Build {
export const FILE_NAMES: string[] = ["pom.xml", "build.gradle"];
}