Skip to content

Commit

Permalink
Fix the rotate tool. Allow Hibernate validator to validate the parame…
Browse files Browse the repository at this point in the history
…ter class
  • Loading branch information
torakiki committed Feb 1, 2023
1 parent 7a72384 commit d327c27
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions pdfsam-model/src/main/java/module-info.java
Expand Up @@ -16,12 +16,13 @@
* 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.model {
//open because so we don't have issue with validation and reflection
open module org.pdfsam.model {
requires org.apache.commons.io;
requires org.apache.commons.lang3;
requires org.pdfsam.i18n;
requires org.sejda.conversion;

requires transitive org.kordamp.ikonli.unicons;
requires transitive org.kordamp.ikonli.core;
requires transitive jakarta.validation;
Expand All @@ -43,9 +44,4 @@
exports org.pdfsam.model.ui.workspace;
exports org.pdfsam.model.update;
exports org.pdfsam.model.ui.dnd;

opens org.pdfsam.model.images;
opens org.pdfsam.model.ui to com.fasterxml.jackson.databind;
opens org.pdfsam.model.premium to com.fasterxml.jackson.databind;
opens org.pdfsam.model.news to com.fasterxml.jackson.databind;
}

0 comments on commit d327c27

Please sign in to comment.