Skip to content
Snippets Groups Projects
Commit 5e6f9b13 authored by Thomas  MUSSET's avatar Thomas MUSSET
Browse files

updated to v2.0.0-a.1, updated to new architecture

parent fc607650
No related branches found
No related tags found
No related merge requests found
/target/ target/
/.settings/ !.mvn/wrapper/maven-wrapper.jar
/.classpath !**/src/main/**/target/
/.project !**/src/test/**/target/
### IntelliJ IDEA ###
.idea/
*.iws
*.iml
*.ipr
### Eclipse ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
!**/src/main/**/build/
!**/src/test/**/build/
### VS Code ###
.vscode/
### Mac OS ###
**/.DS_Store
Icon?
\ No newline at end of file
...@@ -7,17 +7,16 @@ ...@@ -7,17 +7,16 @@
<parent> <parent>
<groupId>org.bioimageanalysis.icy</groupId> <groupId>org.bioimageanalysis.icy</groupId>
<artifactId>pom-icy</artifactId> <artifactId>pom-icy</artifactId>
<version>2.1.1</version> <version>3.0.0-a.3</version>
</parent> </parent>
<artifactId>apache-commons-csv</artifactId> <artifactId>apache-commons-csv</artifactId>
<version>1.9.0</version> <version>2.0.0-a.1</version>
<packaging>jar</packaging>
<name>Apache Commons CSV</name> <name>Apache Commons CSV</name>
<description>The Apache Commons CSV library for Icy</description> <description>The Apache Commons CSV library for Icy</description>
<url>http://icy.bioimageanalysis.org/plugin/apache-commons-csv/</url> <url>https://icy.bioimageanalysis.org/plugin/apache-commons-csv/</url>
<inceptionYear>2020</inceptionYear> <inceptionYear>2020</inceptionYear>
<developers> <developers>
...@@ -37,28 +36,38 @@ ...@@ -37,28 +36,38 @@
</roles> </roles>
</developer> </developer>
</developers> </developers>
<!-- Project properties -->
<properties>
<artifact-to-extract>commons-csv</artifact-to-extract>
</properties>
<!-- List of project's dependencies --> <!-- List of project's dependencies -->
<dependencies> <dependencies>
<dependency>
<groupId>org.bioimageanalysis.icy</groupId>
<artifactId>apache-commons-io</artifactId>
</dependency>
<dependency>
<groupId>org.bioimageanalysis.icy</groupId>
<artifactId>apache-commons-codec</artifactId>
</dependency>
<dependency> <dependency>
<groupId>org.apache.commons</groupId> <groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId> <artifactId>commons-csv</artifactId>
<version>1.9.0</version> <version>1.13.0</version>
</dependency> </dependency>
</dependencies> </dependencies>
<!-- Icy Maven repository (to find parent POM) --> <!-- marked default dependencies as provided by Icy -->
<repositories> <dependencyManagement>
<repository> <dependencies>
<id>icy</id> <dependency>
<name>Icy's Nexus</name> <groupId>commons-io</groupId>
<url>https://icy-nexus.pasteur.fr/repository/Icy/</url> <artifactId>commons-io</artifactId>
</repository> <scope>provided</scope>
</repositories> </dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project> </project>
\ No newline at end of file
/*
* Copyright (c) 2010-2025. Institut Pasteur.
*
* This file is part of Icy.
* Icy is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Icy is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Icy. If not, see <https://www.gnu.org/licenses/>.
*/
package plugins.danyfel80.library.apache; package plugins.danyfel80.library.apache;
import icy.plugin.abstract_.Plugin; import org.bioimageanalysis.icy.extension.plugin.abstract_.Plugin;
import icy.plugin.interface_.PluginLibrary; import org.bioimageanalysis.icy.extension.plugin.annotation_.IcyPluginIcon;
import org.bioimageanalysis.icy.extension.plugin.annotation_.IcyPluginName;
/** /**
* Icy wrapper for the Apache Commons CSV library. * Icy wrapper for the Apache Commons CSV library.
*
* @author Daniel Felipe Gonzalez Obando * @author Daniel Felipe Gonzalez Obando
*/ */
public class ApacheCommonsCsvPlugin extends Plugin implements PluginLibrary @IcyPluginName("Apache Commons CSV")
{ @IcyPluginIcon(path = "/apache_big.png")
public class ApacheCommonsCsvPlugin extends Plugin {
//
} }
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment