Skip to content

Commit 49e749e

Browse files
committed
Initialize project with pom.xml
1 parent 69c30ef commit 49e749e

1 file changed

Lines changed: 104 additions & 0 deletions

File tree

pom.xml

Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
5+
<parent>
6+
<groupId>org.scijava</groupId>
7+
<artifactId>pom-scijava</artifactId>
8+
<version>22.3.0</version>
9+
<relativePath />
10+
</parent>
11+
12+
<artifactId>scijava-table</artifactId>
13+
<version>0.1.0-SNAPSHOT</version>
14+
15+
<name>SciJava Table</name>
16+
<description>Table structures for SciJava</description>
17+
<url>https://github.com/scijava/scijava-table</url>
18+
<inceptionYear>2018</inceptionYear>
19+
<organization>
20+
<name>SciJava</name>
21+
<url>http://www.scijava.org/</url>
22+
</organization>
23+
<licenses>
24+
<license>
25+
<name>Simplified BSD License</name>
26+
<distribution>repo</distribution>
27+
</license>
28+
</licenses>
29+
30+
<developers>
31+
<developer>
32+
<id>ctrueden</id>
33+
<name>Curtis Rueden</name>
34+
<url>http://imagej.net/User:Rueden</url>
35+
<roles>
36+
<role>founder</role>
37+
<role>lead</role>
38+
<role>developer</role>
39+
<role>debugger</role>
40+
<role>reviewer</role>
41+
<role>support</role>
42+
<role>maintainer</role>
43+
</roles>
44+
</developer>
45+
</developers>
46+
<contributors>
47+
<contributor>
48+
<name>Jan Eglinger</name>
49+
<url>http://imagej.net/User:Eglinger</url>
50+
<properties><id>imagejan</id></properties>
51+
</contributor>
52+
</contributors>
53+
54+
<mailingLists>
55+
<mailingList>
56+
<name>SciJava</name>
57+
<subscribe>https://groups.google.com/group/scijava</subscribe>
58+
<unsubscribe>https://groups.google.com/group/scijava</unsubscribe>
59+
<post>scijava@googlegroups.com</post>
60+
<archive>https://groups.google.com/group/scijava</archive>
61+
</mailingList>
62+
</mailingLists>
63+
64+
<scm>
65+
<connection>scm:git:git://github.com/scijava/scijava-table</connection>
66+
<developerConnection>scm:git:git@github.com:scijava/scijava-table</developerConnection>
67+
<tag>HEAD</tag>
68+
<url>https://github.com/scijava/scijava-table</url>
69+
</scm>
70+
<issueManagement>
71+
<system>GitHub Issues</system>
72+
<url>https://github.com/scijava/scijava-table/issues</url>
73+
</issueManagement>
74+
<ciManagement>
75+
<system>Travis CI</system>
76+
<url>https://travis-ci.org/scijava/scijava-table</url>
77+
</ciManagement>
78+
79+
<properties>
80+
<package-name>org.scijava</package-name>
81+
82+
<license.licenseName>bsd_2</license.licenseName>
83+
<license.projectName>SciJava Table.</license.projectName>
84+
<license.copyrightOwners>Board of Regents of the University of
85+
Wisconsin-Madison, Broad Institute of MIT and Harvard, Max Planck
86+
Institute of Molecular Cell Biology and Genetics, University of
87+
Konstanz, and KNIME GmbH.</license.copyrightOwners>
88+
</properties>
89+
90+
<dependencies>
91+
<dependency>
92+
<groupId>org.scijava</groupId>
93+
<artifactId>scijava-common</artifactId>
94+
</dependency>
95+
96+
<!-- Test scope dependencies -->
97+
<dependency>
98+
<groupId>junit</groupId>
99+
<artifactId>junit</artifactId>
100+
<scope>test</scope>
101+
</dependency>
102+
</dependencies>
103+
104+
</project>

0 commit comments

Comments
 (0)