1 | <?xml version="1.0" encoding="UTF-8"?> |
---|
2 | <project> |
---|
3 | <!-- global info regarding the project these plugins come from --> |
---|
4 | <name>NBIC BRS Cytoscape Plugins</name> |
---|
5 | <description>Cytoscape Plugins developed by NBIC BRS</description> |
---|
6 | <url>${project.organization.url}</url> |
---|
7 | <!-- contains all the available plugins --> |
---|
8 | <pluginlist> |
---|
9 | <!-- describes a single plugin --> |
---|
10 | <plugin> |
---|
11 | <!-- id must be the same from one version to the next for updating --> |
---|
12 | <uniqueID>${project.artifactId}</uniqueID> |
---|
13 | <name>${project.name}</name> |
---|
14 | <description>${project.description}</description> |
---|
15 | <!-- versions may only be two numbers separated by a decimal --> |
---|
16 | <pluginVersion>${project.version}</pluginVersion> |
---|
17 | |
---|
18 | <!-- compatible with these versions, a separate <version>entry is required for each compatible version --> |
---|
19 | <cytoscapeVersions> |
---|
20 | <version>2.8</version> |
---|
21 | </cytoscapeVersions> |
---|
22 | <filetype>jar</filetype> |
---|
23 | <category>${cytoscape.category}</category> |
---|
24 | |
---|
25 | <!-- url to download plugin file from --> |
---|
26 | <url>${repository.brs.public}nl/nbic/brs/${project.artifactId}/${project.version}/${project.artifactId}-${project.version}.jar</url> |
---|
27 | |
---|
28 | <!-- add as many authors as you like --> |
---|
29 | <authorlist> |
---|
30 | <author> |
---|
31 | <name>${developer.name}</name> |
---|
32 | <institution>${project.organization.name}</institution> |
---|
33 | </author> |
---|
34 | </authorlist> |
---|
35 | |
---|
36 | <!-- license is NOT required, if used a license can be embedded in the xml or downloaded from a url --> |
---|
37 | <license> |
---|
38 | <url>${license.url}</url> |
---|
39 | </license> |
---|
40 | </plugin> |
---|
41 | <plugin> |
---|
42 | <!-- id must be the same from one version to the next for updating --> |
---|
43 | <uniqueID>piqc-plugin</uniqueID> |
---|
44 | <name>Protein Identification and Quantification Plugin</name> |
---|
45 | <description>Cytoscape Plugin to load Protein Identification and Quantification data.</description> |
---|
46 | <!-- versions may only be two numbers separated by a decimal --> |
---|
47 | <pluginVersion>1.2</pluginVersion> |
---|
48 | |
---|
49 | <!-- compatible with these versions, a separate <version>entry is required for each compatible version --> |
---|
50 | <cytoscapeVersions> |
---|
51 | <version>2.8</version> |
---|
52 | </cytoscapeVersions> |
---|
53 | <filetype>jar</filetype> |
---|
54 | <category>Network and Attribute I/O</category> |
---|
55 | |
---|
56 | <!-- url to download plugin file from --> |
---|
57 | <url>http://brs.nbic.nl/repo/content/groups/public/nl/nbic/brs/piqc-plugin/1.2/piqc-plugin-1.2.jar</url> |
---|
58 | |
---|
59 | <!-- add as many authors as you like --> |
---|
60 | <authorlist> |
---|
61 | <author> |
---|
62 | <name>Tim te Beek</name> |
---|
63 | <institution>Netherlands Bioinformatics Centre, Bioinformatics Research Support</institution> |
---|
64 | </author> |
---|
65 | </authorlist> |
---|
66 | |
---|
67 | <!-- license is NOT required, if used a license can be embedded in the xml or downloaded from a url --> |
---|
68 | <license> |
---|
69 | <url>http://www.gnu.org/licenses/lgpl-3.0.txt</url> |
---|
70 | </license> |
---|
71 | </plugin> |
---|
72 | </pluginlist> |
---|
73 | </project> |
---|