huangcm
2024-12-18 9d29be7f7249789d6ffd0440067187a9f040c2cd
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
modelVersion: 4.0.0
groupId: org.yaml
artifactId: snakeyaml
version: 1.17-SNAPSHOT
packaging: jar # TODO must be bundle
properties: {project.scm.id: bitbucket, project.build.sourceEncoding: UTF-8}
name: SnakeYAML
description: YAML 1.1 parser and emitter for Java
inceptionYear: '2008'
url: http://www.snakeyaml.org
issueManagement: {system: Bitbucket, url: 'https://bitbucket.org/asomov/snakeyaml/issues'}
mailingLists:
- {name: SnakeYAML developers and users List, post: snakeyaml-core@googlegroups.com}
scm: {connection: 'scm:hg:http://bitbucket.org/asomov/snakeyaml', developerConnection: 'scm:hg:https://bitbucket.org/asomov/snakeyaml',
  tag: HEAD, url: 'https://bitbucket.org/asomov/snakeyaml/src'}
licenses:
- {distribution: repo, name: 'Apache License, Version 2.0', url: 'http://www.apache.org/licenses/LICENSE-2.0.txt'}
developers:
- {email: public.somov@gmail.com, id: asomov, name: Andrey Somov}
- {email: alexander.maslov@gmail.com, id: maslovalex, name: Alexander Maslov}
- {email: jordanangold@gmail.com, id: Jordan, name: Jordan Angold}
prerequisites: {maven: 3.3.1}
dependencies:
- {artifactId: junit, groupId: junit, optional: false, scope: test, type: jar, version: '4.12'}
- {artifactId: spring, groupId: org.springframework, optional: false, scope: test,
  type: jar, version: 2.5.6}
- {artifactId: velocity, groupId: org.apache.velocity, optional: false, scope: test,
  type: jar, version: 1.6.2}
- {artifactId: joda-time, groupId: joda-time, optional: false, scope: test, type: jar,
  version: '1.6'}
distributionManagement:
  repository: {id: sonatype-nexus-staging, layout: default, name: Nexus Release Repository,
    uniqueVersion: true, url: 'https://oss.sonatype.org/service/local/staging/deploy/maven2/'}
  snapshotRepository: {id: sonatype-nexus-snapshots, layout: default, name: Sonatype Nexus Snapshots,
    uniqueVersion: false, url: 'https://oss.sonatype.org/content/repositories/snapshots/'}
