Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Apache Commons CSV
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Apache Commons CSV
Commits
5e6f9b13
Commit
5e6f9b13
authored
2 months ago
by
Thomas MUSSET
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitignore
+36
-4
36 additions, 4 deletions
.gitignore
pom.xml
+28
-19
28 additions, 19 deletions
pom.xml
src/main/java/plugins/danyfel80/library/apache/ApacheCommonsCsvPlugin.java
+26
-5
26 additions, 5 deletions
...gins/danyfel80/library/apache/ApacheCommonsCsvPlugin.java
with
90 additions
and
28 deletions
.gitignore
+
36
−
4
View file @
5e6f9b13
/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
This diff is collapsed.
Click to expand it.
pom.xml
+
28
−
19
View file @
5e6f9b13
...
@@ -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>
http
s
://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
This diff is collapsed.
Click to expand it.
src/main/java/plugins/danyfel80/library/apache/ApacheCommonsCsvPlugin.java
+
26
−
5
View file @
5e6f9b13
/*
* 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
{
//
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
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