10 lines
		
	
	
		
			278 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			278 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| set -e
 | |
| 
 | |
| # Change the current working directory to the location of the present file
 | |
| cd "$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
 | |
| 
 | |
| mvn clean compile assembly:single
 | |
| mv target/da_project-1.0-SNAPSHOT-jar-with-dependencies.jar bin/da_proc.jar
 |