Spaces:
Build error
Build error
<project | |
xmlns="http://maven.apache.org/POM/4.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 | |
http://maven.apache.org/xsd/maven-4.0.0.xsd" | |
> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>jp.hicustomer</groupId> | |
<artifactId>govsearch</artifactId> | |
<version>0.0.1</version> | |
<packaging>container-plugin</packaging> | |
<properties> | |
<bundle-plugin.failOnWarnings>false</bundle-plugin.failOnWarnings> | |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
<test.hide>true</test.hide> | |
<vespa_version>8.324.16</vespa_version> | |
</properties> | |
<dependencies> | |
<dependency> | |
<groupId>com.yahoo.vespa</groupId> | |
<artifactId>lucene-linguistics</artifactId> | |
<version>${vespa_version}</version> | |
</dependency> | |
<dependency> | |
<groupId>com.yahoo.vespa</groupId> | |
<artifactId>linguistics</artifactId> | |
<version>${vespa_version}</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>com.yahoo.vespa</groupId> | |
<artifactId>application</artifactId> | |
<version>${vespa_version}</version> | |
<scope>provided</scope> | |
</dependency> | |
</dependencies> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>com.yahoo.vespa</groupId> | |
<artifactId>bundle-plugin</artifactId> | |
<version>${vespa_version}</version> | |
<extensions>true</extensions> | |
<configuration> | |
<failOnWarnings>false</failOnWarnings> | |
</configuration> | |
</plugin> | |
<plugin> | |
<groupId>com.yahoo.vespa</groupId> | |
<artifactId>vespa-application-maven-plugin</artifactId> | |
<version>${vespa_version}</version> | |
<executions> | |
<execution> | |
<goals> | |
<goal>packageApplication</goal> | |
</goals> | |
</execution> | |
</executions> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<version>3.11.0</version> | |
<configuration> | |
<source>17</source> | |
<target>17</target> | |
</configuration> | |
</plugin> | |
</plugins> | |
</build> | |
</project> | |