From 50eaf2466206bd33b6222fcb40c0d614c82384a9 Mon Sep 17 00:00:00 2001 From: Thomas <thomas.musset@pasteur.fr> Date: Thu, 27 Jul 2023 16:00:12 +0200 Subject: [PATCH] moved java file from resources folder to java folder --- .../library/apache/ApacheXMLBeansPlugin.java | 32 +++++++++++++++++++ .../apache/ApacheXMLBeansPlugin.java | 14 -------- 2 files changed, 32 insertions(+), 14 deletions(-) create mode 100644 src/main/java/plugins/stef/library/apache/ApacheXMLBeansPlugin.java delete mode 100644 src/main/resources/apache/ApacheXMLBeansPlugin.java diff --git a/src/main/java/plugins/stef/library/apache/ApacheXMLBeansPlugin.java b/src/main/java/plugins/stef/library/apache/ApacheXMLBeansPlugin.java new file mode 100644 index 0000000..6c1692f --- /dev/null +++ b/src/main/java/plugins/stef/library/apache/ApacheXMLBeansPlugin.java @@ -0,0 +1,32 @@ +/* + * 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.apache; + +import icy.plugin.abstract_.Plugin; +import icy.plugin.interface_.PluginLibrary; + +/** + * Icy wrapper for the Apache XMLBeans library. + * + * @author Stephane Dallongeville + */ +public class ApacheXMLBeansPlugin extends Plugin implements PluginLibrary +{ + // +} diff --git a/src/main/resources/apache/ApacheXMLBeansPlugin.java b/src/main/resources/apache/ApacheXMLBeansPlugin.java deleted file mode 100644 index 79ac5ac..0000000 --- a/src/main/resources/apache/ApacheXMLBeansPlugin.java +++ /dev/null @@ -1,14 +0,0 @@ -package plugins.stef.library.apache; - -import icy.plugin.abstract_.Plugin; -import icy.plugin.interface_.PluginLibrary; - -/** - * Icy wrapper for the Apache XMLBeans library. - * - * @author Stephane Dallongeville - */ -public class ApacheXMLBeansPlugin extends Plugin implements PluginLibrary -{ - // -} -- GitLab