Skip to content

Commit

Permalink
HSEARCH-4768 Remove unnecessary 'requires' clauses in Java module tes…
Browse files Browse the repository at this point in the history
…ts with ORM 6

Since the mapper-orm module now defines 'requires' clauses by itself,
those don't need to be repeated in consuming modules.
  • Loading branch information
yrodiere authored and marko-bekhta committed Sep 25, 2023
1 parent b914387 commit a7f5634
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,6 @@
requires org.hibernate.search.backend.elasticsearch;
requires org.hibernate.search.mapper.orm.coordination.outboxpolling;

// This should be re-exported transitively by org.hibernate.search.mapper.orm
// but currently isn't, because org.hibernate.search.mapper.orm
// is still an automatic module
requires org.hibernate.search.engine;
requires org.hibernate.search.mapper.pojo;

/*
* This is necessary in order to use SessionFactory,
* which extends "javax.naming.Referenceable".
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,6 @@
requires org.hibernate.search.mapper.orm;
requires org.hibernate.search.backend.elasticsearch;

// This should be re-exported transitively by org.hibernate.search.mapper.orm
// but currently isn't, because org.hibernate.search.mapper.orm
// is still an automatic module
requires org.hibernate.search.engine;
requires org.hibernate.search.mapper.pojo;

/*
* This is necessary in order to use SessionFactory,
* which extends "javax.naming.Referenceable".
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,6 @@
requires org.hibernate.search.mapper.orm;
requires org.hibernate.search.backend.lucene;

// This should be re-exported transitively by org.hibernate.search.mapper.orm
// but currently isn't, because org.hibernate.search.mapper.orm
// is still an automatic module
requires org.hibernate.search.engine;
requires org.hibernate.search.mapper.pojo;

/*
* This is necessary in order to use SessionFactory,
* which extends "javax.naming.Referenceable".
Expand Down

0 comments on commit a7f5634

Please sign in to comment.