name.remal.gradle_plugins.idea_settings.IdeaDatabaseSettings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of idea-settings Show documentation
Show all versions of idea-settings Show documentation
Remal Gradle plugins: idea-settings
The newest version!
package name.remal.gradle_plugins.idea_settings;
import javax.annotation.Nullable;
import javax.inject.Inject;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
public class IdeaDatabaseSettings {
@Nullable
private String defaultDialect;
@Inject
public IdeaDatabaseSettings() {
// do nothing
}
}