forked from jonalv/cdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
705 lines (686 loc) · 23.8 KB
/
pom.xml
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
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
<?xml version="1.0" encoding="UTF-8"?>
<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>org.openscience.cdk</groupId>
<artifactId>cdk</artifactId>
<name>cdk</name>
<version>1.5.9-SNAPSHOT</version>
<packaging>pom</packaging>
<url>http://sourceforge.net/projects/cdk/</url>
<modules>
<module>bundle</module>
<module>base</module>
<module>descriptor</module>
<module>display</module>
<module>misc</module>
<module>storage</module>
<module>tool</module>
<module>legacy</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<licenses>
<license>
<name>GNU LGPL 2.1 or later</name>
<url>http://www.gnu.org/licenses/lgpl.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-- define the cdk.repo.url and cdk.repo.snapshots.url properties in
~/.m2/settings.xml -->
<distributionManagement>
<repository>
<id>cdk-repo</id>
<name>CDK Repository</name>
<url>${cdk.repo.url}</url>
</repository>
<snapshotRepository>
<id>cdk-repo-snapshots</id>
<name>CDK Snapshot Repository</name>
<url>${cdk.repo.snapshots.url}</url>
</snapshotRepository>
<!-- site is staged and then copied to a sub-folder of gh-pages, no
url is provided but the field is needed to stage the site. -->
<site>
<id>cdk.github.com</id>
<url>http://cdk.github.io/cdk/</url>
</site>
</distributionManagement>
<prerequisites>
<maven>3.0</maven>
</prerequisites>
<!-- developer = commit access -->
<developers>
<developer>
<name>Christoph Steinbeck</name>
</developer>
<developer>
<name>Egon Willighagen</name>
</developer>
<developer>
<name>Rajarshi Guha</name>
</developer>
<developer>
<name>Miguel Rojas Cherto</name>
</developer>
<developer>
<name>John May</name>
<url>http://www.github.com/johnmay/</url>
<organization>EMBL-EBI</organization>
<organizationUrl>http://ebi.ac.uk</organizationUrl>
<timezone>GMT</timezone>
</developer>
</developers>
<contributors>
<contributor>
<name>Sam Adams</name>
</contributor>
<contributor>
<name>Jonathan Alvarsson</name>
</contributor>
<contributor>
<name>Rich Apodaca</name>
</contributor>
<contributor>
<name>Saravanaraj N Ayyampalayam</name>
</contributor>
<contributor>
<name>Ulrich Bauer</name>
</contributor>
<contributor>
<name>Stephan Beisken</name>
</contributor>
<contributor>
<name>Arvid Berg</name>
</contributor>
<contributor>
<name>Ed Cannon</name>
</contributor>
<contributor>
<name>Alex Clark</name>
</contributor>
<contributor>
<name>Fabian Dortu</name>
</contributor>
<contributor>
<name>Krishna Dole</name>
</contributor>
<contributor>
<name>Martin Eklund</name>
</contributor>
<contributor>
<name>Luis de Figueiredo</name>
</contributor>
<contributor>
<name>Matteo Floris</name>
</contributor>
<contributor>
<name>Sambit Gaan</name>
</contributor>
<contributor>
<name>Dan Gezelter</name>
</contributor>
<contributor>
<name>Uli Fechner</name>
</contributor>
<contributor>
<name>Thorsten Flügel</name>
</contributor>
<contributor>
<name>Nimish Gopal</name>
</contributor>
<contributor>
<name>Yonquan Han</name>
</contributor>
<contributor>
<name>Thierry Hanser</name>
</contributor>
<contributor>
<name>Kai Hartmann</name>
</contributor>
<contributor>
<name>Cyrus Harmon</name>
</contributor>
<contributor>
<name>Tobias Helmus</name>
</contributor>
<contributor>
<name>Christian Hoppe</name>
</contributor>
<contributor>
<name>Oliver Horlacher</name>
</contributor>
<contributor>
<name>Miguel Howard</name>
</contributor>
<contributor>
<name>Andy Howlett</name>
</contributor>
<contributor>
<name>Nina Jeliazkova</name>
</contributor>
<contributor>
<name>Geert Josten</name>
</contributor>
<contributor>
<name>Klas Jönsson</name>
</contributor>
<contributor>
<name>Dmitry Katsubo</name>
</contributor>
<contributor>
<name>Jules Kerssemakers</name>
</contributor>
<contributor>
<name>Joos Kiener</name>
</contributor>
<contributor>
<name>Anatoli Krassavine</name>
</contributor>
<contributor>
<name>Stefan Kuhn</name>
</contributor>
<contributor>
<name>Uli Köhler</name>
</contributor>
<contributor>
<name>Violeta Labarta</name>
</contributor>
<contributor>
<name>Jonty Lawson</name>
</contributor>
<contributor>
<name>Kevin Lawson</name>
</contributor>
<contributor>
<name>Daniel Leidert</name>
</contributor>
<contributor>
<name>Edgar Luttmann</name>
</contributor>
<contributor>
<name>Todd Martin</name>
</contributor>
<contributor>
<name>Nathanaël Mazuir</name>
</contributor>
<contributor>
<name>Stephan Michels</name>
</contributor>
<contributor>
<name>Scooter Morris</name>
</contributor>
<contributor>
<name>Peter Murray-Rust</name>
</contributor>
<contributor>
<name>Carl Mäsak</name>
</contributor>
<contributor>
<name>Irilenia Nobeli</name>
</contributor>
<contributor>
<name>Peter Odéus</name>
</contributor>
<contributor>
<name>Niels Out</name>
</contributor>
<contributor>
<name>Jerome Pansanel</name>
</contributor>
<contributor>
<name>Julio Peironcely</name>
</contributor>
<contributor>
<name>Diego Pedrosa</name>
</contributor>
<contributor>
<name>Tomáš Pluskal</name>
</contributor>
<contributor>
<name>Chris Pudney</name>
</contributor>
<contributor>
<name>Syed Asad Rahman</name>
</contributor>
<contributor>
<name>Jonathan Rienstra-Kiracofe</name>
</contributor>
<contributor>
<name>Mark Rijnbeek</name>
</contributor>
<contributor>
<name>David Robinson</name>
</contributor>
<contributor>
<name>Bhupinder Sandhu</name>
</contributor>
<contributor>
<name>Jean-Sebastien Senecal</name>
</contributor>
<contributor>
<name>Onkar Shinde</name>
</contributor>
<contributor>
<name>Sulev Sild</name>
</contributor>
<contributor>
<name>Bradley Smith</name>
</contributor>
<contributor>
<name>Ola Spjuth</name>
</contributor>
<contributor>
<name>Christoph Steinbeck</name>
</contributor>
<contributor>
<name>Ralf Stephan</name>
</contributor>
<contributor>
<name>Daniel Szisz</name>
</contributor>
<contributor>
<name>Aleksey Tarkhov</name>
</contributor>
<contributor>
<name>Stephan Tomkinson</name>
</contributor>
<contributor>
<name>Gilleain Torrance</name>
</contributor>
<contributor>
<name>Andreas Truszkowski</name>
</contributor>
<contributor>
<name>Paul Turner</name>
</contributor>
<contributor>
<name>Mark B Vine</name>
</contributor>
<contributor>
<name>Joerg Wegner</name>
</contributor>
<contributor>
<name>Yap Chun Wei</name>
</contributor>
<contributor>
<name>Stephane Werner</name>
</contributor>
<contributor>
<name>Mark Williamson</name>
</contributor>
<contributor>
<name>Lars Willighagen</name>
</contributor>
<contributor>
<name>Yong Zhang</name>
</contributor>
<contributor>
<name>Daniel Zaharevitz</name>
</contributor>
</contributors>
<repositories>
<repository>
<id>ebi-repo</id>
<name>EBI Maven Repository</name>
<url>http://www.ebi.ac.uk/intact/maven/nexus/content/repositories/ebi-repo/</url>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>ebi-repo-snapshots</id>
<name>EBI Maven Snapshots Repository</name>
<url>http://www.ebi.ac.uk/intact/maven/nexus/content/repositories/ebi-repo-snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>interval:7200</updatePolicy>
</snapshots>
</repository>
<repository>
<id>ebi-repo-3rd</id>
<name>EBI Maven Snapshots Repository</name>
<url>http://www.ebi.ac.uk/~maven/m2repo</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>jni-inchi</id>
<name>JNI-InChI Maven Repository</name>
<url>http://jni-inchi.sourceforge.net/m2repo</url>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>ebi-repo</id>
<name>EBI Maven Repository</name>
<url>
http://www.ebi.ac.uk/intact/maven/nexus/content/repositories/ebi-repo/
</url>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
<!-- centralised versions for common dependencies -->
<dependencyManagement>
<dependencies>
<dependency>
<groupId>uk.ac.ebi.beam</groupId>
<artifactId>beam-core</artifactId>
<version>0.7</version>
</dependency>
<dependency>
<groupId>uk.ac.ebi.beam</groupId>
<artifactId>beam-func</artifactId>
<version>0.7</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>17.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.9.5</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.2</version>
<inherited>true</inherited>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<configuration>
<tags>
<!--cdk.depends and cdk.builddepends no longer used-->
<tag>
<name>cdk.set</name>
<placement>a</placement>
<head>Belongs to the set:</head>
</tag>
<tag>
<name>cdk.keyword</name>
<placement>a</placement>
<head>Keywords:</head>
</tag>
<tag>
<name>cdk.created</name>
<placement>a</placement>
<head>Created on:</head>
</tag>
<tag>
<name>cdk.require</name>
<placement>a</placement>
<head>Requires:</head>
</tag>
<tag>
<name>cdk.todo</name>
<placement>a</placement>
<head>To do:</head>
</tag>
<tag>
<name>cdk.license</name>
<placement>a</placement>
<head>License:</head>
</tag>
</tags>
<taglets>
<taglet>
<tagletClass>net.sf.cdk.tools.doclets.CDKCiteTaglet</tagletClass>
</taglet>
<taglet>
<tagletClass>net.sf.cdk.tools.doclets.CDKBugTaglet</tagletClass>
</taglet>
<taglet>
<tagletClass>net.sf.cdk.tools.doclets.CDKDictRefTaglet</tagletClass>
</taglet>
<taglet>
<tagletClass>net.sf.cdk.tools.doclets.CDKGitTaglet</tagletClass>
</taglet>
<taglet>
<tagletClass>net.sf.cdk.tools.doclets.CDKInChITaglet</tagletClass>
</taglet>
<taglet>
<tagletClass>net.sf.cdk.tools.doclets.CDKIOOptionsTaglet</tagletClass>
</taglet>
<taglet>
<tagletClass>net.sf.cdk.tools.doclets.CDKModuleTaglet</tagletClass>
</taglet>
<taglet>
<tagletClass>net.sf.cdk.tools.doclets.CDKThreadSafeTaglet</tagletClass>
</taglet>
<taglet>
<tagletClass>net.sf.cdk.tools.doclets.CDKThreadNonSafeTaglet</tagletClass>
</taglet>
</taglets>
<tagletArtifact>
<groupId>org.openscience.cdk</groupId>
<artifactId>cdk-build-utils</artifactId>
<version>1.0.2.3</version>
</tagletArtifact>
</configuration>
<executions>
<execution>
<id>aggregate</id>
<goals>
<goal>aggregate</goal>
</goals>
<phase>site</phase>
<configuration>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>3.1</version>
<configuration>
<rulesets>
<ruleset>/pmd/custom.xml</ruleset>
</rulesets>
<excludeRoots>
<excludeRoot>${basedir}/target/generated-sources/javacc</excludeRoot>
</excludeRoots>
</configuration>
<dependencies>
<dependency>
<groupId>org.openscience.cdk</groupId>
<artifactId>cdk-build-utils</artifactId>
<version>1.0.2.3</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>com.googlecode.maven-java-formatter-plugin</groupId>
<artifactId>maven-java-formatter-plugin</artifactId>
<version>0.4</version>
<configuration>
<configFile>cdk-formatting-conventions.xml</configFile>
<lineEnding>LF</lineEnding>
</configuration>
<dependencies>
<dependency>
<groupId>org.openscience.cdk</groupId>
<artifactId>cdk-build-utils</artifactId>
<version>1.0.2.3</version>
</dependency>
</dependencies>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.1.201405082137</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<reportSets>
<reportSet>
<id>default</id>
<configuration>
<aggregate>false</aggregate>
</configuration>
<reports>
<report>javadoc</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>3.1</version>
<configuration>
<rulesets>
<ruleset>/pmd/custom.xml</ruleset>
</rulesets>
<excludeRoots>
<excludeRoot>${basedir}/target/generated-sources/javacc</excludeRoot>
</excludeRoots>
</configuration>
</plugin>
</plugins>
</reporting>
<profiles>
<profile>
<id>base</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.16</version>
<configuration>
<excludes>
<!-- not a test class -->
<exclude>**/TestMoleculeFactory.java</exclude>
<!-- missing functionality -->
<exclude>**/cdk/limitations/**</exclude>
<!-- coverage tests need updating -->
<exclude>**/*CoverageTest.java</exclude>
<!-- module suites not needed -->
<exclude>**/modulesuites/M*Tests.java</exclude>
<!-- format tests do not work (cyclic dependency) -->
<exclude>**/io/formats/*FormatTest.java</exclude>
</excludes>
<excludedGroups>org.openscience.cdk.SlowTest</excludedGroups>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>slow-tests</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.16</version>
<configuration>
<excludes>
<!-- not a test class -->
<exclude>**/TestMoleculeFactory.java</exclude>
</excludes>
<groups>org.openscience.cdk.SlowTest</groups>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>