Commit 12425d61 authored by fangzhipeng's avatar fangzhipeng

.

parent f4493c40
......@@ -6,7 +6,7 @@
<groupId>me.mizhoux</groupId>
<artifactId>mbg-comment</artifactId>
<version>0.0.1</version>
<version>1.0.1.fzp-SNAPSHOT</version>
<name>mbg-comment</name>
......@@ -40,4 +40,35 @@
</dependency>
</dependencies>
<distributionManagement>
<repository>
<id>maven-releases</id>
<url>http://nexus.yuceyi.com/repository/maven-releases/</url>
</repository>
<snapshotRepository>
<id>maven-snapshots</id>
<url>http://nexus.yuceyi.com/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>
<build>
<plugins>
<!-- 要将源码放上去,需要加入这个插件 -->
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>2.1</version>
<configuration>
<attach>true</attach>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</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