40 lines
1.0 KiB
XML
40 lines
1.0 KiB
XML
<project xmlns="https://maven.apache.org/POM/4.0.0" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>org.springframework.tooling.ls.repository</artifactId>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.boot.ide</groupId>
|
|
<artifactId>org.springframework.boot.ide.servers</artifactId>
|
|
<version>4.31.0-SNAPSHOT</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<packaging>eclipse-repository</packaging>
|
|
|
|
<properties>
|
|
<dist.project>sts4-language-servers</dist.project>
|
|
</properties>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>gpg.sign</id>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.eclipse.tycho</groupId>
|
|
<artifactId>tycho-gpg-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>sign-p2-artifacts</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
|
|
</project>
|