在 mvn 安装期间从 cosium 跳过 git-code-format-maven-plugin
Skip git-code-format-maven-plugin from cosium during mvn install
我有一个项目正在使用 com.cosium.code 中的 git-code-format-maven-plugin 将代码格式化为预提交挂钩。我正在设置一个构建管道来安装这个项目,但运行器机器没有安装 git。
所以插件抛出异常
Failed to execute goal com.cosium.code:git-code-format-maven-plugin:3.1:install-hooks (default) on project chat-srv: One of setGitDir or setWorkTree must be called. -> [Help 1]
我正在执行的命令是mvn -f /app/pom.xml clean install
是否可以在 mvn 安装期间跳过代码格式化并仅为 git 提交启用它?或者是否可以在管道构建期间跳过使用插件?
pom.xml
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
</plugin>
<plugin>
<groupId>com.cosium.code</groupId>
<artifactId>git-code-format-maven-plugin</artifactId>
<version>3.1</version>
<executions>
<execution>
<goals>
<goal>install-hooks</goal>
</goals>
</execution>
</executions>
<configuration>
<googleJavaFormatOptions>
<aosp>true</aosp>
</googleJavaFormatOptions>
</configuration>
</plugin>
</plugins>
</build>
您可以使用属性 {} 跳过插件。使用 属性 并在构建时将其设置为 true。
<properties>
<skipFormatCode>false</skipFormatCode>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
</plugin>
<plugin>
<groupId>com.cosium.code</groupId>
<artifactId>git-code-format-maven-plugin</artifactId>
<version>3.1</version>
<executions>
<execution>
<goals>
<goal>install-hooks</goal>
</goals>
</execution>
</executions>
<configuration>
<skip>${skipFormatCode}</skip>
<googleJavaFormatOptions>
<aosp>true</aosp>
</googleJavaFormatOptions>
</configuration>
</plugin>
</plugins>
</build>
当您想使用
跳过插件运行
mvn clean install -DskipFormatCode=true
我有一个项目正在使用 com.cosium.code 中的 git-code-format-maven-plugin 将代码格式化为预提交挂钩。我正在设置一个构建管道来安装这个项目,但运行器机器没有安装 git。
所以插件抛出异常
Failed to execute goal com.cosium.code:git-code-format-maven-plugin:3.1:install-hooks (default) on project chat-srv: One of setGitDir or setWorkTree must be called. -> [Help 1]
我正在执行的命令是mvn -f /app/pom.xml clean install
是否可以在 mvn 安装期间跳过代码格式化并仅为 git 提交启用它?或者是否可以在管道构建期间跳过使用插件?
pom.xml
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
</plugin>
<plugin>
<groupId>com.cosium.code</groupId>
<artifactId>git-code-format-maven-plugin</artifactId>
<version>3.1</version>
<executions>
<execution>
<goals>
<goal>install-hooks</goal>
</goals>
</execution>
</executions>
<configuration>
<googleJavaFormatOptions>
<aosp>true</aosp>
</googleJavaFormatOptions>
</configuration>
</plugin>
</plugins>
</build>
您可以使用属性 {} 跳过插件。使用 属性 并在构建时将其设置为 true。
<properties>
<skipFormatCode>false</skipFormatCode>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
</plugin>
<plugin>
<groupId>com.cosium.code</groupId>
<artifactId>git-code-format-maven-plugin</artifactId>
<version>3.1</version>
<executions>
<execution>
<goals>
<goal>install-hooks</goal>
</goals>
</execution>
</executions>
<configuration>
<skip>${skipFormatCode}</skip>
<googleJavaFormatOptions>
<aosp>true</aosp>
</googleJavaFormatOptions>
</configuration>
</plugin>
</plugins>
</build>
当您想使用
跳过插件运行mvn clean install -DskipFormatCode=true