Skip to content

Commit

Permalink
fix module
Browse files Browse the repository at this point in the history
  • Loading branch information
zdenek-jonas committed Nov 8, 2023
1 parent 61ddf8e commit 424af5e
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions examples/spring-boot3-simple/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@
* SPDX-License-Identifier: EPL-2.0
* #L%
*/
module spring.boot3.simple {
requires spring.context;
requires spring.boot.autoconfigure;
requires spring.boot;
requires org.eclipse.store.integrations.spring.boot;
requires spring.web;
open module spring.boot3.simple {
requires transitive spring.context;
requires transitive spring.boot.autoconfigure;
requires transitive spring.boot;
requires transitive org.eclipse.store.integrations.spring.boot;
requires transitive spring.web;

}

0 comments on commit 424af5e

Please sign in to comment.