mirror of https://github.com/apache/nifi.git
NIFI-4389: This closes #2368. Add Ivy to scripting NARs for Grape/Grab in Groovy
Signed-off-by: joewitt <joewitt@apache.org>
This commit is contained in:
parent
a2a8fcb31c
commit
e439cfef10
|
@ -1556,6 +1556,25 @@ The following binary components are provided under the Apache Software License v
|
||||||
The following NOTICE information applies:
|
The following NOTICE information applies:
|
||||||
Copyright (c) 2009-2011 Christian Kohlschütter
|
Copyright (c) 2009-2011 Christian Kohlschütter
|
||||||
|
|
||||||
|
(ASLv2) Apache Ivy
|
||||||
|
The following NOTICE information applies:
|
||||||
|
Copyright 2007-2017 The Apache Software Foundation
|
||||||
|
|
||||||
|
This product includes software developed at
|
||||||
|
The Apache Software Foundation (http://www.apache.org/).
|
||||||
|
|
||||||
|
Portions of Ivy were originally developed at
|
||||||
|
Jayasoft SARL (http://www.jayasoft.fr/)
|
||||||
|
and are licensed to the Apache Software Foundation under the
|
||||||
|
"Software Grant License Agreement"
|
||||||
|
|
||||||
|
SSH and SFTP support is provided by the JCraft JSch package,
|
||||||
|
which is open source software, available under
|
||||||
|
the terms of a BSD style license.
|
||||||
|
The original software and related information is available
|
||||||
|
at http://www.jcraft.com/jsch/.
|
||||||
|
|
||||||
|
|
||||||
************************
|
************************
|
||||||
Common Development and Distribution License 1.1
|
Common Development and Distribution License 1.1
|
||||||
************************
|
************************
|
||||||
|
|
|
@ -12,3 +12,22 @@ The following binary components are provided under the Apache Software License v
|
||||||
|
|
||||||
Apache Groovy
|
Apache Groovy
|
||||||
Copyright 2003-2015 The Apache Software Foundation
|
Copyright 2003-2015 The Apache Software Foundation
|
||||||
|
|
||||||
|
Apache Ivy
|
||||||
|
The following NOTICE information applies:
|
||||||
|
Copyright 2007-2017 The Apache Software Foundation
|
||||||
|
|
||||||
|
This product includes software developed at
|
||||||
|
The Apache Software Foundation (http://www.apache.org/).
|
||||||
|
|
||||||
|
Portions of Ivy were originally developed at
|
||||||
|
Jayasoft SARL (http://www.jayasoft.fr/)
|
||||||
|
and are licensed to the Apache Software Foundation under the
|
||||||
|
"Software Grant License Agreement"
|
||||||
|
|
||||||
|
SSH and SFTP support is provided by the JCraft JSch package,
|
||||||
|
which is open source software, available under
|
||||||
|
the terms of a BSD style license.
|
||||||
|
The original software and related information is available
|
||||||
|
at http://www.jcraft.com/jsch/.
|
||||||
|
|
||||||
|
|
|
@ -41,6 +41,11 @@
|
||||||
<artifactId>groovy-all</artifactId>
|
<artifactId>groovy-all</artifactId>
|
||||||
<version>2.4.12</version>
|
<version>2.4.12</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.ivy</groupId>
|
||||||
|
<artifactId>ivy</artifactId>
|
||||||
|
<version>2.4.0</version>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.nifi</groupId>
|
<groupId>org.apache.nifi</groupId>
|
||||||
<artifactId>nifi-dbcp-service-api</artifactId>
|
<artifactId>nifi-dbcp-service-api</artifactId>
|
||||||
|
|
|
@ -55,6 +55,24 @@ The following binary components are provided under the Apache Software License v
|
||||||
Expert Group and released to the public domain, as explained at
|
Expert Group and released to the public domain, as explained at
|
||||||
http://creativecommons.org/publicdomain/zero/1.0/
|
http://creativecommons.org/publicdomain/zero/1.0/
|
||||||
|
|
||||||
|
(ASLv2) Apache Ivy
|
||||||
|
The following NOTICE information applies:
|
||||||
|
Copyright 2007-2017 The Apache Software Foundation
|
||||||
|
|
||||||
|
This product includes software developed at
|
||||||
|
The Apache Software Foundation (http://www.apache.org/).
|
||||||
|
|
||||||
|
Portions of Ivy were originally developed at
|
||||||
|
Jayasoft SARL (http://www.jayasoft.fr/)
|
||||||
|
and are licensed to the Apache Software Foundation under the
|
||||||
|
"Software Grant License Agreement"
|
||||||
|
|
||||||
|
SSH and SFTP support is provided by the JCraft JSch package,
|
||||||
|
which is open source software, available under
|
||||||
|
the terms of a BSD style license.
|
||||||
|
The original software and related information is available
|
||||||
|
at http://www.jcraft.com/jsch/.
|
||||||
|
|
||||||
******************
|
******************
|
||||||
Eclipse Public License v1.0
|
Eclipse Public License v1.0
|
||||||
******************
|
******************
|
||||||
|
|
|
@ -54,6 +54,11 @@
|
||||||
<groupId>org.codehaus.groovy</groupId>
|
<groupId>org.codehaus.groovy</groupId>
|
||||||
<artifactId>groovy-all</artifactId>
|
<artifactId>groovy-all</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.ivy</groupId>
|
||||||
|
<artifactId>ivy</artifactId>
|
||||||
|
<version>2.4.0</version>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.scijava</groupId>
|
<groupId>org.scijava</groupId>
|
||||||
<artifactId>jython-shaded</artifactId>
|
<artifactId>jython-shaded</artifactId>
|
||||||
|
|
Loading…
Reference in New Issue