command-execute
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.minbox.framework</groupId>
<artifactId>command-execute</artifactId>
<version>0.2.0.RELEASE</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.minbox.framework</groupId>
<artifactId>oss-parent</artifactId>
<version>0.1.0.RELEASE</version>
<relativePath>../oss-parent</relativePath>
</parent>
<groupId>org.minbox.framework</groupId>
<artifactId>command-execute</artifactId>
<version>0.2.0.RELEASE</version>
<packaging>pom</packaging>
<name>command-execute</name>
<description>在项目编译时,该Maven插件可执行配置的有效Shell命令行。</description>
<url>https://github.com/minbox-projects/command-execute-maven-plugin</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<developers>
<developer>
<id>hengboy</id>
<name>恒宇少年</name>
<email>jnyuqy@gmail.com</email>
<organization>minbox-projects</organization>
<organizationUrl>https://github.com/minbox-projects</organizationUrl>
<roles>
<role>author</role>
</roles>
</developer>
</developers>
<modules>
<module>command-execute-core</module>
<module>command-execute-maven-plugin</module>
<module>command-execute-sample</module>
</modules>
<properties>
<revision>0.2.0.RELEASE</revision>
<maven-plugin-api.version>3.6.3</maven-plugin-api.version>
<lombok.version>1.18.10</lombok.version>
<maven-plugin-annotations.version>3.6.0</maven-plugin-annotations.version>
</properties>
<repositories>
<repository>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>maven-snapshots</id>
<name>Maven Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
<repository>
<releases>
<enabled>true</enabled>
</releases>
<id>aliyun</id>
<name>AliYun Maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.1.0</version>
<executions>
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
<execution>
<id>flatten.clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
<configuration>
<updatePomFile>true</updatePomFile>
<flattenMode>resolveCiFriendliesOnly</flattenMode>
</configuration>
</plugin>
</plugins>
</build>
</project>