Skip to content

Commit

Permalink
Implement the copy flag
Browse files Browse the repository at this point in the history
  • Loading branch information
EtienneLamoureux committed Jan 30, 2021
1 parent feef9dd commit 24eb5f0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = 'com.etiennelamoureux'
version = '1.1.1'
version = '1.2.0'
sourceCompatibility = '11'

repositories {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package com.etiennelamoureux.reverseflhook;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;

@SpringBootApplication
public class ReverseFLHook {

public static void main(String[] args) {
SpringApplication.run(ReverseFLHook.class, args);
new SpringApplicationBuilder(ReverseFLHook.class).headless(false).run(args);
}

}

0 comments on commit 24eb5f0

Please sign in to comment.