Skip to content

Commit

Permalink
fix package phase attach sources
Browse files Browse the repository at this point in the history
  • Loading branch information
fanlu committed Mar 31, 2015
1 parent 46aad35 commit 7b1e690
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
5 changes: 4 additions & 1 deletion dubbo/pom.xml
Expand Up @@ -326,7 +326,10 @@
<executions>
<execution>
<id>attach-sources</id>
<phase>none</phase>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
Expand Down
12 changes: 12 additions & 0 deletions pom.xml
Expand Up @@ -477,6 +477,18 @@
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
Expand Down

0 comments on commit 7b1e690

Please sign in to comment.