提交 80fcd3fd 编写于 作者: E Eduardo Ramos

Merge branch 'master' of github.com:gephi/gephi

......@@ -557,7 +557,7 @@
<!-- Profile used along with deployment to create the dmg archive -->
<profile>
<id>deploy-dmg</id>
<id>create-dmg</id>
<build>
<plugins>
......@@ -632,7 +632,15 @@
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<!-- Profile used along with deployment to attach the dmg archive -->
<profile>
<id>deploy-dmg</id>
<build>
<plugins>
<!-- Attach the final DMG for deployment -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
......@@ -654,6 +662,30 @@
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<!-- Profile activated for windows/macos release only. Should be called alone so it only creates the windows installer/compressed dmg -->
<profile>
<id>release-extra</id>
<build>
<plugins>
<!-- Avoid updatesite.xml.gz attach -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>nbm-maven-plugin</artifactId>
<executions>
<execution>
<id>default-standalone-zip</id>
<phase>none</phase>
</execution>
<execution>
<id>autoupdate</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
......
......@@ -1032,6 +1032,30 @@
</execution>
</executions>
</plugin>
<!-- Skip Javadoc creation -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
<!-- Skip sources attach -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册