lemminx-vespa
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.yahoo.vespa</groupId> <artifactId>lemminx-vespa</artifactId> <version>8.515.40</version> </dependency>
<?xml version="1.0"?> <!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.yahoo.vespa</groupId> <artifactId>parent</artifactId> <version>8.515.40</version> <relativePath>../../../parent/pom.xml</relativePath> </parent> <artifactId>lemminx-vespa</artifactId> <packaging>jar</packaging> <version>8.515.40</version> <name>Vespa LemminX Extension</name> <dependencies> <dependency> <groupId>org.eclipse.lemminx</groupId> <artifactId>org.eclipse.lemminx</artifactId> <version>0.28.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.yahoo.vespa</groupId> <artifactId>config-model</artifactId> <version>8.515.40</version> </dependency> <dependency> <groupId>com.yahoo.vespa</groupId> <artifactId>config-application-package</artifactId> <version>8.515.40</version> </dependency> <dependency> <groupId>com.yahoo.vespa</groupId> <artifactId>config-model-api</artifactId> <version>8.515.40</version> </dependency> <dependency> <groupId>com.yahoo.vespa</groupId> <artifactId>config-provisioning</artifactId> <version>8.515.40</version> </dependency> </dependencies> <repositories> <repository> <id>lemminx-releases</id> <url>https://repo.eclipse.org/content/repositories/lemminx-releases/</url> <snapshots> <enabled>false</enabled> </snapshots> <releases> <enabled>true</enabled> </releases> </repository> </repositories> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <compilerArgs> <arg>-Xlint:all</arg> <arg>-Xlint:-deprecation</arg> <arg>-Xlint:-unchecked</arg> <arg>-Xlint:-rawtypes</arg> </compilerArgs> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <configuration><skip>true</skip></configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.7.0</version> <configuration> <excludePackageNames> </excludePackageNames> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <phase>prepare-package</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <!-- Copy from target/generated-resources to output-dir (resolves to target/classes) This is so the resources get detected by assemble-fat-jar --> <outputDirectory>${project.build.outputDirectory}</outputDirectory> <resources> <resource> <directory>${project.basedir}/../../../config-model/target/generated-sources/trang</directory> <filtering>false</filtering> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.yahoo.vespa</groupId> <artifactId>bundle-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals><goal>assemble-fat-jar</goal></goals> </execution> </executions> </plugin> <plugin> <groupId>com.github.os72</groupId> <artifactId>protoc-jar-maven-plugin</artifactId> </plugin> </plugins> </build> </project>