mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-16 21:45:22 +02:00
45 lines
1.4 KiB
XML
45 lines
1.4 KiB
XML
![]() |
<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>org.eclipse.lsp4e.cpp.group</groupId>
|
||
|
<artifactId>org.eclipse.lsp4e.cpp.parent</artifactId>
|
||
|
<version>1.0.0-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
|
||
|
<artifactId>org.eclipse.lsp4e.cpp.target</artifactId>
|
||
|
<version>1.0.0-SNAPSHOT</version>
|
||
|
<packaging>pom</packaging>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.codehaus.mojo</groupId>
|
||
|
<artifactId>build-helper-maven-plugin</artifactId>
|
||
|
<version>1.9</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>attach-artifacts</id>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>attach-artifact</goal>
|
||
|
</goals>
|
||
|
<configuration>
|
||
|
<artifacts>
|
||
|
<artifact>
|
||
|
<file>lsp4e.cpp-staging.target</file>
|
||
|
<type>target</type>
|
||
|
<classifier>lsp4e.cpp-staging</classifier>
|
||
|
</artifact>
|
||
|
<!-- More targets could be added here -->
|
||
|
</artifacts>
|
||
|
</configuration>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|