-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This allows for individual modules to be published to the ImageJ site.
- Loading branch information
1 parent
81bf7b5
commit a82bb3d
Showing
3 changed files
with
75 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,12 +8,78 @@ | |
<groupId>org.vcell.vcellfiji</groupId> | ||
<artifactId>vcell-fiji</artifactId> | ||
<version>1.0-SNAPSHOT</version> | ||
<relativePath /> | ||
</parent> | ||
|
||
<artifactId>vcell-view-simulation-resuts</artifactId> | ||
<artifactId>vcell-view-simulation-results</artifactId> | ||
<version>1.0-SNAPSHOT</version> | ||
|
||
<name>VCell View Simulation Results</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> | ||
</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>[email protected]</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:[email protected]: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> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
|