Skip to content

Commit a83ba40

Browse files
authored
[WIP] Support for User Defined Directives (UDD) (#121)
Implementation of user defined directives (UDD) or custom directives.
1 parent 298108b commit a83ba40

File tree

606 files changed

+21992
-14046
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

606 files changed

+21992
-14046
lines changed

.gitignore

+10
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,16 @@ logs/
3333
/data/
3434
/data-fabric-tests/data/
3535

36+
# ANTLR4
37+
/core/gen
38+
*.tokens
39+
DirectivesLexer.java
40+
DirectivesParser.java
41+
DirectivesBaseListener.java
42+
DirectivesBaseVisitor.java
43+
DirectivesListener.java
44+
DirectivesVisitor.java
45+
3646
# generated by docs build
3747
*.py
3848

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
"Derivative Works" shall mean any work, whether in Source or Object
4141
form, that is based on (or derived from) the Work and for which the
42-
editorial revisions, annotations, elaborations, or other modifications
42+
editorial revisions, co.cask.wrangler.api.annotations, elaborations, or other modifications
4343
represent, as a whole, an original work of authorship. For the purposes
4444
of this License, Derivative Works shall not include works that remain
4545
separable from, or merely link (or bind by name) to the interfaces of,

README.md

+99-89
Large diffs are not rendered by default.

core/src/main/java/co/cask/wrangler/api/PipelineException.java

-31
This file was deleted.

core/src/main/java/co/cask/wrangler/api/Usage.java

-40
This file was deleted.

core/src/main/java/co/cask/wrangler/executor/ParallelPipelineExecutor.java

-174
This file was deleted.

0 commit comments

Comments
 (0)