Skip to content

Commit

Permalink
events
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabio Esposito committed Aug 18, 2017
1 parent 68f11af commit 1410b63
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ survey-api/build/
survey-common/build/
survey-read/build/
survey-write/build/
survey-events/build/
.idea/
.gradle/
.vertx/
19 changes: 19 additions & 0 deletions survey-events/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
apply plugin: 'application'

dependencies {
compile project(":survey-common")
}

shadowJar {
classifier = 'fat'
mainClassName = 'com.surveygorilla.event.MainEvent'

manifest {
attributes 'Main-Verticle': 'com.surveygorilla.event.SurveyEventVerticle'
}
mergeServiceFiles {
include 'META-INF/survey-api/io.vertx.core.spi.VerticleFactory'
}
}

build.dependsOn(shadowJar)

0 comments on commit 1410b63

Please sign in to comment.