Commit 21b9e806 by 罗长华

修复im-sdk pom文件报错

parent f56c0b33
...@@ -43,21 +43,25 @@ ...@@ -43,21 +43,25 @@
</dependencies> </dependencies>
<plugin> <build>
<groupId>org.apache.maven.plugins</groupId> <plugins>
<artifactId>maven-source-plugin</artifactId> <plugin>
<version>3.0.0</version> <groupId>org.apache.maven.plugins</groupId>
<!-- 绑定source插件到Maven的生命周期,并在生命周期后执行绑定的source的goal --> <artifactId>maven-source-plugin</artifactId>
<executions> <version>3.0.0</version>
<execution> <!-- 绑定source插件到Maven的生命周期,并在生命周期后执行绑定的source的goal -->
<!-- 绑定source插件到Maven的生命周期 --> <executions>
<phase>compile</phase> <execution>
<!--在生命周期后执行绑定的source插件的goals --> <!-- 绑定source插件到Maven的生命周期 -->
<goals> <phase>compile</phase>
<goal>jar-no-fork</goal> <!--在生命周期后执行绑定的source插件的goals -->
</goals> <goals>
</execution> <goal>jar-no-fork</goal>
</executions> </goals>
</plugin> </execution>
</executions>
</plugin>
</plugins>
</build>
</project> </project>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment