Skip to content

Commit

Permalink
fixed project names
Browse files Browse the repository at this point in the history
  • Loading branch information
musketyr committed Dec 6, 2019
1 parent 1741649 commit 709871c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions examples/local-server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apply plugin: "application"
apply plugin: "com.github.johnrengelman.shadow"

dependencies {
compile project(':examples/planets')
compile project(':examples/spacecrafts')
compile project(':examples_planets')
compile project(':examples_spacecrafts')

compile "com.agorapulse:dru-client-dynamodb:${druVersion}"
compile "com.agorapulse:gru-api-gateway:$gruVersion"
Expand Down
10 changes: 7 additions & 3 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ include 'micronaut-aws-sdk'
include 'micronaut-grails'

// examples
include 'examples/local-server'
include 'examples/planets'
include 'examples/spacecrafts'
include 'examples_local-server'
include 'examples_planets'
include 'examples_spacecrafts'

project(':examples_local-server').projectDir = file('./examples/local-server')
project(':examples_planets').projectDir = file('./examples/planets')
project(':examples_spacecrafts').projectDir = file('./examples/spacecrafts')

0 comments on commit 709871c

Please sign in to comment.