-
-
Notifications
You must be signed in to change notification settings - Fork 393
Expand file tree
/
Copy pathmodule-info.java
More file actions
43 lines (40 loc) · 1.58 KB
/
module-info.java
File metadata and controls
43 lines (40 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import org.pdfsam.model.tool.Tool;
import org.pdfsam.tools.splitbybookmarks.SplitByBookmarksTool;
/*
* This file is part of the PDF Split And Merge source code
* Created on 03/10/22
* Copyright 2022 by Sober Lemur S.r.l. (info@soberlemur.com).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program 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 Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/module org.pdfsam.tools.splitbybookmarks {
exports org.pdfsam.tools.splitbybookmarks;
requires org.pdfsam.core;
requires org.pdfsam.ui.components;
requires org.pdfsam.i18n;
requires transitive org.pdfsam.model;
requires jakarta.inject;
requires javafx.graphics;
requires javafx.controls;
requires org.pdfsam.eventstudio;
requires org.pdfsam.injector;
requires org.kordamp.ikonli.javafx;
requires org.kordamp.ikonli.unicons;
requires org.sejda.model;
requires org.sejda.commons;
requires org.sejda.core;
requires org.sejda.impl.sambox;
requires org.sejda.sambox;
requires org.slf4j;
provides Tool with SplitByBookmarksTool;
}