Skip to content

Commit d2ee14c

Browse files
committed
Fix miglayout dependency management
Each artifact's version should have a corresponding version property with the same name. And the swing classifier does not exist anymore.
1 parent 07b458c commit d2ee14c

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

pom.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -826,6 +826,8 @@
826826

827827
<!-- MigLayout - http://www.miglayout.com/ -->
828828
<miglayout.version>5.2</miglayout.version>
829+
<miglayout-core.version>${miglayout.version}</miglayout-core.version>
830+
<miglayout-swing.version>${miglayout.version}</miglayout-swing.version>
829831

830832
<!-- Mines JTK - https://github.com/dhale/jtk -->
831833
<mines-jtk.version>20151125</mines-jtk.version>
@@ -3175,13 +3177,12 @@
31753177
<dependency>
31763178
<groupId>com.miglayout</groupId>
31773179
<artifactId>miglayout-core</artifactId>
3178-
<version>${miglayout.version}</version>
3180+
<version>${miglayout-core.version}</version>
31793181
</dependency>
31803182
<dependency>
31813183
<groupId>com.miglayout</groupId>
31823184
<artifactId>miglayout-swing</artifactId>
3183-
<version>${miglayout.version}</version>
3184-
<classifier>swing</classifier>
3185+
<version>${miglayout-swing.version}</version>
31853186
</dependency>
31863187

31873188
<!-- Mines JTK - https://github.com/dhale/jtk -->

0 commit comments

Comments
 (0)