-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
177 lines (163 loc) · 5.47 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.3.4</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>org.molgenis</groupId>
<artifactId>vip-inheritance-matcher</artifactId>
<version>3.3.5</version>
<name>vip-inheritance-matcher</name>
<description>Annotates VCF samples with mendelian violation and possible compound flags and
matching inheritance modes
</description>
<scm>
<connection>scm:git:git://github.com/molgenis/vip-inheritance-matcher.git</connection>
<developerConnection>scm:git:ssh://[email protected]/molgenis/vip-inheritance-matcher.git
</developerConnection>
<url>https://github.com/molgenis/vip-inheritance-matcher</url>
</scm>
<licenses>
<license>
<distribution>repo</distribution>
<name>The GNU Lesser General Public License, Version 3.0</name>
<url>http://www.gnu.org/licenses/lgpl-3.0.txt</url>
</license>
</licenses>
<modelVersion>4.0.0</modelVersion>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/molgenis/vip-inheritance-matcher/issues</url>
</issueManagement>
<properties>
<java.version>21</java.version>
<commons.cli.version>1.9.0</commons.cli.version>
<!-- [WARNING] Plugin validation issues were detected, see https://github.com/jacoco/jacoco/issues/1435 -->
<jacoco-maven-plugin.version>0.8.12</jacoco-maven-plugin.version>
<samtools.htsjdk.version>4.1.1</samtools.htsjdk.version>
<vip.utils.version>3.0.0</vip.utils.version>
</properties>
<profiles>
<profile>
<build>
<plugins>
<plugin>
<artifactId>jacoco-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
<id>prepare-agent</id>
</execution>
<execution>
<goals>
<goal>report</goal>
</goals>
<id>report</id>
</execution>
</executions>
<groupId>org.jacoco</groupId>
<version>${jacoco-maven-plugin.version}</version>
</plugin>
</plugins>
</build>
<id>coverage</id>
</profile>
</profiles>
<build>
<finalName>vcf-inheritance-matcher</finalName>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerArgs>
<arg>-Xlint</arg>
<arg>-Xlint:-processing</arg><!-- disable: perfectly normal for annotations to not have a processor -->
</compilerArgs>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<artifactId>spring-boot-maven-plugin</artifactId>
<groupId>org.springframework.boot</groupId>
<configuration>
<excludes>
<!-- By default provided dependencies are included -->
<exclude>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId>
</plugin>
<plugin>
<!-- suppress Java 21 dynamic agent loading warning, since there is no suitable fix yet -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>-XX:+EnableDynamicAgentLoading</argLine>
</configuration>
</plugin>
</plugins>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.molgenis</groupId>
<artifactId>vip-utils</artifactId>
<version>${vip.utils.version}</version>
</dependency>
<dependency>
<artifactId>commons-cli</artifactId>
<groupId>commons-cli</groupId>
<version>${commons.cli.version}</version>
</dependency>
<dependency>
<artifactId>htsjdk</artifactId>
<groupId>com.github.samtools</groupId>
<version>${samtools.htsjdk.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.molgenis</groupId>
<artifactId>vip-utils</artifactId>
</dependency>
<dependency>
<artifactId>spring-boot-starter</artifactId>
<groupId>org.springframework.boot</groupId>
</dependency>
<dependency>
<artifactId>lombok</artifactId>
<groupId>org.projectlombok</groupId>
<scope>provided</scope>
</dependency>
<dependency>
<artifactId>commons-cli</artifactId>
<groupId>commons-cli</groupId>
</dependency>
<dependency>
<artifactId>htsjdk</artifactId>
<groupId>com.github.samtools</groupId>
</dependency>
<dependency>
<artifactId>spring-boot-starter-test</artifactId>
<groupId>org.springframework.boot</groupId>
<scope>test</scope>
</dependency>
</dependencies>
</project>