Skip to content

Commit

Permalink
fixed build
Browse files Browse the repository at this point in the history
  • Loading branch information
rybalkinsd committed Apr 23, 2018
1 parent 5981d84 commit bd8d042
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
6 changes: 0 additions & 6 deletions lecture11/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,6 @@ dependencies {
testCompile group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: '2.0.0.RELEASE'
}

jar {
from configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
manifest { attributes 'Main-Class': 'ru.atom.lecture11.billing.BillingServer' }
}


checkstyle {
ignoreFailures = false
toolVersion = '7.5'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
package ru.atom.lecture11.gameconcurrency;

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

@SpringBootApplication
//@SpringBootApplication
public class GameServer {
public static void main(String[] args) {
SpringApplication.run(GameServer.class, args);
Expand Down

0 comments on commit bd8d042

Please sign in to comment.