Skip to content

Commit 6f196f6

Browse files
johnmayegonw
authored andcommitted
Cleanup dependencies in the misc/ module
1 parent dee6b2c commit 6f196f6

File tree

5 files changed

+17
-179
lines changed

5 files changed

+17
-179
lines changed

misc/control/pom.xml

Lines changed: 0 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -13,53 +13,4 @@
1313
<artifactId>cdk-control</artifactId>
1414

1515
<name>cdk-control</name>
16-
<dependencies>
17-
<dependency>
18-
<groupId>javax.vecmath</groupId>
19-
<artifactId>vecmath</artifactId>
20-
</dependency>
21-
<dependency>
22-
<groupId>junit</groupId>
23-
<artifactId>junit</artifactId>
24-
<scope>test</scope>
25-
</dependency>
26-
<dependency>
27-
<groupId>${project.groupId}</groupId>
28-
<artifactId>cdk-interfaces</artifactId>
29-
<version>${project.parent.version}</version>
30-
</dependency>
31-
<dependency>
32-
<groupId>${project.groupId}</groupId>
33-
<artifactId>cdk-core</artifactId>
34-
<version>${project.parent.version}</version>
35-
</dependency>
36-
<dependency>
37-
<groupId>${project.groupId}</groupId>
38-
<artifactId>cdk-standard</artifactId>
39-
<version>${project.parent.version}</version>
40-
</dependency>
41-
<dependency>
42-
<groupId>${project.groupId}</groupId>
43-
<artifactId>cdk-render</artifactId>
44-
<version>${project.parent.version}</version>
45-
</dependency>
46-
<dependency>
47-
<groupId>${project.groupId}</groupId>
48-
<artifactId>cdk-io</artifactId>
49-
<version>${project.parent.version}</version>
50-
</dependency>
51-
<dependency>
52-
<groupId>${project.groupId}</groupId>
53-
<artifactId>cdk-valencycheck</artifactId>
54-
<version>${project.parent.version}</version>
55-
</dependency>
56-
<dependency>
57-
<groupId>${project.groupId}</groupId>
58-
<artifactId>cdk-test</artifactId>
59-
<version>${project.parent.version}</version>
60-
<type>test-jar</type>
61-
<scope>test</scope>
62-
</dependency>
63-
</dependencies>
64-
6516
</project>

misc/diff/pom.xml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,6 @@
2323
<artifactId>junit</artifactId>
2424
<scope>test</scope>
2525
</dependency>
26-
<dependency>
27-
<groupId>org.hamcrest</groupId>
28-
<artifactId>hamcrest</artifactId>
29-
<scope>test</scope>
30-
</dependency>
3126
<dependency>
3227
<groupId>org.mockito</groupId>
3328
<artifactId>mockito-core</artifactId>
@@ -38,11 +33,6 @@
3833
<artifactId>cdk-interfaces</artifactId>
3934
<version>${project.parent.version}</version>
4035
</dependency>
41-
<dependency>
42-
<groupId>${project.groupId}</groupId>
43-
<artifactId>cdk-core</artifactId>
44-
<version>${project.parent.version}</version>
45-
</dependency>
4636
<dependency>
4737
<groupId>${project.groupId}</groupId>
4838
<artifactId>cdk-test</artifactId>

misc/extra/pom.xml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,14 @@
2222
<artifactId>vecmath</artifactId>
2323
</dependency>
2424
<dependency>
25-
<groupId>xom</groupId>
26-
<artifactId>xom</artifactId>
25+
<groupId>xml-apis</groupId>
26+
<artifactId>xml-apis</artifactId>
27+
<version>1.3.03</version>
2728
</dependency>
2829
<dependency>
29-
<groupId>com.google.guava</groupId>
30-
<artifactId>guava</artifactId>
30+
<groupId>xerces</groupId>
31+
<artifactId>xercesImpl</artifactId>
32+
<version>2.8.0</version>
3133
</dependency>
3234
<dependency>
3335
<groupId>${project.groupId}</groupId>
@@ -64,11 +66,6 @@
6466
<artifactId>cdk-standard</artifactId>
6567
<version>${project.parent.version}</version>
6668
</dependency>
67-
<dependency>
68-
<groupId>${project.groupId}</groupId>
69-
<artifactId>cdk-valencycheck</artifactId>
70-
<version>${project.parent.version}</version>
71-
</dependency>
7269
<dependency>
7370
<groupId>${project.groupId}</groupId>
7471
<artifactId>cdk-formula</artifactId>

