Commit 9de1f864 by Zahid Hassan

Ekpay encryption service done

parent e667b0fd
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
<groupId>bd.gov</groupId> <groupId>bd.gov</groupId>
<artifactId>ekpayencryption</artifactId> <artifactId>ekpayencryption</artifactId>
<version>0.0.1-SNAPSHOT</version> <version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<name>ekpayencryption</name> <name>ekpayencryption</name>
<description>Ekpay Encryption Decryption Service</description> <description>Ekpay Encryption Decryption Service</description>
<properties> <properties>
......
package bd.gov.ekpayencryption;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
public class ServletInitializer extends SpringBootServletInitializer {
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
return application.sources(EkpayencryptionApplication.class);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment