Skip to content

Commit

Permalink
Add support for GraalVM (#107)
Browse files Browse the repository at this point in the history
* Add GraalVM configuration

* Add GraalVM configuration for /liquibase endpoint

* Add documentation
  • Loading branch information
ilopmar authored Nov 16, 2020
1 parent 2876770 commit d500059
Show file tree
Hide file tree
Showing 5 changed files with 485 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
*/
package io.micronaut.liquibase.endpoint;

import io.micronaut.core.annotation.Creator;
import io.micronaut.core.annotation.Introspected;
import liquibase.changelog.RanChangeSet;

import java.util.List;
Expand All @@ -26,6 +28,7 @@
* @author Sergio del Amo
* @since 1.0.0
*/
@Introspected
public class LiquibaseReport {

private String name;
Expand All @@ -35,6 +38,7 @@ public class LiquibaseReport {
* @param name The name of the data source
* @param changeSets The list of changes
*/
@Creator
public LiquibaseReport(String name, List<RanChangeSet> changeSets) {
this.name = name;
this.changeSets = changeSets;
Expand Down
Loading

0 comments on commit d500059

Please sign in to comment.