您的位置:首页 > 大数据 > 人工智能

maven打包的时候报错:Failed to execute goalcom.google.code.maven-svn-revision-number-plugin:svn-revision-num

2017-07-05 14:23 826 查看
maven打包的时候报错
Failed to execute goalcom.google.code.maven-svn-revision-number-plugin:svn-revision-number-maven-plugin:1.13:revision(default) on project omsp: svn: E155021:

This client is too old to work with theworking copy at
原因:SVN版本号不对应,在pom中改成自己电脑的应版本号
<plugin>
<groupId>com.google.code.maven-svn-revision-number-plugin</groupId>
   <artifactId>svn-revision-number-maven-plugin</artifactId>
   <version>1.13</version>
   <configuration>
      <verbose>true</verbose>
      <entries>
         <entry>
            <prefix>SVN</prefix>
         </entry>
      </entries>
   </configuration>
   <executions>
      <execution>
         <phase>validate</phase>
         <goals>
            <goal>revision</goal>
         </goals>
      </execution>
   </executions>
   <dependencies>
      <dependency>
         <groupId>org.tmatesoft.svnkit</groupId>
         <artifactId>svnkit</artifactId>
         <version>1.8.11</version>
      </dependency>
   </dependencies>
</plugin>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