Github user JPercivall commented on a diff in the pull request:
https://github.com/apache/nifi/pull/1610#discussion_r110550161
--- Diff: nifi-bootstrap/pom.xml ---
@@ -34,13 +34,26 @@ language governing permissions and limitations under
the License. -->
<artifactId>nifi-utils</artifactId>
</dependency>
<dependency>
+ <groupId>org.apache.nifi</groupId>
+ <artifactId>nifi-security-utils</artifactId>
+ </dependency>
+ <dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
</dependency>
<dependency>
<groupId>org.apache.nifi</groupId>
<artifactId>nifi-expression-language</artifactId>
</dependency>
+ <dependency>
+ <groupId>com.squareup.okhttp3</groupId>
--- End diff --
Yup when doing a "mvn dependency:tree -Dverbose" the only related deps are:
```
+- com.squareup.okhttp3:okhttp:jar:3.6.0:compile
| \- com.squareup.okio:okio:jar:1.11.0:compile
+- com.squareup.okhttp3:mockwebserver:jar:3.6.0:test
| +- (com.squareup.okhttp3:okhttp:jar:3.6.0:test - omitted for duplicate)
| +- (org.bouncycastle:bcprov-jdk15on:jar:1.55:test - version managed from
1.50; omitted for duplicate)
| \- (junit:junit:jar:4.12:test - omitted for duplicate)
```
The only other compile related one is "okio" which is offered under the
same license:
https://github.com/square/okio
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---