-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
28 lines (24 loc) · 1.65 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/**
* HORTONWORKS DATAPLANE SERVICE AND ITS CONSTITUENT SERVICES
*
* (c) 2016-2018 Hortonworks, Inc. All rights reserved.
*
* This code is provided to you pursuant to your written agreement with Hortonworks, which may be the terms
* of the Affero General Public License version 3 (AGPLv3), or pursuant to a written agreement with a third party
* authorized to distribute this code. If you do not have a written agreement with Hortonworks or with
* an authorized and properly licensed third party, you do not have any rights to this code.
*
* If this code is provided to you under the terms of the AGPLv3: A) HORTONWORKS PROVIDES THIS CODE TO YOU
* WITHOUT WARRANTIES OF ANY KIND; (B) HORTONWORKS DISCLAIMS ANY AND ALL EXPRESS AND IMPLIED WARRANTIES WITH
* RESPECT TO THIS CODE, INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
* AND FITNESS FOR A PARTICULAR PURPOSE; (C) HORTONWORKS IS NOT LIABLE TO YOU, AND WILL NOT DEFEND, INDEMNIFY,
* OR HOLD YOU HARMLESS FOR ANY CLAIMS ARISING FROM OR RELATED TO THE CODE; AND (D) WITH RESPECT
* TO YOUR EXERCISE OF ANY RIGHTS GRANTED TO YOU FOR THE CODE, HORTONWORKS IS NOT LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, PUNITIVE OR CONSEQUENTIAL DAMAGES INCLUDING, BUT NOT LIMITED TO,
* DAMAGES RELATED TO LOST REVENUE, LOST PROFITS, LOSS OF INCOME, LOSS OF BUSINESS ADVANTAGE OR UNAVAILABILITY,
* OR LOSS OR CORRUPTION OF DATA.
*/
name := """dlm"""
Common.settings
lazy val beaconClient = (project in file("clients/beacon-client"))
lazy val dlmApp = (project in file("dlm-app")).enablePlugins(PlayScala).dependsOn(beaconClient)