Add module-info.java for dbmigration-runner

This commit is contained in:
Roland Praml
2022-04-11 10:28:04 +02:00
parent ceb5c7f05e
commit 6596293b27
2 changed files with 19 additions and 17 deletions
+9 -17
View File
@@ -4,7 +4,7 @@
<parent>
<artifactId>ebean-parent</artifactId>
<groupId>io.ebean</groupId>
<version>13.2.1-SNAPSHOT</version>
<version>13.3.0-SNAPSHOT</version>
</parent>
<name>ebean dbmigration runner</name>
@@ -19,10 +19,17 @@
<version>${ebean-migration-auto.version}</version>
</dependency>
<dependency>
<groupId>io.ebean</groupId>
<artifactId>ebean-annotation</artifactId>
<version>8.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.ebean</groupId>
<artifactId>ebean-core</artifactId>
<version>13.2.1-SNAPSHOT</version>
<version>13.3.0-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
@@ -33,19 +40,4 @@
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>io.repaint.maven</groupId>
<artifactId>tiles-maven-plugin</artifactId>
<version>2.24</version>
<extensions>true</extensions>
<configuration>
<tiles>
<tile>io.avaje.tile:moditech-module:1.0</tile>
</tiles>
</configuration>
</plugin>
</plugins>
</build>
</project>
@@ -0,0 +1,10 @@
module io.ebean.dbmigration.runner {
provides io.ebean.plugin.Plugin with io.ebeaninternal.dbmigration.run.DbRunMigrationPlugin;
/*requires transitive io.ebean.ddl.runner;
requires transitive io.ebean.core;*/
requires transitive io.ebean.annotation;
requires io.ebean.api;
requires io.ebean.migration;
}