mirror of
				https://github.com/datahub-project/datahub.git
				synced 2025-11-03 20:27:50 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			929 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			929 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
apply from: '../gradle/scripts/play.gradle'
 | 
						|
 | 
						|
// Change this to listen on a different port
 | 
						|
project.ext.httpPort = 19001
 | 
						|
project.ext.playBinaryBaseName = "wherehows-backend"
 | 
						|
 | 
						|
dependencies {
 | 
						|
    // User defined libraries (will be copied to lib/ before `play compile`)
 | 
						|
    play project(":wherehows-common")
 | 
						|
    play project(":wherehows-etl")
 | 
						|
    play project(":wherehows-dao")
 | 
						|
 | 
						|
    play externalDependency.play_java_jdbc
 | 
						|
    play externalDependency.slf4j_api
 | 
						|
    play externalDependency.jasypt
 | 
						|
 | 
						|
    playTest externalDependency.systemRules
 | 
						|
    playTest externalDependency.festAssert
 | 
						|
    playTest externalDependency.mockito
 | 
						|
}
 | 
						|
 | 
						|
model {
 | 
						|
    distributions {
 | 
						|
        playBinary {
 | 
						|
            contents {
 | 
						|
                from("jobs") {
 | 
						|
                    into "jobs"
 | 
						|
                }
 | 
						|
                from("../wherehows-data-model/ELASTICSEARCH") {
 | 
						|
                    into "ELASTICSEARCH"
 | 
						|
                }
 | 
						|
            }
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |