Skip to content

Commit 1888aec

Browse files
authored
Merge pull request #1013 from data-integrations/cherry-pick-411-1011
[🍒 ] [CDAP-21204] Fix wrangler expression classpath issue for remote task execution for UDD
2 parents 414bbf9 + eb645ca commit 1888aec

File tree

8 files changed

+12
-10
lines changed

8 files changed

+12
-10
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
<groupId>io.cdap.wrangler</groupId>
2121
<artifactId>wrangler</artifactId>
22-
<version>4.11.0</version>
22+
<version>4.11.1-SNAPSHOT</version>
2323
<name>Wrangler</name>
2424
<packaging>pom</packaging>
2525
<description>An interactive tool for data cleansing and transformation.</description>

wrangler-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<parent>
1919
<artifactId>wrangler</artifactId>
2020
<groupId>io.cdap.wrangler</groupId>
21-
<version>4.11.0</version>
21+
<version>4.11.1-SNAPSHOT</version>
2222
</parent>
2323
<modelVersion>4.0.0</modelVersion>
2424

wrangler-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<parent>
1919
<artifactId>wrangler</artifactId>
2020
<groupId>io.cdap.wrangler</groupId>
21-
<version>4.11.0</version>
21+
<version>4.11.1-SNAPSHOT</version>
2222
</parent>
2323
<modelVersion>4.0.0</modelVersion>
2424

wrangler-proto/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<parent>
1919
<artifactId>wrangler</artifactId>
2020
<groupId>io.cdap.wrangler</groupId>
21-
<version>4.11.0</version>
21+
<version>4.11.1-SNAPSHOT</version>
2222
</parent>
2323
<modelVersion>4.0.0</modelVersion>
2424

wrangler-service/pom.xml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<parent>
1919
<artifactId>wrangler</artifactId>
2020
<groupId>io.cdap.wrangler</groupId>
21-
<version>4.11.0</version>
21+
<version>4.11.1-SNAPSHOT</version>
2222
</parent>
2323
<modelVersion>4.0.0</modelVersion>
2424

@@ -272,8 +272,10 @@
272272
<Embed-Dependency>*;inline=false;scope=compile</Embed-Dependency>
273273
<Embed-Transitive>true</Embed-Transitive>
274274
<Embed-Directory>lib</Embed-Directory>
275-
<!-- So that user plugins can depend on Directive.java and other classes, for user-defined directives -->
276-
<_exportcontents>io.cdap.wrangler.api.*</_exportcontents>
275+
<!-- So that user plugins can depend on Directive.java, EL.java and other classes, for user-defined directives -->
276+
<_exportcontents>
277+
io.cdap.wrangler.api.*,io.cdap.wrangler.expression.*
278+
</_exportcontents>
277279
</instructions>
278280
</configuration>
279281
<executions>

wrangler-storage/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<parent>
1919
<artifactId>wrangler</artifactId>
2020
<groupId>io.cdap.wrangler</groupId>
21-
<version>4.11.0</version>
21+
<version>4.11.1-SNAPSHOT</version>
2222
</parent>
2323
<modelVersion>4.0.0</modelVersion>
2424

wrangler-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<artifactId>wrangler</artifactId>
2121
<groupId>io.cdap.wrangler</groupId>
22-
<version>4.11.0</version>
22+
<version>4.11.1-SNAPSHOT</version>
2323
</parent>
2424
<modelVersion>4.0.0</modelVersion>
2525

wrangler-transform/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>wrangler</artifactId>
55
<groupId>io.cdap.wrangler</groupId>
6-
<version>4.11.0</version>
6+
<version>4.11.1-SNAPSHOT</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99

0 commit comments

Comments
 (0)