FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
java-debug/pom.xml at variable_binary_format · mylog00/java-debug · GitHub
mylog00
/
java-debug
Public
forked from
microsoft/java-debug
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
java-debug
/
pom.xml
Copy path
More file actions
More file actions
Latest commit
History
History
History
184 lines (179 loc) · 7.53 KB
Breadcrumbs
java-debug
/
pom.xml
Copy path
File metadata and controls
184 lines (179 loc) · 7.53 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<
project
xmlns
=
"
http://maven.apache.org/POM/4.0.0
"
xmlns
:
xsi
=
"
http://www.w3.org/2001/XMLSchema-instance
"
xsi
:
schemaLocation
=
"
http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd
"
>
<
modelVersion
>4.0.0</
modelVersion
>
<
groupId
>com.microsoft.java</
groupId
>
<
artifactId
>java-debug-parent</
artifactId
>
<
name
>
${base.name}
:: Parent</
name
>
<
description
>The Java Debug Server is an implementation of Visual Studio Code (VSCode) Debug Protocol. It can be used in Visual Studio Code to debug Java programs.</
description
>
<
url
>https://github.com/Microsoft/java-debug</
url
>
<
version
>0.38.0</
version
>
<
packaging
>pom</
packaging
>
<
properties
>
<
base
.name>Java Debug Server for Visual Studio Code</
base
.name>
<
project
.build.sourceEncoding>UTF-8</
project
.build.sourceEncoding>
<
tycho-version
>2.7.3</
tycho-version
>
<
checkstyleDir
>${basedir}</
checkstyleDir
>
</
properties
>
<
licenses
>
<
license
>
<
name
>Eclipse Public License 1.0</
name
>
<
url
>https://github.com/Microsoft/java-debug/blob/master/LICENSE.txt</
url
>
<
distribution
>repo</
distribution
>
</
license
>
</
licenses
>
<
developers
>
<
developer
>
<
id
>akaroml</
id
>
<
name
>Rome Li</
name
>
<
email
>roml@microsoft.com</
email
>
</
developer
>
<
developer
>
<
id
>testforstephen</
id
>
<
name
>Jinbo Wang</
name
>
<
email
>jinbwan@microsoft.com</
email
>
</
developer
>
<
developer
>
<
id
>andxu</
id
>
<
name
>Andy Xu</
name
>
<
email
>andxu@microsoft.com</
email
>
</
developer
>
<
developer
>
<
id
>yaohaizh</
id
>
<
name
>Yaohai Zheng</
name
>
<
email
>yaozheng@microsoft.com</
email
>
</
developer
>
</
developers
>
<
organization
>
<
name
>Microsoft</
name
>
<
url
>https://www.microsoft.com</
url
>
</
organization
>
<
scm
>
<
connection
>scm:git:git://github.com/Microsoft/java-debug.git</
connection
>
<
developerConnection
>scm:git:ssh://github.com:Microsoft/java-debug.git</
developerConnection
>
<
url
>https://github.com/Microsoft/java-debug/tree/master</
url
>
</
scm
>
<
modules
>
<
module
>com.microsoft.java.debug.core</
module
>
<
module
>com.microsoft.java.debug.plugin</
module
>
<
module
>com.microsoft.java.debug.repository</
module
>
</
modules
>
<
build
>
<
pluginManagement
>
<
plugins
>
<
plugin
>
<
groupId
>org.apache.maven.plugins</
groupId
>
<
artifactId
>maven-failsafe-plugin</
artifactId
>
<
version
>2.15</
version
>
<
executions
>
<!--
Ensures that both integration-test and verify
goals of the Failsafe Maven plugin are executed.
-->
<
execution
>
<
id
>integration-tests</
id
>
<
goals
>
<
goal
>integration-test</
goal
>
<
goal
>verify</
goal
>
</
goals
>
<
configuration
>
<!--
Sets the VM argument line used when
integration tests are run.
-->
<
argLine
>
${failsafeArgLine}
</
argLine
>
<!--
Skips integration tests if the value
of skip.integration.tests property is true
-->
<
skipTests
>
${skip.integration.tests}
</
skipTests
>
</
configuration
>
</
execution
>
</
executions
>
</
plugin
>
<
plugin
>
<
groupId
>org.apache.maven.plugins</
groupId
>
<
artifactId
>maven-dependency-plugin</
artifactId
>
<
executions
>
<
execution
>
<?
m2e
execute onConfiguration
?>
<
id
>get-libs</
id
>
<
goals
>
<
goal
>copy</
goal
>
</
goals
>
<
phase
>validate</
phase
>
</
execution
>
</
executions
>
<
configuration
>
<
skip
>false</
skip
>
<
outputDirectory
>
${basedir}
/lib/</
outputDirectory
>
<!--
baseVersion is to avoid SNAPSHOT dependencies
being copied with ever daily changing timestamp
-->
<
useBaseVersion
>true</
useBaseVersion
>
</
configuration
>
</
plugin
>
<
plugin
>
<
groupId
>org.apache.maven.plugins</
groupId
>
<
artifactId
>maven-checkstyle-plugin</
artifactId
>
<
version
>3.1.0</
version
>
<
dependencies
>
<
dependency
>
<
groupId
>com.puppycrawl.tools</
groupId
>
<
artifactId
>checkstyle</
artifactId
>
<
version
>8.29</
version
>
</
dependency
>
<
dependency
>
<
groupId
>com.github.sevntu-checkstyle</
groupId
>
<
artifactId
>sevntu-checkstyle-maven-plugin</
artifactId
>
<
version
>1.24.1</
version
>
</
dependency
>
</
dependencies
>
<
configuration
>
<
configLocation
>
${checkstyleDir}
/check_style.xml</
configLocation
>
<
failOnViolation
>true</
failOnViolation
>
</
configuration
>
</
plugin
>
<
plugin
>
<
groupId
>org.eclipse.tycho</
groupId
>
<
artifactId
>target-platform-configuration</
artifactId
>
<
version
>
${tycho-version}
</
version
>
</
plugin
>
</
plugins
>
</
pluginManagement
>
</
build
>
<
profiles
>
<
profile
>
<
id
>activate-in-module</
id
>
<
activation
>
<
file
>
<
exists
>
${basedir}
/../check_style.xml</
exists
>
</
file
>
</
activation
>
<
properties
>
<
checkstyleDir
>${basedir}/..</
checkstyleDir
>
</
properties
>
</
profile
>
</
profiles
>
<
repositories
>
<
repository
>
<
id
>202112</
id
>
<
layout
>p2</
layout
>
<
url
>https://download.eclipse.org/releases/2021-12/202112081000/</
url
>
</
repository
>
<
repository
>
<
id
>oss.sonatype.org</
id
>
<
url
>https://oss.sonatype.org/content/repositories/snapshots/</
url
>
<
snapshots
>
<
enabled
>true</
enabled
>
</
snapshots
>
</
repository
>
<
repository
>
<
id
>JDT.LS</
id
>
<
layout
>p2</
layout
>
<
url
>https://download.eclipse.org/jdtls/snapshots/repository/latest/</
url
>
</
repository
>
<
repository
>
<
id
>JBOLL.TOOLS</
id
>
<
layout
>p2</
layout
>
<
url
>https://download.jboss.org/jbosstools/updates/m2e-extensions/m2e-apt/1.5.3-2019-11-08_11-04-22-H22/</
url
>
</
repository
>
<
repository
>
<
id
>orbit</
id
>
<
layout
>p2</
layout
>
<
url
>https://download.eclipse.org/tools/orbit/R-builds/R20170516192513/repository/</
url
>
</
repository
>
</
repositories
>
</
project
>
Back
|
FazBrowse Home
|
New Git URL