File tree Expand file tree Collapse file tree 4 files changed +52
-1
lines changed Expand file tree Collapse file tree 4 files changed +52
-1
lines changed Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
3
+ * or more contributor license agreements. Licensed under the Elastic License
4
+ * 2.0 and the Server Side Public License, v 1; you may not use this file except
5
+ * in compliance with, at your election, the Elastic License 2.0 or the Server
6
+ * Side Public License, v 1.
7
+ */
8
+
9
+ module org .elasticsearch .dissect {
10
+ exports org .elasticsearch .dissect ;
11
+ }
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
3
+ * or more contributor license agreements. Licensed under the Elastic License
4
+ * 2.0 and the Server Side Public License, v 1; you may not use this file except
5
+ * in compliance with, at your election, the Elastic License 2.0 or the Server
6
+ * Side Public License, v 1.
7
+ */
8
+
9
+ module org .elasticsearch .grok {
10
+ requires org .jruby .jcodings ;
11
+ requires org .jruby .joni ;
12
+
13
+ exports org .elasticsearch .grok ;
14
+ }
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ esplugin {
16
16
}
17
17
18
18
dependencies {
19
- compileOnly project(' :modules:lang-painless' )
19
+ compileOnly project(' :modules:lang-painless:spi ' )
20
20
api project(' :libs:elasticsearch-grok' )
21
21
api project(' :libs:elasticsearch-dissect' )
22
22
implementation " org.apache.httpcomponents:httpclient:${ versions.httpclient} "
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
3
+ * or more contributor license agreements. Licensed under the Elastic License
4
+ * 2.0 and the Server Side Public License, v 1; you may not use this file except
5
+ * in compliance with, at your election, the Elastic License 2.0 or the Server
6
+ * Side Public License, v 1.
7
+ */
8
+
9
+ module org .elasticsearch .ingest .common {
10
+ requires org .elasticsearch .base ;
11
+ requires org .elasticsearch .dissect ;
12
+ requires org .elasticsearch .grok ;
13
+ requires org .elasticsearch .painless .spi ;
14
+ requires org .elasticsearch .server ;
15
+ requires org .elasticsearch .xcontent ;
16
+
17
+ requires org .apache .httpcomponents .httpclient ;
18
+ requires org .apache .logging .log4j ;
19
+ requires org .apache .lucene .analysis .common ;
20
+
21
+ exports org .elasticsearch .ingest .common ; // for painless
22
+
23
+ opens org .elasticsearch .ingest .common to org .elasticsearch .painless .spi ; // whitelist resource access
24
+
25
+ provides org .elasticsearch .painless .spi .PainlessExtension with org .elasticsearch .ingest .common .ProcessorsWhitelistExtension ;
26
+ }
You can’t perform that action at this time.
0 commit comments