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
c42e0792
Commit
c42e0792
authored
3 years ago
by
Daniel Felipe González Obando
Browse files
Options
Downloads
Patches
Plain Diff
Initial code push with version 1.8.0
parent
dc246cbb
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
+4
-0
4 additions, 0 deletions
.gitignore
pom.xml
+65
-0
65 additions, 0 deletions
pom.xml
src/main/java/plugins/danyfel80/library/apache/ApacheCommonsCsvPlugin.java
+12
-0
12 additions, 0 deletions
...gins/danyfel80/library/apache/ApacheCommonsCsvPlugin.java
with
81 additions
and
0 deletions
.gitignore
0 → 100644
+
4
−
0
View file @
c42e0792
/target/
/.settings/
/.classpath
/.project
This diff is collapsed.
Click to expand it.
pom.xml
0 → 100644
+
65
−
0
View file @
c42e0792
<?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>
<parent>
<groupId>
org.bioimageanalysis.icy
</groupId>
<artifactId>
parent-pom-plugin
</artifactId>
<version>
1.0.4
</version>
</parent>
<artifactId>
apache-commons-csv
</artifactId>
<version>
1.8.0
</version>
<name>
Apache Commons CSV library for Icy
</name>
<description>
</description>
<build>
<plugins>
<plugin>
<artifactId>
maven-assembly-plugin
</artifactId>
<version>
2.2.1
</version>
<configuration>
<descriptorRefs>
<descriptorRef>
jar-with-dependencies
</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>
make-assembly
</id>
<phase>
package
</phase>
<goals>
<goal>
single
</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-csv -->
<dependency>
<groupId>
org.apache.commons
</groupId>
<artifactId>
commons-csv
</artifactId>
<version>
1.8
</version>
</dependency>
<dependency>
<groupId>
org.bioimageanalysis.icy
</groupId>
<artifactId>
ezplug
</artifactId>
<scope>
provided
</scope>
</dependency>
<dependency>
<groupId>
org.bioimageanalysis.icy
</groupId>
<artifactId>
protocols
</artifactId>
<scope>
provided
</scope>
</dependency>
<dependency>
<groupId>
org.bioimageanalysis.icy
</groupId>
<artifactId>
icy-kernel
</artifactId>
<scope>
provided
</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>
icy
</id>
<url>
https://icy-nexus.pasteur.fr/repository/Icy/
</url>
</repository>
</repositories>
</project>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/main/java/plugins/danyfel80/library/apache/ApacheCommonsCsvPlugin.java
0 → 100644
+
12
−
0
View file @
c42e0792
package
plugins.danyfel80.library.apache
;
import
icy.plugin.abstract_.Plugin
;
import
icy.plugin.interface_.PluginLibrary
;
/**
* Icy wrapper for the Apache Commons CSV library.
* @author Daniel Felipe Gonzalez Obando
*/
public
class
ApacheCommonsCsvPlugin
extends
Plugin
implements
PluginLibrary
{
}
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