-
Notifications
You must be signed in to change notification settings - Fork 2
/
pom.xml
57 lines (52 loc) · 2.16 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
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- inherit pom in lphybeast-root -->
<parent>
<groupId>io.github.linguaphylo</groupId>
<artifactId>lphybeast-root</artifactId>
<!-- lphybeast version here -->
<version>1.2.1</version>
</parent>
<!-- <groupId>io.github.linguaphylo</groupId>-->
<artifactId>beast-phylonco</artifactId>
<!-- phylonco version -->
<version>${revision}</version>
<packaging>pom</packaging>
<name>beast-phylonco</name>
<properties>
<lphy.vision>1.6.1</lphy.vision>
<lphybeast.vision>1.2.1</lphybeast.vision>
<!-- include lphybeast -->
<lphybeast.flc.vision>0.0.1-SNAPSHOT</lphybeast.flc.vision>
<!-- phylonco pom version https://maven.apache.org/maven-ci-friendly.html -->
<!-- change version in phylonco-beast or phylonco-lphybeast pom, not here -->
<revision>1.2.1</revision>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<modules>
<!-- this already has linguaPhylo, importing again will cause duplication err -->
<module>../LPhyBeast/</module>
<module>phylonco-beast</module>
<module>phylonco-lphy</module>
<module>phylonco-lphy-studio</module>
<module>phylonco-lphybeast</module>
</modules>
<dependencies>
<!-- <dependency>-->
<!-- <groupId>org.junit.jupiter</groupId>-->
<!-- <artifactId>junit-jupiter</artifactId>-->
<!-- <version>5.9.2</version>-->
<!-- <scope>test</scope>-->
<!-- </dependency>-->
<!-- TODO : why not junit 5 ? -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>