1
+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
2
+ xsi:schemaLocation=" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
3
+ <modelVersion >4.0.0</modelVersion >
4
+ <groupId >genepi-io</groupId >
5
+ <artifactId >genepi-io</artifactId >
6
+ <version >0.0.1-SNAPSHOT</version >
7
+ <properties >
8
+ <github .global.server>github</github .global.server>
9
+ <jdk .version>1.7</jdk .version>
10
+ </properties >
11
+
12
+ <distributionManagement >
13
+ <repository >
14
+ <id >internal.repo</id >
15
+ <name >Temporary Staging Repository</name >
16
+ <url >file://${project.build.directory} /mvn-repo</url >
17
+ </repository >
18
+ </distributionManagement >
19
+
20
+ <build >
21
+ <plugins >
22
+ <plugin >
23
+ <groupId >org.apache.maven.plugins</groupId >
24
+ <artifactId >maven-compiler-plugin</artifactId >
25
+ <version >3.1</version >
26
+ <configuration >
27
+ <source >${jdk.version} </source >
28
+ <target >${jdk.version} </target >
29
+ </configuration >
30
+ </plugin >
31
+ <plugin >
32
+ <artifactId >maven-deploy-plugin</artifactId >
33
+ <version >2.8.1</version >
34
+ <configuration >
35
+ <altDeploymentRepository >internal.repo::default::file://${project.build.directory} /mvn-repo</altDeploymentRepository >
36
+ </configuration >
37
+ </plugin >
38
+ <plugin >
39
+ <groupId >com.github.github</groupId >
40
+ <artifactId >site-maven-plugin</artifactId >
41
+ <version >0.8</version >
42
+ <configuration >
43
+ <message >Maven artifacts for ${project.version} </message > <!-- git commit message -->
44
+ <noJekyll >true</noJekyll > <!-- disable webpage processing -->
45
+ <outputDirectory >${project.build.directory} /mvn-repo</outputDirectory > <!-- matches distribution management repository url above -->
46
+ <branch >refs/heads/master</branch > <!-- remote branch name -->
47
+ <includes ><include >**/*</include ></includes >
48
+ <repositoryName >maven</repositoryName > <!-- github repo name -->
49
+ <repositoryOwner >genepi</repositoryOwner > <!-- github username -->
50
+ </configuration >
51
+ <executions >
52
+ <!-- run site-maven-plugin's 'site' target as part of the build's normal 'deploy' phase -->
53
+ <execution >
54
+ <goals >
55
+ <goal >site</goal >
56
+ </goals >
57
+ <phase >deploy</phase >
58
+ </execution >
59
+ </executions >
60
+ </plugin >
61
+ </plugins >
62
+ </build >
63
+
64
+
65
+ <dependencies >
66
+ <dependency >
67
+ <groupId >net.sf.opencsv</groupId >
68
+ <artifactId >opencsv</artifactId >
69
+ <version >2.3</version >
70
+ </dependency >
71
+ <dependency >
72
+ <groupId >commons-cli</groupId >
73
+ <artifactId >commons-cli</artifactId >
74
+ <version >1.2</version >
75
+ </dependency >
76
+ <dependency >
77
+ <groupId >net.sourceforge.jexcelapi</groupId >
78
+ <artifactId >jxl</artifactId >
79
+ <version >2.6.12</version >
80
+ </dependency >
81
+
82
+ </dependencies >
83
+ </project >
0 commit comments