Add requiresUnpack for script-processor

The `Jython` doesn't work in the uber jar as a nested one.
The Spring Boot provides a trick via unpacking requested nested jars.

* Use the latest `spring-cloud-dataflow-apps-generator-plugin` which allows now
to propagate a custom configuration for `spring-boot-maven-plugin`
* Add `requiresUnpack` for `jython-standalone` into the `script-processor`

**Cherry-pick to 2021.1.x**
This commit is contained in:
Artem Bilan
2022-01-27 17:33:34 -05:00
committed by Soby Chacko
parent 5d1fd5db58
commit 274bb6751b
2 changed files with 13 additions and 1 deletions

View File

@@ -121,6 +121,18 @@
</dependency>
</dependencies>
</maven>
<bootPluginConfiguration>
<![CDATA[
<requiresUnpack>
<dependency>
<groupId>org.python</groupId>
<artifactId>jython-standalone</artifactId>
</dependency>
</requiresUnpack>
]]>
</bootPluginConfiguration>
</application>
</configuration>
</plugin>