Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
BridJ Library
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
BridJ Library
Commits
f1aa5116
Commit
f1aa5116
authored
1 year ago
by
Thomas MUSSET
Browse files
Options
Downloads
Patches
Plain Diff
updated pom, optimized code for java 11
parent
6037cc08
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
+2
-1
2 additions, 1 deletion
.gitignore
pom.xml
+6
-24
6 additions, 24 deletions
pom.xml
src/main/java/plugins/stef/library/BridJLibraryPlugin.java
+20
-3
20 additions, 3 deletions
src/main/java/plugins/stef/library/BridJLibraryPlugin.java
with
28 additions
and
28 deletions
.gitignore
+
2
−
1
View file @
f1aa5116
...
...
@@ -3,4 +3,5 @@ target/
.settings/
*.iml
.project
.classpath
\ No newline at end of file
.classpath
**/.DS_Store
\ No newline at end of file
This diff is collapsed.
Click to expand it.
pom.xml
+
6
−
24
View file @
f1aa5116
...
...
@@ -6,20 +6,18 @@
<!-- Inherited Icy Parent POM -->
<parent>
<artifactId>
pom-icy
</artifactId>
<artifactId>
pom-icy
</artifactId>
<groupId>
org.bioimageanalysis.icy
</groupId>
<version>
2.
0
.0
</version>
</parent>
<version>
2.
2
.0
</version>
</parent>
<!-- Project Information -->
<artifactId>
bridj
</artifactId>
<version>
0.7.0
</version>
<packaging>
jar
</packaging>
<version>
1.0.0
</version>
<name>
BridJ
</name>
<description>
BridJ for Icy
</description>
<url>
http://icy.bioimageanalysis.org/plugin/bridj-library/
</url>
<url>
http
s
://icy.bioimageanalysis.org/plugin/bridj-library/
</url>
<inceptionYear>
2020
</inceptionYear>
<organization>
...
...
@@ -55,27 +53,11 @@
<!-- Project properties -->
<properties>
<artifact-to-
include
>
bridj
</artifact-to-
include
>
<artifact-to-
extract
>
bridj
</artifact-to-
extract
>
</properties>
<profiles>
<profile>
<id>
icy-plugin-extract-library
</id>
<activation>
<activeByDefault>
true
</activeByDefault>
</activation>
</profile>
</profiles>
<!-- List of project's dependencies -->
<dependencies>
<!-- The core of Icy -->
<dependency>
<groupId>
org.bioimageanalysis.icy
</groupId>
<artifactId>
icy-kernel
</artifactId>
<version>
${icy-kernel.version}
</version>
</dependency>
<dependency>
<groupId>
com.nativelibs4java
</groupId>
<artifactId>
bridj
</artifactId>
...
...
This diff is collapsed.
Click to expand it.
src/main/java/plugins/stef/library/BridJLibraryPlugin.java
+
20
−
3
View file @
f1aa5116
/*
* Copyright (c) 2010-2023. 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.stef.library
;
import
icy.plugin.abstract_.Plugin
;
...
...
@@ -5,10 +23,9 @@ import icy.plugin.interface_.PluginLibrary;
/**
* Simple Icy plugin library for the BridJ library
*
*
* @author Stephane
*/
public
class
BridJLibraryPlugin
extends
Plugin
implements
PluginLibrary
{
public
class
BridJLibraryPlugin
extends
Plugin
implements
PluginLibrary
{
// just to encapsulate the BridJ library
}
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