From 9f5c31e4e719399106e6d821532b011b7fd3939f Mon Sep 17 00:00:00 2001 From: Armin Schrenk Date: Thu, 21 Apr 2022 14:21:40 +0200 Subject: [PATCH] Move app specific license template to resources directory --- license/THIRD-PARTY.properties | 1 - pom.xml | 10 +++++++++- {license => src/main/resources/license}/template.ftl | 0 3 files changed, 9 insertions(+), 2 deletions(-) delete mode 100644 license/THIRD-PARTY.properties rename {license => src/main/resources/license}/template.ftl (100%) diff --git a/license/THIRD-PARTY.properties b/license/THIRD-PARTY.properties deleted file mode 100644 index 7af1b122f..000000000 --- a/license/THIRD-PARTY.properties +++ /dev/null @@ -1 +0,0 @@ -com.github.serceman--jnr-fuse--0.5.4=MIT License \ No newline at end of file diff --git a/pom.xml b/pom.xml index 94668e5e0..ba29cdeff 100644 --- a/pom.xml +++ b/pom.xml @@ -359,12 +359,20 @@ compile org\.cryptomator file:///${project.basedir}/license/merges - ${project.basedir}/license/template.ftl + ${project.basedir}/src/main/resources/license/template.ftl + + + src/main/resources + + license/* + + + diff --git a/license/template.ftl b/src/main/resources/license/template.ftl similarity index 100% rename from license/template.ftl rename to src/main/resources/license/template.ftl