-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
145 lines (130 loc) · 5.55 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
<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>profi-pom</artifactId>
<groupId>fr.proline</groupId>
<version>1.2.0</version>
</parent>
<artifactId>proline-server</artifactId>
<version>2.3.1</version>
<packaging>pom</packaging>
<name>${project.artifactId}</name>
<description>Multi Modules Projects containing all modules needed to create the Proline Suite server: The JMS Cortex server and all processing modules</description>
<modules>
<module>msparser-native-libraries</module>
<module>pm-dataset-exporter</module>
<module>pm-fragmentmatch-generator</module>
<module>pm-mascot-parser</module>
<module>pm-maxquant-parser</module>
<module>pm-msdiag</module>
<module>pm-mzidentml</module>
<module>pm-omssa-parser</module>
<module>pm-sequence-repository</module>
<module>pm-xtandem-parser</module>
<module>proline-cortex</module>
<module>proline-cortex-api</module>
<module>proline-node</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<core.version>2.3.1</core.version> <!-- core version to use in all modules-->
<mzdb.version>1.2.1</mzdb.version> <!-- mzdb version to use in all modules -->
<commons.version>1.2.0</commons.version>
<server.version>${project.version}</server.version> <!-- server version to use in all modules -->
</properties>
<scm>
<connection>scm:git:https://github.com/profiproteomics/proline-server.git</connection>
</scm>
<dependencyManagement>
<dependencies>
<!-- ProFi Commons -->
<dependency>
<groupId>fr.profi.util</groupId>
<artifactId>profi-commons-scala_${scala.compat.version}</artifactId>
<version>${commons.version}</version>
</dependency>
<dependency>
<groupId>fr.profi.util</groupId>
<artifactId>profi-commons-java</artifactId>
<version>${commons.version}</version>
</dependency>
<dependency>
<groupId>fr.profi</groupId>
<artifactId>profi-proteomics_${scala.compat.version}</artifactId>
<version>${commons.version}</version>
</dependency>
<!-- MzDB access and processing -->
<dependency>
<groupId>fr.profi</groupId>
<artifactId>mzdb-access_${scala.compat.version}</artifactId>
<version>${mzdb.version}</version>
</dependency>
<dependency>
<groupId>fr.profi</groupId>
<artifactId>mzdb-processing_${scala.compat.version}</artifactId>
<version>${mzdb.version}</version>
</dependency>
<!-- "Proline" modules -->
<dependency>
<groupId>fr.proline</groupId>
<artifactId>proline-om_${scala.compat.version}</artifactId>
<version>${core.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>fr.proline</groupId>
<artifactId>proline-databases</artifactId>
<version>${core.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>fr.proline</groupId>
<artifactId>proline-dal_${scala.compat.version}</artifactId>
<version>${core.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>fr.proline</groupId>
<artifactId>proline-om_${scala.compat.version}</artifactId>
<version>${core.version}</version>
</dependency>
<dependency>
<groupId>fr.proline</groupId>
<artifactId>proline-databases</artifactId>
<version>${core.version}</version>
</dependency>
<dependency>
<groupId>fr.proline</groupId>
<artifactId>proline-orm</artifactId>
<version>${core.version}</version>
</dependency>
<dependency>
<groupId>fr.proline</groupId>
<artifactId>proline-dal_${scala.compat.version}</artifactId>
<version>${core.version}</version>
</dependency>
<dependency>
<groupId>fr.proline</groupId>
<artifactId>proline-omp_${scala.compat.version}</artifactId>
<version>${core.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- JUnit tests -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<!-- Version inherited from ProFI-Pom -->
<scope>test</scope>
</dependency>
<dependency> <!-- includes logback-core and slf4j-->
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</dependency>
</dependencies>
</project>