build:
  pluginManagement:
    plugins:
    - {artifactId: maven-site-plugin, extensions: false, groupId: org.apache.maven.plugins,
      inherited: true, version: '3.4'}
  plugins:
  - artifactId: maven-compiler-plugin
    configuration: {source: '1.5', target: '1.5', encoding: '${project.build.sourceEncoding}'}
    extensions: false
    groupId: org.apache.maven.plugins
    inherited: true
    version: '3.3'
  - artifactId: maven-surefire-plugin
    configuration:
      argLine: -Xmx512m
      includes: {include: '**/*Test.java'}
      excludes: {exclude: '**/ParallelTest.java'}
    extensions: false
    groupId: org.apache.maven.plugins
    inherited: true
    version: 2.18.1
  - artifactId: maven-eclipse-plugin
    configuration: {buildOutputDirectory: bin}
    extensions: false
    groupId: org.apache.maven.plugins
    inherited: true
    version: '2.10'
  - artifactId: cobertura-maven-plugin
    configuration:
      check: {totalBranchRate: '80', totalLineRate: '95'}
      formats: {format: xml}
      instrumentation:
        excludes: {exclude: org/yaml/snakeyaml/external/**}
    executions:
    - goals: [clean, check]
      id: default
      inherited: true
      priority: 0
    extensions: false
    groupId: org.codehaus.mojo
    inherited: true
    version: '2.7'
  - artifactId: maven-changes-plugin
    executions:
    - configuration: {failOnError: 'true'}
      goals: [changes-validate]
      id: validate-changes
      inherited: true
      phase: pre-site
      priority: 0
    extensions: false
    groupId: org.apache.maven.plugins
    inherited: true
    version: '2.11'
  - artifactId: maven-source-plugin
    executions:
    - goals: [jar]
      id: default
      inherited: true
      priority: 0
    extensions: false
    groupId: org.apache.maven.plugins
    inherited: true
    version: '2.4'
  - artifactId: maven-javadoc-plugin
    configuration:
      links: {link: 'http://java.sun.com/javase/6/docs/api/'}
    executions:
    - goals: [jar]
      id: attach-javadocs
      inherited: true
      priority: 0
    extensions: false
    groupId: org.apache.maven.plugins
    inherited: true
    version: 2.10.3
  - artifactId: maven-license-plugin
    configuration:
      header: src/etc/header.txt
      quiet: 'false'
      failIfMissing: 'true'
      aggregate: 'false'
      includes: {include: src/**/*.java}
      excludes: {exclude: src/main/java/org/yaml/snakeyaml/external/**}
      useDefaultExcludes: 'true'
      useDefaultMapping: 'true'
      strictCheck: 'true'
      encoding: UTF-8
    executions:
    - goals: [format]
      id: default
      inherited: true
      phase: site
      priority: 0
    extensions: false
    groupId: com.mycila.maven-license-plugin
    inherited: true
    version: 1.10.b1
  - artifactId: maven-bundle-plugin
    configuration:
      instructions: {_nouses: 'true', Export-Package: "!org.yaml.snakeyaml.external*,\n\
          \                            org.yaml.snakeyaml.*;version=${project.version}",
        Bundle-RequiredExecutionEnvironment: J2SE-1.5}
    extensions: true
    groupId: org.apache.felix
    inherited: true
    version: 2.5.4
  - artifactId: maven-site-plugin
    executions:
    - goals: [attach-descriptor]
      id: attach-descriptor
      inherited: true
      priority: 0
    extensions: false
    groupId: org.apache.maven.plugins
    inherited: true
    version: '3.4'
profiles:
- activation: {activeByDefault: false, jdk: '[1.8,)'}
  build:
    plugins:
    - artifactId: maven-javadoc-plugin
      configuration: {additionalparam: '-Xdoclint:none'}
      extensions: false
      groupId: org.apache.maven.plugins
      inherited: true
    - artifactId: maven-site-plugin
      configuration:
        reportPlugins:
          plugin:
            groupId: org.apache.maven.plugins
            artifactId: maven-javadoc-plugin
            configuration: {additionalparam: '-Xdoclint:none'}
      extensions: false
      groupId: org.apache.maven.plugins
      inherited: true
  id: jdk8
  source: pom
- build:
    plugins:
    - artifactId: maven-compiler-plugin
      configuration: {source: '1.8', target: '1.8'}
      extensions: false
      groupId: org.apache.maven.plugins
      inherited: true
    - artifactId: build-helper-maven-plugin
      executions:
      - configuration:
          sources: {source: '${basedir}/src/test/java8/'}
        goals: [add-test-source]
        id: add-java8-test-source
        inherited: true
        phase: generate-test-sources
        priority: 0
      extensions: false
      groupId: org.codehaus.mojo
      inherited: true
      version: '1.10'
  id: with-java8-tests
  source: pom
- activation:
    activeByDefault: false
    property: {name: performRelease, value: 'true'}
  build:
    plugins:
    - artifactId: maven-gpg-plugin
      executions:
      - goals: [sign]
        id: sign-artifacts
        inherited: true
        phase: verify
        priority: 0
      extensions: false
      groupId: org.apache.maven.plugins
      inherited: true
      version: '1.6'
  id: release
  source: pom
- build:
    plugins:
    - {artifactId: findbugs-maven-plugin, extensions: false, groupId: org.codehaus.mojo,
      inherited: true, version: 3.0.2}
    - {artifactId: maven-pmd-plugin, extensions: false, groupId: org.apache.maven.plugins,
      inherited: true, version: '3.5'}
  id: findbugs
  reporting:
    excludeDefaults: false
    plugins:
    - {artifactId: maven-jxr-plugin, groupId: org.apache.maven.plugins, inherited: true,
      version: '2.5'}
    - {artifactId: findbugs-maven-plugin, groupId: org.codehaus.mojo, inherited: true,
      version: 3.0.0}
    - artifactId: maven-pmd-plugin
      configuration:
        linkXref: 'true'
        sourceEncoding: utf-8
        minimumTokens: '100'
        targetJdk: '1.5'
        excludes: {exclude: '**/external/*.java'}
      groupId: org.apache.maven.plugins
      inherited: true
      version: '3.4'
  source: pom
- build:
    plugins:
    - artifactId: maven-resources-plugin
      executions:
      - configuration:
          outputDirectory: ${android.src}
          resources:
            resource:
              directory: ${basedir}/src/main/java
              filtering: 'false'
              excludes: {exclude: org/yaml/snakeyaml/introspector/MethodProperty.java}
        goals: [copy-resources]
        id: copy-src-for-android
        inherited: true
        phase: generate-sources
        priority: 0
      - configuration:
          outputDirectory: ${android.test.classes}
          resources:
            resource: {directory: '${basedir}/src/test/resources'}
        goals: [copy-resources]
        id: copy-test-resources-for-android
        inherited: true
        phase: process-test-resources
        priority: 0
      extensions: false
      groupId: org.apache.maven.plugins
      inherited: true
      version: '2.7'
    - artifactId: maven-patch-plugin
      configuration: {patchDirectory: '${basedir}/src/patches/android/', targetDirectory: '${android.src}',
        skipApplication: 'false', strip: '4'}
      executions:
      - configuration: {patchTrackingFile: '${project.build.directory}/android/patches-applied.txt',
          naturalOrderProcessing: 'true'}
        goals: [apply]
        id: android-patches
        inherited: true
        phase: process-sources
        priority: 0
      extensions: false
      groupId: org.apache.maven.plugins
      inherited: true
      version: '1.2'
    - artifactId: maven-antrun-plugin
      executions:
      - configuration:
          target:
            javac: {}
        goals: [run]
        id: build-for-android
        inherited: true
        phase: compile
        priority: 0
      extensions: false
      groupId: org.apache.maven.plugins
      inherited: true
      version: '1.8'
    - artifactId: maven-surefire-plugin
      executions:
      - configuration: {classesDirectory: '${android.classes}', reportsDirectory: '${project.build.directory}/android/surefire-reports',
          testClassesDirectory: '${android.test.classes}', testFailureIgnore: 'true'}
        goals: [test]
        id: test-android
        inherited: true
        phase: test
        priority: 0
      extensions: false
      groupId: org.apache.maven.plugins
      inherited: true
    - artifactId: maven-jar-plugin
      executions:
      - configuration: {classesDirectory: '${android.classes}', classifier: android}
        goals: [jar]
        id: package-android-jar
        inherited: true
        phase: package
        priority: 0
      extensions: false
      groupId: org.apache.maven.plugins
      inherited: true
  id: android
  properties: {android.test.classes: '${project.build.directory}/android/test-classes/',
    android.classes: '${project.build.directory}/android/classes/', android.src: '${project.build.directory}/android/src/'}
  source: pom
reporting:
  excludeDefaults: false
  plugins:
  - artifactId: maven-changes-plugin
    configuration: {issueLinkTemplate: 'https://bitbucket.org/asomov/snakeyaml/issues/%ISSUE%'}
    groupId: org.apache.maven.plugins
    inherited: true
    reportSets:
    - id: default
      inherited: true
      reports: [changes-report]
    version: '2.11'
  - artifactId: maven-surefire-report-plugin
    configuration: {showSuccess: 'true'}
    groupId: org.apache.maven.plugins
    inherited: true
    version: 2.18.1
  - artifactId: cobertura-maven-plugin
    configuration:
      formats: {format: xml}
    groupId: org.codehaus.mojo
    inherited: true
    version: '2.6'
  - artifactId: maven-javadoc-plugin
    groupId: org.apache.maven.plugins
    inherited: true
    reportSets:
    - configuration: {doctitle: 'API for ${project.name} ${project.version}', windowtitle: 'API
          for ${project.name} ${project.version}', testDoctitle: 'Test API for ${project.name}
          ${project.version}', testWindowtitle: 'Test API for ${project.name} ${project.version}'}
      id: html
      inherited: true
      reports: [javadoc]
    version: 2.10.1