ballerina-integrator-vscode-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.wso2.ballerina-integrator</groupId> <artifactId>ballerina-integrator-vscode-plugin</artifactId> <version>1.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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"> <parent> <groupId>org.wso2.ballerina-integrator</groupId> <artifactId>ballerina-integrator</artifactId> <version>1.0.0</version> <relativePath>../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>ballerina-integrator-vscode-plugin</artifactId> <packaging>pom</packaging> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <executions> <execution> <id>npm install</id> <goals> <goal>exec</goal> </goals> <phase>initialize</phase> <configuration> <executable>npm</executable> <skip>false</skip> <arguments> <argument>install</argument> <argument>--unsafe-perm</argument> </arguments> </configuration> </execution> <execution> <id>npm-install-generator-code</id> <goals> <goal>exec</goal> </goals> <phase>initialize</phase> <configuration> <executable>npm</executable> <skip>false</skip> <arguments> <argument>install</argument> <argument>yo</argument> <argument>generator-code</argument> </arguments> </configuration> </execution> <execution> <id>npm-install-vsce</id> <goals> <goal>exec</goal> </goals> <phase>initialize</phase> <configuration> <executable>npm</executable> <skip>false</skip> <arguments> <argument>install</argument> <argument>vsce</argument> </arguments> </configuration> </execution> <execution> <id>npm-vsix-package</id> <goals> <goal>exec</goal> </goals> <phase>package</phase> <configuration> <executable>npm</executable> <skip>false</skip> <arguments> <argument>run</argument> <argument>package</argument> </arguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>