-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
71 lines (64 loc) · 2.82 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
<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-ensembl-linksets</artifactId>
<version>77.2015-08-20-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Open PHACTS Ensembl linksets</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<licenses>
<license>
<name>Ensembl Disclaimer (Archive release 77)</name>
<url>http://oct2014.archive.ensembl.org/info/about/legal/index.html</url>
<comments>
Ensembl imposes no restrictions on access to, or use of, the data provided and the software used to analyse and present it. Ensembl data generated by members of the project are available without restriction. Ensembl code written by members of the project is provided under the Apache 2.0 licence.
Some of the data and software included in the distribution may be subject to third-party constraints. Users of the data and software are solely responsible for establishing the nature of and complying with any such restrictions.
The Wellcome Trust Sanger Institute (WTSI) and the EMBL - European Bioinformatics Institute (EBI) provide this data and software in good faith, but make no warranty, express or implied, nor assume any legal liability or responsibility for any purpose for which they are used.
</comments>
</license>
</licenses>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>wagon-maven-plugin</artifactId>
<version>1.0</version>
<configuration>
<url>http://bridgedb.org/data/linksets/${ensembl.species}</url>
<includes>*.ttl.gz</includes>
<toDir>${project.build.outputDirectory}/data/${project.artifactId}</toDir>
</configuration>
</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>
<modules>
<module>homosapiens</module>
<module>musmusculus</module>
<module>all</module>
</modules>
</project>