Skip to content

Commit d9d1730

Browse files
committed
Fix signing error
1 parent c0163f3 commit d9d1730

File tree

1 file changed

+2
-79
lines changed

1 file changed

+2
-79
lines changed

pom.xml

Lines changed: 2 additions & 79 deletions
Original file line numberDiff line numberDiff line change
@@ -344,83 +344,6 @@ limitations under the License.
344344
</executions>
345345
</plugin>
346346

347-
<!-- <plugin>
348-
<groupId>org.codehaus.mojo</groupId>
349-
<artifactId>findbugs-maven-plugin</artifactId>
350-
<version>3.0.5</version>
351-
<configuration>
352-
<effort>Max</effort>
353-
<threshold>Low</threshold>
354-
<xmlOutput>false</xmlOutput>
355-
<excludeFilterFile>${project.basedir}/.codestyle/findbugs.xml</excludeFilterFile>
356-
</configuration>
357-
<executions>
358-
<execution>
359-
<id>analyze-compile</id>
360-
<phase>compile</phase>
361-
<goals>
362-
<goal>check</goal>
363-
</goals>
364-
</execution>
365-
</executions>
366-
</plugin> -->
367-
<!-- <plugin>
368-
<groupId>org.apache.maven.plugins</groupId>
369-
<artifactId>maven-pmd-plugin</artifactId>
370-
<version>3.9.0</version>
371-
<configuration>
372-
<sourceEncoding>${project.build.sourceEncoding}</sourceEncoding>
373-
<targetJdk>${maven.compiler.source}</targetJdk>
374-
<verbose>true</verbose>
375-
<failOnViolation>true</failOnViolation>
376-
<printFailingErrors>true</printFailingErrors>
377-
<analysisCache>true</analysisCache>
378-
<linkXRef>false</linkXRef>
379-
<rulesets>
380-
<ruleset>${project.basedir}/.codestyle/pmd.xml</ruleset>
381-
</rulesets>
382-
</configuration>
383-
<executions>
384-
<execution>
385-
<phase>package</phase>
386-
<goals>
387-
<goal>check</goal>
388-
</goals>
389-
</execution>
390-
</executions>
391-
</plugin> -->
392-
393-
<!-- <plugin>
394-
<groupId>org.apache.maven.plugins</groupId>
395-
<artifactId>maven-checkstyle-plugin</artifactId>
396-
<version>2.17</version>
397-
<dependencies>
398-
<dependency>
399-
<groupId>com.puppycrawl.tools</groupId>
400-
<artifactId>checkstyle</artifactId>
401-
<version>8.8</version>
402-
</dependency>
403-
</dependencies>
404-
<executions>
405-
<execution>
406-
<id>validate</id>
407-
<phase>validate</phase>
408-
<goals>
409-
<goal>check</goal>
410-
</goals>
411-
<configuration>
412-
<configLocation>${project.basedir}/.codestyle/checkstyle.xml</configLocation>
413-
<consoleOutput>true</consoleOutput>
414-
<failsOnError>true</failsOnError>
415-
<failOnViolation>true</failOnViolation>
416-
<linkXRef>false</linkXRef>
417-
<propertyExpansion>codestyleFolder=${project.basedir}/.codestyle</propertyExpansion>
418-
<includeTestSourceDirectory>false</includeTestSourceDirectory>
419-
</configuration>
420-
</execution>
421-
</executions>
422-
</plugin>-->
423-
424347
<plugin>
425348
<groupId>org.apache.maven.plugins</groupId>
426349
<artifactId>maven-deploy-plugin</artifactId>
@@ -441,7 +364,7 @@ limitations under the License.
441364
</configuration>
442365
</plugin>
443366

444-
<!-- <plugin>
367+
<plugin>
445368
<groupId>org.apache.maven.plugins</groupId>
446369
<artifactId>maven-gpg-plugin</artifactId>
447370
<version>1.6</version>
@@ -454,7 +377,7 @@ limitations under the License.
454377
</goals>
455378
</execution>
456379
</executions>
457-
</plugin>-->
380+
</plugin>
458381
</plugins>
459382
</build>
460383
</project>

0 commit comments

Comments
 (0)