You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuweni.apache.org by to...@apache.org on 2019/04/23 19:36:44 UTC

[incubator-tuweni] 40/40: Add DISCLAIMER and NOTICE files to the build

This is an automated email from the ASF dual-hosted git repository.

toulmean pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tuweni.git

commit dd74077c38e3122219f583e7fee684f1b8225d00
Author: Antoine Toulme <to...@apache.org>
AuthorDate: Tue Apr 23 11:35:25 2019 -0700

    Add DISCLAIMER and NOTICE files to the build
---
 DISCLAIMER   |  5 +++++
 NOTICE       | 12 ++++++++++++
 build.gradle | 21 +++++++++++++++++++++
 3 files changed, 38 insertions(+)

diff --git a/DISCLAIMER b/DISCLAIMER
new file mode 100644
index 0000000..49435e3
--- /dev/null
+++ b/DISCLAIMER
@@ -0,0 +1,5 @@
+Apache Tuweni is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Incubator.
+Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, 
+and decision making process have stabilized in a manner consistent with other successful ASF projects. 
+While incubation status is not necessarily a reflection of the completeness or stability of the code, 
+it does indicate that the project has yet to be fully endorsed by the ASF.
\ No newline at end of file
diff --git a/NOTICE b/NOTICE
new file mode 100644
index 0000000..607b484
--- /dev/null
+++ b/NOTICE
@@ -0,0 +1,12 @@
+
+   =========================================================================
+   ==  NOTICE file corresponding to the section 4 d of                    ==
+   ==  the Apache License, Version 2.0,                                   ==
+   ==  in this case for the Apache Tuweni distribution.                    ==
+   =========================================================================
+
+   This product includes software developed by
+   The Apache Software Foundation (http://www.apache.org/).
+
+   Please read the different LICENSE files present in the licenses directory of
+   this distribution.
\ No newline at end of file
diff --git a/build.gradle b/build.gradle
index f765ea1..b4aee72 100644
--- a/build.gradle
+++ b/build.gradle
@@ -14,6 +14,7 @@ plugins {
   id 'org.jetbrains.kotlin.jvm' version '1.3.20'
   id 'org.jetbrains.dokka' version '0.9.17'
   id 'maven-publish'
+  id 'distribution'
 }
 
 description = 'A set of libraries and other tools to aid development of blockchain and other decentralized software in Java and other JVM languages'
@@ -258,11 +259,31 @@ allprojects {
       'Implementation-Version': project.version)
     }
     from(project.projectDir) {
+      include 'DISCLAIMER'
       include 'LICENSE'
+      include 'NOTICE'
       into 'META-INF'
     }
   }
 
+  distZip {
+    into(project.name) {
+      from '.'
+      include 'DISCLAIMER'
+      include 'LICENSE'
+      include 'NOTICE'
+    }
+  }
+
+  distTar {
+    into(project.name) {
+      from '.'
+      include 'DISCLAIMER'
+      include 'LICENSE'
+      include 'NOTICE'
+    }
+  }
+
   if (project.name != 'eth-reference-tests') {
 
     artifacts {


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@tuweni.apache.org
For additional commands, e-mail: commits-help@tuweni.apache.org