From ce62b426f8bd8aab3abab1595542853509471015 Mon Sep 17 00:00:00 2001
From: Jens Bendisposto <jens@bendisposto.de>
Date: Tue, 18 Aug 2015 20:44:46 +0200
Subject: [PATCH] jar location

---
 .travis.yml  | 2 +-
 build.gradle | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index ab8a42f..10ad5ce 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -8,7 +8,7 @@ before_install:
 - openssl aes-256-cbc -pass pass:$ENCRYPTION_PASSWORD -in gradle.properties.enc -out
   gradle.properties -d
 
-after_success: find build/tlc4b/TLC4B.jar -type f -exec
+after_success: find TLC4B.jar -type f -exec
   curl -u $FTP_USER:$FTP_PASS --ftp-create-dirs -T {} ftp://cobra.cs.uni-duesseldorf.de/upload/{}
   \;
 
diff --git a/build.gradle b/build.gradle
index 08aa79d..8a709be 100644
--- a/build.gradle
+++ b/build.gradle
@@ -99,7 +99,7 @@ jar {
 task tlc4b(dependsOn: build) << {
 	copy {
 		from('build/libs/')
-		into('build/tlc4b')
+		into('.')
 		include('tlc4b-'+project.version+'.jar')
 		rename('tlc4b-(.+)', 'TLC4B.jar')
 	}
-- 
GitLab