-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
69 lines (61 loc) · 2.39 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
<?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-admin-parent</artifactId>
<version>2.3.2</version>
<packaging>pom</packaging>
<name>Proline-Admin-Parent</name>
<description>Common pom for Proline Administration modules : Admin process (proline-admin) and Admin GUI (proline-admin-gui).</description>
<modules>
<module>proline-admin</module>
<module>proline-admin-gui</module>
<module>log-parser</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<core.version>2.3.1</core.version>
<commons.version>1.2.0</commons.version>
</properties>
<scm>
<connection>scm:git:https://github.com/profiproteomics/proline-admin.git</connection>
</scm>
<dependencyManagement>
<dependencies>
<!-- Configuration -->
<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>
</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>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.9.0</version>
<type>jar</type>
</dependency>
</dependencies>
</project>