elasticsearch5.2.2 插件开发(一)

时间:2025-03-31 09:01:03

set JAVA=D:\jdk1.8.0_102\bin\  (我放的JAVA位置,省得处理空格了)


运行ES。就可以看到我们的打出的信息了。


补上

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http:///2001/XMLSchema-instance"
         xmlns="/POM/4.0.0"
         xsi:schemaLocation="/POM/4.0.0 /xsd/maven-4.0.">
    <modelVersion>4.0.0</modelVersion>

    <groupId>mygroup1</groupId>
    <artifactId>myart1</artifactId>
    <version>5.2.2-SNAPSHOT</version>
    <name>Plugin: Basic</name>
    <description>Only for test</description>


    <properties>
        <>5.2.2</>
        <>6.4.1</>
    </properties>
    <dependencies>
        <dependency>
            <groupId></groupId>
            <artifactId>elasticsearch</artifactId>
            <version>${}</version>
            <scope>provided</scope>
        </dependency>

        <!-- Testing -->
        <dependency>
            <groupId>.log4j</groupId>
            <artifactId>log4j-api</artifactId>
            <version>2.7</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>.log4j</groupId>
            <artifactId>log4j-core</artifactId>
            <version>2.7</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId></groupId>
            <artifactId>framework</artifactId>
            <version>${}</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId></groupId>
            <artifactId>lucene-test-framework</artifactId>
            <version>${}</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <filtering>false</filtering>
                <excludes>
                    <exclude>*.properties</exclude>
                </excludes>
            </resource>
        </resources>
        <plugins>
            <plugin>
                <groupId></groupId>
                <artifactId>maven-assembly-plugin</artifactId>
                <version>2.6</version>
                <configuration>
                    <appendAssemblyId>false</appendAssemblyId>
                    <outputDirectory>${}/releases/</outputDirectory>
                    <descriptors>
                        <descriptor>${basedir}/src/main/assemblies/</descriptor>
                    </descriptors>
                </configuration>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId></groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.3</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>