Skip to content

Commit

Permalink
add metadata to project pom.xml file required for SciJava parent POM
Browse files Browse the repository at this point in the history
  • Loading branch information
jcschaff committed Jul 12, 2023
1 parent df9786d commit 793060a
Showing 1 changed file with 66 additions and 0 deletions.
66 changes: 66 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,76 @@
<artifactId>vcell-fiji</artifactId>
<version>1.0-SNAPSHOT</version>


<name>Virtual Cell ImageJ plugin</name>
<description>Virtual Cell ImageJ plugin to retrieve VCell simulation results for analysis within ImageJ</description>
<url>https://vcell.org</url>
<inceptionYear>2023</inceptionYear>
<organization>
<name>Virtual Cell</name>
<url>https://vcell.org</url>
</organization>
<licenses>
<license>
<name>MIT</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>jcschaff</id>
<name>Jim Schaff</name>
</developer>
<developer>
<id>AvocadoMoon</id>
<name>Ezequiel Valencia</name>
</developer>
<developer>
<id>paulricky</id>
<name>Ricky Paul</name>
</developer>
</developers>
<contributors>
<contributor>
<name>Michael Blinov</name>
</contributor>
</contributors>
<mailingLists>
<mailingList>
<name>VCell Open Discussion Forum</name>
<subscribe>https://groups.google.com/group/vcell-discuss</subscribe>
<unsubscribe>https://groups.google.com/group/vcell-discuss</unsubscribe>
<post>vcell-discuss@googlegroups.com</post>
<archive>https://groups.google.com/group/vcell-discuss</archive>
</mailingList>
</mailingLists>
<scm>
<connection>scm:git:https://github.com/virtualcell/vcell-fiji</connection>
<developerConnection>scm:git:git@github.com:virtualcell/vcell-fiji</developerConnection>
<tag>HEAD</tag>
<url>https://github.com/virtualcell/vcell-fiji</url>
</scm>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/virtualcell/vcell-fiji/issues</url>
</issueManagement>
<ciManagement>
<system>GitHub Actions</system>
<url>https://github.com/virtualcell/vcell-fiji/actions</url>
</ciManagement>

<properties>
<license.licenseName>MIT</license.licenseName>
<license.copyrightOwners>UConn Health</license.copyrightOwners>

<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>

<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
</dependencies>

</project>

0 comments on commit 793060a

Please sign in to comment.