-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
104 lines (95 loc) · 3.89 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
99
100
101
102
103
104
<?xml version="1.0" encoding="UTF-8"?>
<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>chembl-rdf</artifactId>
<version>20.1.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>ChEMBL-RDF data</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<chembl.version>20.1</chembl.version>
</properties>
<licenses>
<license>
<name>Creative Commons Attribution-ShareAlike 3.0 Unported</name>
<url>http://ftp.ebi.ac.uk/pub/databases/chembl/ChEMBL-RDF/${chembl.version}/LICENSE</url>
<comments>
The data in ChEMBL is covered by the licence in the file LICENSE.
Under the -BY clause, we request attribution for subsequent use of ChEMBL.
For publications using ChEMBL data, the primary current citation is:
1. A.P. Bento, A. Gaulton, A. Hersey, L.J. Bellis, J. Chambers, M. Davies, F.A. Krüger, Y. Light, L. Mak, S. McGlinchey, M. Nowotka, G. Papadatos, R. Santos & J.P. Overington (2014) 'The ChEMBL bioactivity database: an update' Nucl. Acids Res. Database Issue. 42 D1083-D1090 DOI:10.1093/nar/gkt1031 PMID:24214965
If ChEMBL is incorporated into other works, we ask that the ChEMBL IDs are preserved, and that the release number of ChEMBL is clearly displayed.
</comments>
</license>
</licenses>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>wagon-maven-plugin</artifactId>
<version>1.0</version>
<executions>
<execution>
<id>download-rdf</id>
<phase>generate-resources</phase>
<goals>
<goal>download</goal>
</goals>
<configuration>
<includes>*.ttl.gz</includes>
<url>http://ftp.ebi.ac.uk/pub/databases/chembl/ChEMBL-RDF/${chembl.version}</url>
<toDir>${project.build.outputDirectory}/data/${project.artifactId}</toDir>
</configuration>
</execution>
<execution>
<id>download-license</id>
<phase>generate-resources</phase>
<goals>
<goal>download-single</goal>
</goals>
<configuration>
<url>http://ftp.ebi.ac.uk/pub/databases/chembl/ChEMBL-RDF/${chembl.version}/</url>
<fromFile>LICENSE</fromFile>
<toDir>${project.build.outputDirectory}/META-INF/</toDir>
</configuration>
</execution>
<execution>
<id>download-notice</id>
<phase>generate-resources</phase>
<goals>
<goal>download-single</goal>
</goals>
<configuration>
<url>http://ftp.ebi.ac.uk/pub/databases/chembl/ChEMBL-RDF/${chembl.version}/</url>
<fromFile>REQUIRED.ATTRIBUTION</fromFile>
<toFile>${project.build.outputDirectory}/META-INF/NOTICE</toFile>
</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>
<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>