Skip to content

Commit f2ea871

Browse files
committed
Clean up order of managed third party dependencies
Let's use alphabetical order, for consistency.
1 parent 5e6bdda commit f2ea871

1 file changed

Lines changed: 25 additions & 23 deletions

File tree

pom.xml

Lines changed: 25 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -211,27 +211,27 @@ Projects wishing to use pom-scijava as a parent project need to override the &lt
211211

212212
<!-- Other managed components -->
213213

214-
<!-- JUnit - http://junit.org/ -->
215-
<junit.version>4.11</junit.version>
214+
<!-- JAMA - http://math.nist.gov/javanumerics/jama/ -->
215+
<jama.version>1.0.3</jama.version>
216216

217-
<!-- MigLayout - http://www.miglayout.com/ -->
218-
<miglayout.version>3.7.4</miglayout.version>
217+
<!-- Jetty - http://eclipse.org/jetty/ -->
218+
<jetty.version>8.0.0.M1</jetty.version>
219219

220220
<!-- JFreeChart - http://www.jfree.org/jfreechart/ -->
221221
<jfreechart.version>1.0.19</jfreechart.version>
222222

223-
<!-- JAMA - http://math.nist.gov/javanumerics/jama/ -->
224-
<jama.version>1.0.3</jama.version>
225-
226223
<!-- JHDF5 - https://wiki-bsse.ethz.ch/label/JHDF5/hdf5 -->
227224
<jhdf5.version>14.12.0</jhdf5.version>
228225

229-
<!-- Jetty - http://eclipse.org/jetty/ -->
230-
<jetty.version>8.0.0.M1</jetty.version>
231-
232226
<!-- Joda-Time - http://www.joda.org/joda-time/ -->
233227
<joda-time.version>2.3</joda-time.version>
234228

229+
<!-- JUnit - http://junit.org/ -->
230+
<junit.version>4.11</junit.version>
231+
232+
<!-- MigLayout - http://www.miglayout.com/ -->
233+
<miglayout.version>3.7.4</miglayout.version>
234+
235235
<!-- Additional configuration -->
236236

237237
<!-- NB: Avoid platform encoding warning when copying resources. -->
@@ -482,6 +482,13 @@ Projects wishing to use pom-scijava as a parent project need to override the &lt
482482
<version>${bio-formats.version}</version>
483483
</dependency>
484484

485+
<!-- JAMA - http://math.nist.gov/javanumerics/jama/ -->
486+
<dependency>
487+
<groupId>gov.nist.math</groupId>
488+
<artifactId>jama</artifactId>
489+
<version>${jama.version}</version>
490+
</dependency>
491+
485492
<!-- JFreeChart - http://www.jfree.org/jfreechart/ -->
486493
<dependency>
487494
<groupId>org.jfree</groupId>
@@ -495,20 +502,20 @@ Projects wishing to use pom-scijava as a parent project need to override the &lt
495502
</exclusions>
496503
</dependency>
497504

498-
<!-- JAMA - http://math.nist.gov/javanumerics/jama/ -->
499-
<dependency>
500-
<groupId>gov.nist.math</groupId>
501-
<artifactId>jama</artifactId>
502-
<version>${jama.version}</version>
503-
</dependency>
504-
505505
<!-- JHDF5 - https://wiki-bsse.ethz.ch/label/JHDF5/hdf5 -->
506506
<dependency>
507507
<groupId>cisd</groupId>
508508
<artifactId>jhdf5</artifactId>
509509
<version>${jhdf5.version}</version>
510510
</dependency>
511511

512+
<!-- Joda-Time - http://www.joda.org/joda-time/ -->
513+
<dependency>
514+
<groupId>joda-time</groupId>
515+
<artifactId>joda-time</artifactId>
516+
<version>${joda-time.version}</version>
517+
</dependency>
518+
512519
<!-- MigLayout - http://www.miglayout.com/ -->
513520
<dependency>
514521
<groupId>com.miglayout</groupId>
@@ -517,12 +524,7 @@ Projects wishing to use pom-scijava as a parent project need to override the &lt
517524
<classifier>swing</classifier>
518525
</dependency>
519526

520-
<!-- Joda-Time - http://www.joda.org/joda-time/ -->
521-
<dependency>
522-
<groupId>joda-time</groupId>
523-
<artifactId>joda-time</artifactId>
524-
<version>${joda-time.version}</version>
525-
</dependency>
527+
<!-- Test scope dependencies -->
526528

527529
<!-- JUnit - http://junit.org/ -->
528530
<dependency>

0 commit comments

Comments
 (0)