Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Jython ExecNet
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Bioimage Analysis
Icy
Extensions
Jython ExecNet
Commits
c4b7380c
Commit
c4b7380c
authored
1 year ago
by
Thomas MUSSET
Browse files
Options
Downloads
Patches
Plain Diff
updated pom, optimized code for java 11
parent
687a3aa9
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
+4
-22
4 additions, 22 deletions
pom.xml
src/main/java/plugins/tlecomte/jythonExecnetForIcy/JythonExecnetForIcy.java
+19
-2
19 additions, 2 deletions
...ins/tlecomte/jythonExecnetForIcy/JythonExecnetForIcy.java
with
25 additions
and
25 deletions
.gitignore
+
2
−
1
View file @
c4b7380c
...
...
@@ -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
+
4
−
22
View file @
c4b7380c
...
...
@@ -7,22 +7,20 @@
<!-- Inherited Icy Parent POM -->
<parent>
<groupId>
org.bioimageanalysis.icy
</groupId>
<artifactId>
p
arent-pom-plugin
</artifactId>
<version>
1.0.3
</version>
<artifactId>
p
om-icy
</artifactId>
<version>
2.2.0
</version>
</parent>
<!-- Project Information -->
<artifactId>
jython-execnet
</artifactId>
<version>
5.5.2
</version>
<packaging>
jar
</packaging>
<version>
6.0.0
</version>
<name>
Jython execnet for Icy
</name>
<description>
Enables Python scripts that are run inside Icy to communicate with other Python instances outside Icy. This allows the access to
CPython-only libraries such as Numpy.
</description>
<url>
http://icy.bioimageanalysis.org/plugin/jython-execnet-for-icy/
</url>
<url>
http
s
://icy.bioimageanalysis.org/plugin/jython-execnet-for-icy/
</url>
<inceptionYear>
2020
</inceptionYear>
<organization>
...
...
@@ -56,27 +54,11 @@
</developer>
</developers>
<!-- Project properties -->
<properties>
</properties>
<!-- Project build configuration -->
<build>
</build>
<!-- List of project's dependencies -->
<dependencies>
<!-- The core of Icy -->
<dependency>
<groupId>
org.bioimageanalysis.icy
</groupId>
<artifactId>
icy-kernel
</artifactId>
</dependency>
<dependency>
<groupId>
org.bioimageanalysis.icy
</groupId>
<artifactId>
jython
</artifactId>
<version>
2.8.0
</version>
</dependency>
</dependencies>
...
...
This diff is collapsed.
Click to expand it.
src/main/java/plugins/tlecomte/jythonExecnetForIcy/JythonExecnetForIcy.java
+
19
−
2
View file @
c4b7380c
/*
* 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.tlecomte.jythonExecnetForIcy
;
import
icy.plugin.abstract_.Plugin
;
...
...
@@ -5,7 +23,6 @@ import icy.plugin.interface_.PluginLibrary;
import
plugins.tlecomte.jythonForIcy.PythonLibraries
;
@PythonLibraries
public
class
JythonExecnetForIcy
extends
Plugin
implements
PluginLibrary
{
public
class
JythonExecnetForIcy
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