Skip to content

Commit 2b87eb9

Browse files
committed
Changes related to renaming of AbstractPlugin and parent pom
1 parent b95943e commit 2b87eb9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pom.xml

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

77
<parent>
88
<groupId>org.elasticsearch.plugin</groupId>
9-
<artifactId>elasticsearch-plugin</artifactId>
9+
<artifactId>plugins</artifactId>
1010
<version>2.0.0-beta1-SNAPSHOT</version>
1111
</parent>
1212

src/main/java/org/elasticsearch/examples/nativescript/plugin/NativeScriptExamplesPlugin.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@
2626
import org.elasticsearch.examples.nativescript.script.stockaggs.InitScriptFactory;
2727
import org.elasticsearch.examples.nativescript.script.stockaggs.MapScriptFactory;
2828
import org.elasticsearch.examples.nativescript.script.stockaggs.ReduceScriptFactory;
29-
import org.elasticsearch.plugins.AbstractPlugin;
29+
import org.elasticsearch.plugins.Plugin;
3030
import org.elasticsearch.script.ScriptModule;
3131

3232
/**
3333
* This class is instantiated when Elasticsearch loads the plugin for the
3434
* first time. If you change the name of this plugin, make sure to update
3535
* src/main/resources/es-plugin.properties file that points to this class.
3636
*/
37-
public class NativeScriptExamplesPlugin extends AbstractPlugin {
37+
public class NativeScriptExamplesPlugin extends Plugin {
3838

3939
/**
4040
* The name of the plugin.

0 commit comments

Comments
 (0)