60 lines
2.4 KiB
XML
60 lines
2.4 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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.ide.vscode</groupId>
|
|
<artifactId>commons-parent</artifactId>
|
|
<version>1.62.0-SNAPSHOT</version>
|
|
<relativePath>../commons/pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>sts-gradle-model-plugin-wrapper</artifactId>
|
|
<packaging>pom</packaging>
|
|
<name>sts-gradle-model-plugin-wrapper</name>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>test</id>
|
|
<phase>test</phase>
|
|
<configuration>
|
|
<workingDirectory>${project.basedir}/sts-gradle-model-plugin/</workingDirectory>
|
|
<executable>./gradlew</executable>
|
|
<arguments>
|
|
<argument>test</argument>
|
|
<argument>-i</argument>
|
|
</arguments>
|
|
</configuration>
|
|
<goals>
|
|
<goal>exec</goal>
|
|
</goals>
|
|
</execution>
|
|
<execution>
|
|
<id>install</id>
|
|
<phase>install</phase>
|
|
<configuration>
|
|
<workingDirectory>${project.basedir}/sts-gradle-model-plugin/</workingDirectory>
|
|
<executable>./gradlew</executable>
|
|
<arguments>
|
|
<argument>clean</argument>
|
|
<argument>build</argument>
|
|
<argument>publishToMavenLocal</argument>
|
|
</arguments>
|
|
</configuration>
|
|
<goals>
|
|
<goal>exec</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|