Skip to content

Instantly share code, notes, and snippets.

@lonniev
Last active August 29, 2015 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lonniev/8fe0903fa35c56add1ae to your computer and use it in GitHub Desktop.
Save lonniev/8fe0903fa35c56add1ae to your computer and use it in GitHub Desktop.
maven-upload-plugin for Eclipse Typo p2 Update Site (zipped)
<plugin>
<groupId>com.atlassian.maven.plugins</groupId>
<artifactId>maven-upload-plugin</artifactId>
<executions>
<execution>
<id>upload-p2-update-site</id>
<phase>deploy</phase>
<goals>
<goal>upload</goal>
</goals>
<configuration>
<resourceSrc>${project.build.directory}/${project.build.finalName}.zip</resourceSrc>
<resourceDest>${project.version}</resourceDest>
<serverId>server-bintray-sodius-tasktop-integrity</serverId>
<url>https://api.bintray.com/content/sodius/Tasktop/Integrity</url>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment