vscode-car-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.wso2.maven</groupId> <artifactId>vscode-car-plugin</artifactId> <version>5.2.99</version> </dependency>
<?xml version="1.0"?> <!-- ~ Copyright (c) 2019, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. ~ ~ WSO2 Inc. licenses this file to you under the Apache License, ~ Version 2.0 (the "License"); you may not use this file except ~ in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, ~ software distributed under the License is distributed on an ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ~ KIND, either express or implied. See the License for the ~ specific language governing permissions and limitations ~ under the License. --> <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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.wso2.maven</groupId> <artifactId>maven-common-tools</artifactId> <version>5.2.99</version> <relativePath>../pom.xml</relativePath> </parent> <groupId>org.wso2.maven</groupId> <artifactId>vscode-car-plugin</artifactId> <packaging>maven-plugin</packaging> <version>5.2.99</version> <name>VSCode CAR Plugin</name> <url>http://wso2.org</url> <description>Maven plugin which creates CAR artifact</description> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>7</source> <target>7</target> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>${org.apache.maven.plugin.api.version}</version> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <version>${org.apache.maven.project.version}</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <groupId>org.apache.ws.commons.axiom</groupId> <artifactId>axiom-impl</artifactId> <version>${org.apache.ws.commons.axiom.version}</version> </dependency> <dependency> <groupId>org.wso2.maven</groupId> <artifactId>org.wso2.maven.utils</artifactId> </dependency> <dependency> <groupId>org.wso2.maven</groupId> <artifactId>org.wso2.maven.core</artifactId> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> </dependency> <dependency> <groupId>org.apache.maven.shared</groupId> <artifactId>maven-invoker</artifactId> <version>${org.apache.maven.shared.version}</version> </dependency> <dependency> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> <version>${snakeyaml.version}</version> </dependency> </dependencies> <properties> <org.apache.ws.commons.axiom.version>1.2.20</org.apache.ws.commons.axiom.version> <org.apache.maven.shared.version>3.1.0</org.apache.maven.shared.version> <snakeyaml.version>1.33</snakeyaml.version> </properties> </project>