#333 feature - Create SECuris repo, first steps
1 files added
1 files modified
| .. | .. |
|---|
| 21 | 21 | <artifactId>commons-lang</artifactId> |
|---|
| 22 | 22 | <version>2.6</version> |
|---|
| 23 | 23 | </dependency> |
|---|
| 24 | + <dependency> |
|---|
| 25 | + <groupId>net.curisit.integrity</groupId> |
|---|
| 26 | + <artifactId>commons</artifactId> |
|---|
| 27 | + <version>0.0.1-SNAPSHOT</version> |
|---|
| 28 | + </dependency> |
|---|
| 24 | 29 | </dependencies> |
|---|
| 25 | 30 | </project> |
|---|
| .. | .. |
|---|
| 1 | +package net.curisit.securis;
|
|---|
| 2 | +
|
|---|
| 3 | +import org.glassfish.grizzly.http.server.HttpServer;
|
|---|
| 4 | +import org.slf4j.Logger;
|
|---|
| 5 | +import org.slf4j.LoggerFactory;
|
|---|
| 6 | +
|
|---|
| 7 | +public class MainApp {
|
|---|
| 8 | +
|
|---|
| 9 | + private static final Logger log = LoggerFactory.getLogger(MainApp.class);
|
|---|
| 10 | +
|
|---|
| 11 | + private HttpServer mHttpServer;
|
|---|
| 12 | +
|
|---|
| 13 | + public static void main(String[] args) {
|
|---|
| 14 | + log.info("SeCuris init...");
|
|---|
| 15 | + }
|
|---|
| 16 | +
|
|---|
| 17 | +}
|
|---|