Skip to content

Commit fa1453c

Browse files
committed
Initial commit
0 parents  commit fa1453c

3 files changed

Lines changed: 134 additions & 0 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/target/

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# imagej-plot-service
2+
3+
A service for displaying plots in ImageJ

pom.xml

Lines changed: 130 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
5+
http://maven.apache.org/xsd/maven-4.0.0.xsd">
6+
<modelVersion>4.0.0</modelVersion>
7+
8+
<parent>
9+
<groupId>org.scijava</groupId>
10+
<artifactId>pom-scijava</artifactId>
11+
<version>16.2.0</version>
12+
<relativePath />
13+
</parent>
14+
15+
<groupId>net.imagej</groupId>
16+
<artifactId>imagej-plot-service</artifactId>
17+
<version>0.1.0-SNAPSHOT</version>
18+
19+
<name>ImageJ-Plot-Service</name>
20+
<description>A service for displaying plots in ImageJ.</description>
21+
<url>https://github.com/imagej/imagej-plot-service</url>
22+
<inceptionYear>2017</inceptionYear>
23+
<organization>
24+
<name>ImageJ</name>
25+
<url>http://imagej.net/</url>
26+
</organization>
27+
28+
<licenses>
29+
<license>
30+
<name>Simplified BSD License</name>
31+
<distribution>repo</distribution>
32+
</license>
33+
</licenses>
34+
35+
<developers>
36+
<developer>
37+
<id>maarzt</id>
38+
<name>Matthias Arzt</name>
39+
<url>http://imagej.net/User:Maarzt</url>
40+
<roles>
41+
<role>founder</role>
42+
<role>lead</role>
43+
<role>developer</role>
44+
<role>debugger</role>
45+
<role>reviewer</role>
46+
<role>support</role>
47+
<role>maintainer</role>
48+
</roles>
49+
</developer>
50+
<developer>
51+
<id>ctrueden</id>
52+
<name>Curtis Rueden</name>
53+
<url>http://imagej.net/User:Rueden</url>
54+
<roles>
55+
<role>maintainer</role>
56+
</roles>
57+
</developer>
58+
</developers>
59+
<contributors>
60+
<!--
61+
NB: Need at least one element to override the parent.
62+
See: https://issues.apache.org/jira/browse/MNG-5220
63+
-->
64+
<contributor>
65+
<name>None</name>
66+
</contributor>
67+
</contributors>
68+
69+
<mailingLists>
70+
<mailingList>
71+
<name>ImageJ Forum</name>
72+
<archive>http://forum.imagej.net/</archive>
73+
</mailingList>
74+
</mailingLists>
75+
76+
<scm>
77+
<connection>scm:git:git://github.com/imagej/imagej-plot-service</connection>
78+
<developerConnection>scm:git:git@github.com:imagej/imagej-plot-service</developerConnection>
79+
<tag>HEAD</tag>
80+
<url>https://github.com/imagej/imagej-plot-service</url>
81+
</scm>
82+
<issueManagement>
83+
<system>GitHub Issues</system>
84+
<url>https://github.com/imagej/imagej-plot-service/issues</url>
85+
</issueManagement>
86+
<ciManagement>
87+
<system>Travis CI</system>
88+
<url>https://travis-ci.org/imagej/imagej-plot-service</url>
89+
</ciManagement>
90+
91+
<properties>
92+
<package-name>net.imagej.plotservice</package-name>
93+
<license.licenseName>bsd_2</license.licenseName>
94+
<license.copyrightOwners>Max Planck Institute of Molecular Cell Biology and Genetics.</license.copyrightOwners>
95+
</properties>
96+
97+
<repositories>
98+
<repository>
99+
<id>imagej.public</id>
100+
<url>https://maven.imagej.net/content/groups/public</url>
101+
</repository>
102+
</repositories>
103+
104+
<dependencies>
105+
<dependency>
106+
<groupId>net.imagej</groupId>
107+
<artifactId>imagej-common</artifactId>
108+
</dependency>
109+
<dependency>
110+
<groupId>org.scijava</groupId>
111+
<artifactId>scijava-common</artifactId>
112+
</dependency>
113+
<dependency>
114+
<groupId>org.apache.commons</groupId>
115+
<artifactId>commons-math3</artifactId>
116+
</dependency>
117+
<dependency>
118+
<groupId>org.scijava</groupId>
119+
<artifactId>scijava-ui-swing</artifactId>
120+
</dependency>
121+
<dependency>
122+
<groupId>sc.fiji</groupId>
123+
<artifactId>fiji-lib</artifactId>
124+
</dependency>
125+
<dependency>
126+
<groupId>org.jfree</groupId>
127+
<artifactId>jfreechart</artifactId>
128+
</dependency>
129+
</dependencies>
130+
</project>

0 commit comments

Comments
 (0)