server/java/settings.gradle
author durandn
Thu, 21 Apr 2016 15:18:19 +0200
changeset 605 13d355fd09bf
parent 316 242510015401
permissions -rw-r--r--
updated uri to allow optional trailing slash on single resource URIs (django automatic redirects don't carry over the Authorization header that can sometimes be needed, for instance with OAuth)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
311
32abe8b3e501 add gradle build
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
rootProject.name = 'renkan'
32abe8b3e501 add gradle build
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
include ':renkan-core'
32abe8b3e501 add gradle build
ymh <ymh.work@gmail.com>
parents:
diff changeset
     3
include ':renkan-web'
32abe8b3e501 add gradle build
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
include ':renkan-management'
32abe8b3e501 add gradle build
ymh <ymh.work@gmail.com>
parents:
diff changeset
     5
32abe8b3e501 add gradle build
ymh <ymh.work@gmail.com>
parents:
diff changeset
     6
project(':renkan-core').projectDir = "$rootDir/renkan-core" as File
32abe8b3e501 add gradle build
ymh <ymh.work@gmail.com>
parents:
diff changeset
     7
project(':renkan-web').projectDir = "$rootDir/renkan-web" as File
32abe8b3e501 add gradle build
ymh <ymh.work@gmail.com>
parents:
diff changeset
     8
project(':renkan-management').projectDir = "$rootDir/renkan-management" as File