misc/log4j/pom.xml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@
1414

1515
<name>cdk-log4j</name>
1616
<dependencies>
17+
<dependency>
18+
<groupId>org.apache.logging.log4j</groupId>
19+
<artifactId>log4j-api</artifactId>
20+
</dependency>
1721
<dependency>
1822
<groupId>org.apache.logging.log4j</groupId>
1923
<artifactId>log4j-core</artifactId>
@@ -23,16 +27,6 @@
2327
<artifactId>junit</artifactId>
2428
<scope>test</scope>
2529
</dependency>
26-
<dependency>
27-
<groupId>org.hamcrest</groupId>
28-
<artifactId>hamcrest</artifactId>
29-
<scope>test</scope>
30-
</dependency>
31-
<dependency>
32-
<groupId>javax.vecmath</groupId>
33-
<artifactId>vecmath</artifactId>
34-
<scope>test</scope>
35-
</dependency>
3630
<dependency>
3731
<groupId>${project.groupId}</groupId>
3832
<artifactId>cdk-interfaces</artifactId>

misc/test-extra/pom.xml

Lines changed: 7 additions & 101 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@
1414

1515
<name>cdk-test-extra</name>
1616
<dependencies>
17+
<dependency>
18+
<groupId>xml-apis</groupId>
19+
<artifactId>xml-apis</artifactId>
20+
<version>1.3.03</version>
21+
</dependency>
1722
<dependency>
1823
<groupId>${project.groupId}</groupId>
1924
<artifactId>cdk-extra</artifactId>
@@ -30,23 +35,6 @@
3035
<artifactId>hamcrest</artifactId>
3136
<scope>test</scope>
3237
</dependency>
33-
<dependency>
34-
<groupId>gov.nist.math</groupId>
35-
<artifactId>jama</artifactId>
36-
<scope>test</scope>
37-
</dependency>
38-
<dependency>
39-
<groupId>org.blueobelisk</groupId>
40-
<artifactId>cmlxom</artifactId>
41-
<version>3.3</version>
42-
<exclusions>
43-
<exclusion>
44-
<groupId>org.apache.logging.log4j</groupId>
45-
<artifactId>log4j</artifactId>
46-
</exclusion>
47-
</exclusions>
48-
<scope>test</scope>
49-
</dependency>
5038
<dependency>
5139
<groupId>org.apache.logging.log4j</groupId>
5240
<artifactId>log4j-core</artifactId>
@@ -57,16 +45,6 @@
5745
<artifactId>vecmath</artifactId>
5846
<scope>test</scope>
5947
</dependency>
60-
<dependency>
61-
<groupId>xom</groupId>
62-
<artifactId>xom</artifactId>
63-
<scope>test</scope>
64-
</dependency>
65-
<dependency>
66-
<groupId>com.google.guava</groupId>
67-
<artifactId>guava</artifactId>
68-
<scope>test</scope>
69-
</dependency>
7048
<dependency>
7149
<groupId>${project.groupId}</groupId>
7250
<artifactId>cdk-interfaces</artifactId>
@@ -129,91 +107,19 @@
129107
<version>${project.parent.version}</version>
130108
<scope>test</scope>
131109
</dependency>
132-
<dependency>
133-
<groupId>${project.groupId}</groupId>
134-
<artifactId>cdk-control</artifactId>
135-
<version>${project.parent.version}</version>
136-
<scope>test</scope>
137-
</dependency>
138-
<dependency>
139-
<groupId>${project.groupId}</groupId>
140-
<artifactId>cdk-sdg</artifactId>
141-
<version>${project.parent.version}</version>
142-
<scope>test</scope>
143-
</dependency>
144-
<dependency>
145-
<groupId>${project.groupId}</groupId>
146-
<artifactId>cdk-libiocml</artifactId>
147-
<version>${project.parent.version}</version>
148-
<scope>test</scope>
149-
</dependency>
150-
<dependency>
151-
<groupId>${project.groupId}</groupId>
152-
<artifactId>cdk-pdb</artifactId>
153-
<version>${project.parent.version}</version>
154-
<scope>test</scope>
155-
</dependency>
156-
<dependency>
157-
<groupId>${project.groupId}</groupId>
158-
<artifactId>cdk-render</artifactId>
159-
<version>${project.parent.version}</version>
160-
<scope>test</scope>
161-
</dependency>
162-
<dependency>
163-
<groupId>${project.groupId}</groupId>
164-
<artifactId>cdk-builder3d</artifactId>
165-
<version>${project.parent.version}</version>
166-
<scope>test</scope>
167-
</dependency>
168-
<dependency>
169-
<groupId>${project.groupId}</groupId>
170-
<artifactId>cdk-reaction</artifactId>
171-
<version>${project.parent.version}</version>
172-
<scope>test</scope>
173-
</dependency>
174110
<dependency>
175111
<groupId>${project.groupId}</groupId>
176112
<artifactId>cdk-valencycheck</artifactId>
177113
<version>${project.parent.version}</version>
178114
<scope>test</scope>
179115
</dependency>
180-
<dependency>
181-
<groupId>${project.groupId}</groupId>
182-
<artifactId>cdk-forcefield</artifactId>
183-
<version>${project.parent.version}</version>
184-
<scope>test</scope>
185-
</dependency>
186-
<dependency>
187-
<groupId>${project.groupId}</groupId>
188-
<artifactId>cdk-smiles</artifactId>
189-
<version>${project.parent.version}</version>
190-
<scope>test</scope>
191-
</dependency>
192-
<dependency>
193-
<groupId>${project.groupId}</groupId>
194-
<artifactId>cdk-charges</artifactId>
195-
<version>${project.parent.version}</version>
196-
<scope>test</scope>
197-
</dependency>
198116
<dependency>
199117
<groupId>${project.groupId}</groupId>
200118
<artifactId>cdk-test</artifactId>
201119
<version>${project.parent.version}</version>
202120
<type>test-jar</type>
203121
<scope>test</scope>
204122
</dependency>
205-
<dependency>
206-
<groupId>${project.groupId}</groupId>
207-
<artifactId>cdk-formula</artifactId>
208-
<version>${project.parent.version}</version>
209-
<scope>test</scope>
210-
</dependency>
211-
<dependency>
212-
<groupId>${project.groupId}</groupId>
213-
<artifactId>cdk-isomorphism</artifactId>
214-
<version>${project.parent.version}</version>
215-
<scope>test</scope>
216-
</dependency>
217123
<dependency>
218124
<groupId>${project.groupId}</groupId>
219125
<artifactId>cdk-test-core</artifactId>
@@ -226,11 +132,11 @@
226132
<artifactId>cdk-testdata</artifactId>
227133
<version>${project.parent.version}</version>
228134
<type>test-jar</type>
229-
<scope>test</scope>
135+
<scope>test</scope>
230136
</dependency>
231137
<dependency>
232138
<groupId>${project.groupId}</groupId>
233-
<artifactId>cdk-diff</artifactId>
139+
<artifactId>cdk-ctab</artifactId>
234140
<version>${project.parent.version}</version>
235141
<scope>test</scope>
236142
</dependency>

0 commit comments

Comments
 (0)