Skip to content

Commit d3c749a

Browse files
committed
Move package net.imagej.plot to org.scijava.plot
1 parent 0d2ec3a commit d3c749a

69 files changed

Lines changed: 195 additions & 190 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

pom.xml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@
99
<relativePath />
1010
</parent>
1111

12-
<groupId>net.imagej</groupId>
13-
<artifactId>imagej-plot-service</artifactId>
12+
<groupId>org.scijava</groupId>
13+
<artifactId>scijava-plot</artifactId>
1414
<version>0.1.2-SNAPSHOT</version>
1515

16-
<name>ImageJ-Plot-Service</name>
17-
<description>A service for displaying plots in ImageJ.</description>
18-
<url>https://github.com/maarzt/imagej-plot-service</url>
16+
<name>SciJava Plot</name>
17+
<description>Plots for SciJava.</description>
18+
<url>https://github.com/scijava/scijava-plot</url>
1919
<inceptionYear>2017</inceptionYear>
2020
<organization>
21-
<name>ImageJ</name>
22-
<url>https://imagej.net/</url>
21+
<name>SciJava</name>
22+
<url>http://www.scijava.org/</url>
2323
</organization>
2424

2525
<licenses>
@@ -71,24 +71,24 @@
7171
</mailingLists>
7272

7373
<scm>
74-
<connection>scm:git:git://github.com/maarzt/imagej-plot-service</connection>
75-
<developerConnection>scm:git:git@github.com:maarzt/imagej-plot-service</developerConnection>
74+
<connection>scm:git:git://github.com/scijava/scijava-plot</connection>
75+
<developerConnection>scm:git:git@github.com:scijava/scijava-plot</developerConnection>
7676
<tag>HEAD</tag>
77-
<url>https://github.com/maarzt/imagej-plot-service</url>
77+
<url>https://github.com/scijava/scijava-plot</url>
7878
</scm>
7979

8080
<issueManagement>
8181
<system>GitHub Issues</system>
82-
<url>https://github.com/maarzt/imagej-plot-service/issues</url>
82+
<url>https://github.com/scijava/scijava-plot/issues</url>
8383
</issueManagement>
8484

8585
<ciManagement>
8686
<system>Travis CI</system>
87-
<url>https://travis-ci.org/maarzt/imagej-plot-service</url>
87+
<url>https://travis-ci.org/scijava/scijava-plot</url>
8888
</ciManagement>
8989

9090
<properties>
91-
<package-name>net.imagej.plotservice</package-name>
91+
<package-name>org.scijava.plot</package-name>
9292
<license.licenseName>bsd_2</license.licenseName>
9393
<license.copyrightOwners>Max Planck Institute of Molecular Cell Biology and Genetics.</license.copyrightOwners>
9494

src/main/java/net/imagej/plot/BarSeries.java renamed to src/main/java/org/scijava/plot/BarSeries.java

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

32-
package net.imagej.plot;
32+
package org.scijava.plot;
3333

3434
import org.scijava.util.ColorRGB;
3535

src/main/java/net/imagej/plot/BoxSeries.java renamed to src/main/java/org/scijava/plot/BoxSeries.java

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

32-
package net.imagej.plot;
32+
package org.scijava.plot;
3333

3434
import org.scijava.util.ColorRGB;
3535

src/main/java/net/imagej/plot/CategoryAxis.java renamed to src/main/java/org/scijava/plot/CategoryAxis.java

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

32-
package net.imagej.plot;
32+
package org.scijava.plot;
3333

3434
import java.util.Comparator;
3535
import java.util.List;

src/main/java/net/imagej/plot/CategoryChart.java renamed to src/main/java/org/scijava/plot/CategoryChart.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@
2929
* #L%
3030
*/
3131

32-
package net.imagej.plot;
33-
34-
import org.scijava.util.ColorRGB;
32+
package org.scijava.plot;
3533

3634
import java.util.List;
3735

src/main/java/net/imagej/plot/CategoryChartItem.java renamed to src/main/java/org/scijava/plot/CategoryChartItem.java

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

32-
package net.imagej.plot;
32+
package org.scijava.plot;
3333

3434
import java.util.Collection;
3535

src/main/java/net/imagej/plot/Labeled.java renamed to src/main/java/org/scijava/plot/Labeled.java

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

32-
package net.imagej.plot;
32+
package org.scijava.plot;
3333

3434
/**
3535
* Interface of things that have a label.

src/main/java/net/imagej/plot/LineSeries.java renamed to src/main/java/org/scijava/plot/LineSeries.java

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

32-
package net.imagej.plot;
32+
package org.scijava.plot;
3333

3434
import java.util.Map;
3535

src/main/java/net/imagej/plot/LineStyle.java renamed to src/main/java/org/scijava/plot/LineStyle.java

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

32-
package net.imagej.plot;
32+
package org.scijava.plot;
3333

3434
/**
3535
* Defines the style of a line.

src/main/java/net/imagej/plot/MarkerStyle.java renamed to src/main/java/org/scijava/plot/MarkerStyle.java

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

32-
package net.imagej.plot;
32+
package org.scijava.plot;
3333

3434
/**
3535
* Defines the style of markers in a chart.

0 commit comments

Comments
 (0)