cli-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.yx91490</groupId>
<artifactId>cli-maven-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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>io.github.yx91490</groupId>
<artifactId>cli-maven-plugin</artifactId>
<version>1.0.0</version>
<packaging>maven-plugin</packaging>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<scm>
<url>git@github.com:yx91490/cli-maven-plugin.git</url>
<connection>scm:git:git@github.com:yx91490/cli-maven-plugin.git</connection>
</scm>
<developers>
<developer>
<name>yx91490</name>
<email>yx91490@126.com</email>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<s>${project.artifactId}</s>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>3.5.2</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.5</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-project</artifactId>
<version>2.0.6</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.2</version>
<configuration>
<skip>true</skip>
<testFailureIgnore>true</testFailureIgnore>
</configuration>
</plugin>
<!--<plugin>-->
<!--<groupId>io.github.yx91490</groupId>-->
<!--<artifactId>cli-maven-plugin</artifactId>-->
<!--<version>1.0.0</version>-->
<!--<executions>-->
<!--<execution>-->
<!--<id>for_debug</id>-->
<!--<phase>install</phase>-->
<!--<goals>-->
<!--<goal>exec</goal>-->
<!--</goals>-->
<!--<configuration>-->
<!--<commands>-->
<!--<command>${basedir}/foo.sh a b c</command>-->
<!--<command>${basedir}/foo.sh def</command>-->
<!--</commands>-->
<!--</configuration>-->
<!--</execution>-->
<!--</executions>-->
<!--<configuration>-->
<!--<commands>-->
<!--<command>${basedir}/foo.sh a b c</command>-->
<!--<command>${basedir}/foo.sh def</command>-->
<!--</commands>-->
<!--</configuration>-->
<!--</plugin>-->
</plugins>
</build>
</project>