File: dl-downloader.xml

package info (click to toggle)
libgoby-java 3.3.1%2Bdfsg2-11
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 58,108 kB
  • sloc: java: 78,105; cpp: 5,011; xml: 3,170; python: 2,108; sh: 1,575; ansic: 277; makefile: 114
file content (81 lines) | stat: -rw-r--r-- 3,915 bytes parent folder | download | duplicates (2)
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
<?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/xsd/maven-4.0.0.xsd">
   <groupId>org.campagnelab.goby</groupId>
   <artifactId>downloader</artifactId>
    <version>1.0</version>
    <modelVersion>4.0.0</modelVersion>
    <name>Goby Downloader</name>
    <description>Download artifacts needed in the distribution</description>
    <url>http://goby.campagnelab.org</url>
    <properties>
        <dl.version></dl.version>
    </properties>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-dependency-plugin</artifactId>
                <version>2.10</version>
                <executions>
                    <execution>
                        <id>default-cli</id>
                        <configuration>
                            <artifactItems>
                                <artifactItem>
                                    <groupId>org.campagnelab.dl</groupId>
                                    <artifactId>somatic</artifactId>
                                    <type>jar</type>
                                    <version>${dl.version}</version>
                                    <classifier>native</classifier>
                                    <overWrite>true</overWrite>
                                    <outputDirectory>${project.basedir}</outputDirectory>
                                    <destFileName>somatic.jar</destFileName>
                                </artifactItem>
                                <artifactItem>
                                    <groupId>org.campagnelab.dl</groupId>
                                    <artifactId>genotype</artifactId>
                                    <type>jar</type>
                                    <version>${dl.version}</version>
                                    <classifier>native</classifier>
                                    <overWrite>true</overWrite>
                                    <outputDirectory>${project.basedir}</outputDirectory>
                                    <destFileName>genotype.jar</destFileName>
                                </artifactItem>
                                <artifactItem>
                                    <groupId>org.campagnelab.dl</groupId>
                                    <artifactId>framework</artifactId>
                                    <version>${dl.version}</version>
                                    <type>jar</type>
                                    <classifier>native</classifier>
                                    <overWrite>true</overWrite>
                                    <outputDirectory>${project.basedir}</outputDirectory>
                                    <destFileName>framework.jar</destFileName>
                                </artifactItem>
                            </artifactItems>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
    <repositories>
        <repository>
            <id>sonatype-nexus-snapshots</id>
            <url>https://oss.sonatype.org/content/repositories/snapshots</url>
            <releases>
                <enabled>false</enabled>
            </releases>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </repository>
        <!-- nexus staging can be used to test staged artifacts before their official release -->
        <repository>
            <id>nexus-staging</id>
            <name>Nexus Release Repository</name>
            <url>https://oss.sonatype.org/content/groups/staging</url>
        </repository>
    </repositories>
</project>