Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Flanagan
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Bioimage Analysis
Icy
Extensions
Flanagan
Commits
980664f2
Commit
980664f2
authored
4 years ago
by
Amandine TOURNAY
Browse files
Options
Downloads
Patches
Plain Diff
Added project
parent
d113212e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitignore
+6
-0
6 additions, 0 deletions
.gitignore
pom.xml
+120
-0
120 additions, 0 deletions
pom.xml
src/main/java/plugins/stef/library/FlanaganPlugin.java
+15
-0
15 additions, 0 deletions
src/main/java/plugins/stef/library/FlanaganPlugin.java
with
141 additions
and
0 deletions
.gitignore
0 → 100644
+
6
−
0
View file @
980664f2
.idea/
target/
.settings/
*.iml
.project
.classpath
\ No newline at end of file
This diff is collapsed.
Click to expand it.
pom.xml
0 → 100644
+
120
−
0
View file @
980664f2
<?xml version="1.0" encoding="UTF-8"?>
<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"
>
<modelVersion>
4.0.0
</modelVersion>
<!-- Inherited Icy Parent POM -->
<parent>
<groupId>
org.bioimageanalysis.icy
</groupId>
<artifactId>
parent-pom-plugin
</artifactId>
<version>
1.0.3
</version>
</parent>
<!-- Project Information -->
<artifactId>
flanagan
</artifactId>
<version>
1.1.1
</version>
<packaging>
jar
</packaging>
<name>
Flanagan
</name>
<description>
Flanagan scientific library for Icy.
Flanagan library has been developed by Michael Thomas Flanagan.
Flanagan library by Michael Thomas Flanagan: https://www.ee.ucl.ac.uk/~mflanaga/java/
</description>
<url>
http://icy.bioimageanalysis.org/plugin/flanagan-scientific-library-for-icy/
</url>
<inceptionYear>
2020
</inceptionYear>
<organization>
<name>
Institut Pasteur
</name>
<url>
https://pasteur.fr
</url>
</organization>
<licenses>
<license>
<name>
GNU GPLv3
</name>
<url>
https://www.gnu.org/licenses/gpl-3.0.en.html
</url>
<distribution>
repo
</distribution>
</license>
</licenses>
<developers>
<developer>
<id>
sdallongeville
</id>
<name>
Stéphane Dallongeville
</name>
<url>
https://research.pasteur.fr/fr/member/stephane-dallongeville/
</url>
<roles>
<role>
founder
</role>
<role>
lead
</role>
<role>
architect
</role>
<role>
developer
</role>
<role>
debugger
</role>
<role>
tester
</role>
<role>
maintainer
</role>
<role>
support
</role>
</roles>
</developer>
</developers>
<!-- Project properties -->
<properties>
</properties>
<!-- Project build configuration -->
<build>
<plugins>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-dependency-plugin
</artifactId>
<version>
3.1.1
</version>
<executions>
<execution>
<id>
${project.artifactId}-fetch
</id>
<phase>
generate-sources
</phase>
<goals>
<goal>
unpack-dependencies
</goal>
</goals>
<configuration>
<includeArtifactIds>
flanagan
</includeArtifactIds>
<outputDirectory>
${project.build.outputDirectory}
</outputDirectory>
<stripVersion>
true
</stripVersion>
<excludeTransitive>
true
</excludeTransitive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<!-- List of project's dependencies -->
<dependencies>
<!-- The core of Icy -->
<dependency>
<groupId>
org.bioimageanalysis.icy
</groupId>
<artifactId>
icy-kernel
</artifactId>
</dependency>
<dependency>
<groupId>
flanagan
</groupId>
<artifactId>
flanagan
</artifactId>
<version>
1.0
</version>
</dependency>
</dependencies>
<!-- Icy Maven repository (to find parent POM) -->
<repositories>
<repository>
<id>
pavlab
</id>
<name>
PavLab
</name>
<url>
https://maven2.pavlab.msl.ubc.ca/
</url>
</repository>
<repository>
<id>
icy
</id>
<name>
Icy's Nexus
</name>
<url>
https://icy-nexus.pasteur.fr/repository/Icy/
</url>
</repository>
</repositories>
</project>
This diff is collapsed.
Click to expand it.
src/main/java/plugins/stef/library/FlanaganPlugin.java
0 → 100644
+
15
−
0
View file @
980664f2
package
plugins.stef.library
;
import
icy.plugin.abstract_.Plugin
;
import
icy.plugin.interface_.PluginLibrary
;
/**
* Flanagan scientific library for Icy.
* Copyright Dr Michael Thomas Flanagan
*
* @author Stephane Dallongeville
*/
public
class
FlanaganPlugin
extends
Plugin
implements
PluginLibrary
{
//
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment