ulisesbocchio/jasypt-spring-boot

View on GitHub
jasypt-maven-plugin/src/main/java/com/ulisesbocchio/jasyptmavenplugin/mojo/Application.java

Summary

Maintainability
A
0 mins
Test Coverage
package com.ulisesbocchio.jasyptmavenplugin.mojo;

import org.springframework.boot.autoconfigure.SpringBootApplication;

/**
 * The main class. Note that location is important, at the root package of this module, so that
 * the correct spring configuration can be located. No main method is required because this will be
 * initiated via a Maven Mojo. See {@link com.ulisesbocchio.jasyptmavenplugin.mojo.AbstractJasyptMojo}.
 *
 * @author Rupert Madden-Abbott
 * @version $Id: $Id
 */
@SpringBootApplication
public class Application {
}