-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
98 lines (90 loc) · 3.74 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.openphacts.data</groupId>
<artifactId>ops-hmdb-linksets</artifactId>
<version>3.6.0-SNAPSHOT</version>
<packaging>data</packaging>
<name>Open PHACTS HMDB linksets</name>
<url>https://github.com/egonw/create-bridgedb-hmdb/tree/gh-pages/hmdb/3.6.0</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<licenses>
<license>
<name>HMDB</name>
<url>http://www.hmdb.ca/citing</url>
<comments>
HMDB is offered to the public as a freely available resource. Use and re-distribution of the data, in whole or in part, for commercial purposes requires explicit permission of the authors and explicit acknowledgment of the source material (HMDB) and the original publication (see below). We ask that users who download significant portions of the database cite the HMDB paper in any resulting publications.
Please cite:
Wishart DS, Tzur D, Knox C, et al., HMDB: the Human Metabolome Database. Nucleic Acids Res. 2007 Jan;35(Database issue):D521-6. 17202168
Wishart DS, Knox C, Guo AC, et al., HMDB: a knowledgebase for the human metabolome. Nucleic Acids Res. 2009 37(Database issue):D603-610. 18953024
Wishart DS, Jewison T, Guo AC, Wilson M, Knox C, et al., HMDB 3.0 — The Human Metabolome Database in 2013. Nucleic Acids Res. 2013. Jan 1;41(D1):D801-7. 23161693
</comments>
</license>
</licenses>
<build>
<plugins>
<plugin>
<groupId>no.s11.dataplugin</groupId>
<artifactId>data-maven-plugin</artifactId>
<version>0.0.6</version>
<extensions>true</extensions>
<configuration>
<dataDirectory>${project.build.directory}/checkout/hmdb/3.6.0/</dataDirectory>
</configuration>
</plugin>
<plugin>
<artifactId>maven-scm-plugin</artifactId>
<version>1.9.4</version>
<executions>
<execution>
<goals>
<goal>checkout</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<checkoutDirectory>${project.build.directory}/checkout</checkoutDirectory>
<connectionUrl>scm:git:https://github.com/egonw/create-bridgedb-hmdb.git</connectionUrl>
<scmVersionType>branch</scmVersionType>
<scmVersion>gh-pages</scmVersion>
<includes>hmdb/3.6.0/*</includes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>ops</id>
<name>Open PHACTS repository</name>
<url>http://repository.mygrid.org.uk/artifactory/ops/</url>
<releases />
<snapshots />
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>bintray-stain-maven</id>
<name>bintray-plugins</name>
<url>http://dl.bintray.com/stain/maven</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
<distributionManagement>
<repository>
<id>ops</id>
<name>Open PHACTS repository</name>
<url>http://repository.mygrid.org.uk/artifactory/ops/</url>
</repository>
<snapshotRepository>
<id>ops</id>
<name>Open PHACTS repository</name>
<url>http://repository.mygrid.org.uk/artifactory/ops/</url>
</snapshotRepository>
</distributionManagement>
</project>