Quick Search
Browse
Pages
Blog
Templates
Labels
Attachments
Mail
Advanced
What’s New
Space Directory
Feed Builder
Keyboard Shortcuts
Confluence Gadgets
Log In
Dashboard
Developer documentation
Copy Page
You are not logged in. Any changes you make will be marked as
anonymous
.
This page is being edited by
.
Paragraph
Paragraph
Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
Preformatted
Quote
Bold
Italic
Underline
More colours
Strikethrough
Subscript
Superscript
Monospace
Clear Formatting
Bullet list
Numbered list
Task list
Outdent
Indent
Align left
Align center
Align right
Link
Table
Insert
Insert Content
Image
Link
Attachment
Symbol
Emoticon
Wiki Markup
Horizontal rule
Task List
tinymce.confluence.insert_menu.macro_desc
User Mention
Info
JIRA Issue
Status
Gallery
Table of Contents
Other Macros
Page Layout
No Layout
Two column (simple)
Two column (simple, left sidebar)
Two column (simple, right sidebar)
Three column (simple)
Two column
Two column (left sidebar)
Two column (right sidebar)
Three column
Three column (left and right sidebars)
Undo
Redo
Find/Replace
Keyboard Shortcuts Help
<p><table class="wysiwyg-macro" data-macro-name="excerpt" data-macro-parameters="atlassian-macro-output-type=BLOCK" style="background-image: url(/wiki/plugins/servlet/confluence/placeholder/macro-heading?definition=e2V4Y2VycHQ6YXRsYXNzaWFuLW1hY3JvLW91dHB1dC10eXBlPUJMT0NLfQ&locale=en_GB&version=2); background-repeat: no-repeat;" data-macro-body-type="RICH_TEXT"><tr><td class="wysiwyg-macro-body"> <p>myGrid provides mirrors of official Maven repositories, in addition to our own repositories.</p></td></tr></table></p> <img class="editor-inline-macro" src="/wiki/plugins/servlet/confluence/placeholder/macro?definition=e3RvY30&locale=en_GB&version=2" data-macro-name="toc"> <h2>Repo 1 and BioMoby mirrors</h2> <p><a href="http://www.mygrid.org.uk/maven/repo1/">http://www.mygrid.org.uk/maven/repo1/</a> is a mirror of the official <a href="http://repo1.maven.org/maven2/">Maven Central repository repo1</a>, synced every night. We've found it beneficial to use our own mirror as the <a href="http://maven.apache.org/guides/mini/guide-mirror-settings.html">official mirrors</a> can be unreliable or at times slow.</p> <p>We've also mirrored the <a href="http://biomoby.org/m2repo/">BioMoby repository</a> at <a class="external-link" href="http://www.mygrid.org.uk/maven/biomoby/biomoby.org/m2repo/" rel="nofollow">http://www.mygrid.org.uk/maven/biomoby/biomoby.org/m2repo/</a>, as the connections to their server in Canada can be flaky at times.</p> <p>To use these for your own Maven installation, edit <code>$HOME/.m2/settings.xml</code> and make sure it has this <code><mirror></code> section:</p> <table class="wysiwyg-macro" data-macro-name="code" data-macro-default-parameter="xml" style="background-image: url(/wiki/plugins/servlet/confluence/placeholder/macro-heading?definition=e2NvZGU6eG1sfQ&locale=en_GB&version=2); background-repeat: no-repeat;" data-macro-body-type="PLAIN_TEXT"><tr><td class="wysiwyg-macro-body"><pre> <settings> <mirrors> <mirror> <id>mygrid-repo1</id> <url>http://www.mygrid.org.uk/maven/repo1</url> <mirrorOf>central</mirrorOf> </mirror> <mirror> <id>mygrid-biomoby</id> <url>http://www.mygrid.org.uk/maven/biomoby/biomoby.org/m2repo</url> <mirrorOf>biomoby</mirrorOf> </mirror> <mirror> <id>mygrid-biomoby</id> <url>http://www.mygrid.org.uk/maven/biomoby/biomoby.org/m2repo</url> <mirrorOf>bio.maven.repository</mirrorOf> </mirror> </mirrors> </settings> </pre></td></tr></table> <h2>Restlet mirror</h2> <p><a href="http://www.mygrid.org.uk/maven/restlet/maven.restlet.org/">http://www.mygrid.org.uk/maven/restlet/maven.restlet.org/</a> is a mirror of the <a href="http://www.restlet.org/downloads/maven">Maven repository for Restlet</a>. You generally don't need to use this mirror unless you are developing against the Taverna Remote Exceution Service, which uses Restlet.</p> <p>As the upstream repository is only updated twice a month, this mirroring is only done weekly. To use it, try:</p> <table class="wysiwyg-macro" data-macro-name="code" data-macro-default-parameter="xml" style="background-image: url(/wiki/plugins/servlet/confluence/placeholder/macro-heading?definition=e2NvZGU6eG1sfQ&locale=en_GB&version=2); background-repeat: no-repeat;" data-macro-body-type="PLAIN_TEXT"><tr><td class="wysiwyg-macro-body"><pre> <settings> <mirrors> <mirror> <id>mygrid-restlet</id> <url>http://www.mygrid.org.uk/maven/restlet/maven.restlet.org</url> <mirrorOf>maven-restlet</mirrorOf> </mirror> </mirrors> </settings> </pre></td></tr></table> <p>.. assuming that the POMs using the original repository uses:</p> <table class="wysiwyg-macro" data-macro-name="code" data-macro-default-parameter="xml" style="background-image: url(/wiki/plugins/servlet/confluence/placeholder/macro-heading?definition=e2NvZGU6eG1sfQ&locale=en_GB&version=2); background-repeat: no-repeat;" data-macro-body-type="PLAIN_TEXT"><tr><td class="wysiwyg-macro-body"><pre> <repository> <id>maven-restlet</id> <name>Public online Restlet repository</name> <url>http://maven.restlet.org</url> </repository> </pre></td></tr></table> <h2>myGrid repository</h2> <p><a href="http://www.mygrid.org.uk/maven/repository/">http://www.mygrid.org.uk/maven/repository/</a> is the official myGrid repository for released Taverna artifacts (stable versions). Every modules of every release from Taverna 1.5 and up are deployed in this repository. There are also a few non-myGrid artifacts deployed here for supporting 3rd party libraries that were not properly deployed in the official mirrors, for instance <a href="http://www.mygrid.org.uk/maven/repository/axis/axis-saaj/1.4/axis-saaj-1.4.pom">axis-saaj-1.4.pom</a>.</p> <p>To use Taverna artifacts from your projects, you need to add the a <code>repository</code> section to your POM: <br class="atl-forced-newline" /></p> <table class="wysiwyg-macro" data-macro-name="code" data-macro-default-parameter="xml" style="background-image: url(/wiki/plugins/servlet/confluence/placeholder/macro-heading?definition=e2NvZGU6eG1sfQ&locale=en_GB&version=2); background-repeat: no-repeat;" data-macro-body-type="PLAIN_TEXT"><tr><td class="wysiwyg-macro-body"><pre> <repositories> <repository> <releases /> <snapshots> <enabled>false</enabled> </snapshots> <id>mygrid-repository</id> <name>myGrid Repository</name> <url>http://www.mygrid.org.uk/maven/repository</url> </repository> </repositories> </pre></td></tr></table> <p>There are also two mirrors of the myGrid maven repository, but unfortunately the updates are not currently working:</p> <ul> <li><a href="http://bioinf.ncl.ac.uk/mirror/maven/repository/">http://bioinf.ncl.ac.uk/mirror/maven/repository/</a> (currently not updated..)</li> <li><a href="http://mirror.omii.ac.uk/maven/repository/">http://mirror.omii.ac.uk/maven/repository/</a> (currently not updated..) <br class="atl-forced-newline" /></li> </ul> <h2>myGrid snapshot repository</h2> <p><a href="http://www.mygrid.org.uk/maven/snapshot-repository/">http://www.mygrid.org.uk/maven/snapshot-repository/</a> contains snapshot versions of the source code. After Taverna 2.0, such snapshots are <a class="confluence-link" href="/wiki/display/developer/Automatic+build+system" data-linked-resource-id="2786123" data-linked-resource-type="page" data-linked-resource-default-alias="Automatic build system" data-base-url="http://dev.mygrid.org.uk/wiki">deployed nightly by Hudson</a>. <br class="atl-forced-newline" /></p> <p>All Taverna artifacts have this repository listed already through their parent, but for separate projects you would need to include a <code>repository</code> section for it like this:</p> <table class="wysiwyg-macro" data-macro-name="code" data-macro-default-parameter="xml" style="background-image: url(/wiki/plugins/servlet/confluence/placeholder/macro-heading?definition=e2NvZGU6eG1sfQ&locale=en_GB&version=2); background-repeat: no-repeat;" data-macro-body-type="PLAIN_TEXT"><tr><td class="wysiwyg-macro-body"><pre> <repositories> <repository> <releases> <enabled>false</enabled> </releases> <snapshots /> <id>mygrid-snapshot-repository</id> <name>myGrid Snapshot Repository</name> <url>http://www.mygrid.org.uk/maven/snapshot-repository</url> </repository> </repositories> </pre></td></tr></table>
Please type the word appearing in the picture.
Attachments
Labels
Location
Watch this page
< Edit
Preview >
Loading…
Save
Cancel
Next hint
search
attachments
weblink
advanced