Skip to content

Commit 6066f0c

Browse files
committed
Move all classes from net.imagej.table to org.scijava.table
- add dependency to scijava-table - remove dependency to imagej-common
1 parent 5cb89a9 commit 6066f0c

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

pom.xml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ Wisconsin-Madison and University of Konstanz.</license.copyrightOwners>
8989

9090
<!-- NB: Deploy releases to the ImageJ Maven repository. -->
9191
<releaseProfiles>deploy-to-imagej</releaseProfiles>
92+
93+
<scijava-table.version>0.2.0</scijava-table.version>
9294
</properties>
9395

9496
<repositories>
@@ -100,12 +102,13 @@ Wisconsin-Madison and University of Konstanz.</license.copyrightOwners>
100102

101103
<dependencies>
102104
<dependency>
103-
<groupId>net.imagej</groupId>
104-
<artifactId>imagej-common</artifactId>
105+
<groupId>org.scijava</groupId>
106+
<artifactId>scijava-common</artifactId>
105107
</dependency>
106108
<dependency>
107109
<groupId>org.scijava</groupId>
108-
<artifactId>scijava-common</artifactId>
110+
<artifactId>scijava-table</artifactId>
111+
<version>${scijava-table.version}</version>
109112
</dependency>
110113
<dependency>
111114
<groupId>org.apache.commons</groupId>

src/main/java/net/imagej/table/CommonsCSVTableIOPlugin.java renamed to src/main/java/org/scijava/table/CommonsCSVTableIOPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* #L%
2929
*/
3030

31-
package net.imagej.table;
31+
package org.scijava.table;
3232

3333
import java.io.File;
3434
import java.io.FileReader;

src/main/java/net/imagej/table/DefaultTableIOPlugin.java renamed to src/main/java/org/scijava/table/DefaultTableIOPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* #L%
2929
*/
3030

31-
package net.imagej.table;
31+
package org.scijava.table;
3232

3333
import java.io.IOException;
3434
import java.util.ArrayList;

src/test/java/net/imagej/table/CommonsCSVTableIOPluginTest.java renamed to src/test/java/org/scijava/table/CommonsCSVTableIOPluginTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* #L%
2929
*/
3030

31-
package net.imagej.table;
31+
package org.scijava.table;
3232

3333
import static org.junit.Assert.assertTrue;
3434

src/test/java/net/imagej/table/DefaultTableIOPluginTest.java renamed to src/test/java/org/scijava/table/DefaultTableIOPluginTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* #L%
2929
*/
3030

31-
package net.imagej.table;
31+
package org.scijava.table;
3232

3333
import static org.junit.Assert.assertEquals;
3434
import static org.junit.Assert.assertTrue;

0 commit comments

Comments
 (0)