-
Notifications
You must be signed in to change notification settings - Fork 4
/
pom.xml
79 lines (72 loc) · 2.74 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
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.anax.framework</groupId>
<artifactId>anax-parent</artifactId>
<version>1.2.1-SNAPSHOT</version>
<packaging>pom</packaging>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.8.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<selenium.version>4.1.0</selenium.version>
<lombok.version>1.16.22</lombok.version>
<maven.compiler.release>11</maven.compiler.release>
<java.version>11</java.version>
</properties>
<name>Anax Framework</name>
<distributionManagement>
<!-- <repository>
<id>bintray-thanosa75-maven</id>
<name>thanosa75-maven</name>
<url>https://api.bintray.com/maven/thanosa75/maven/Anax/;publish=1</url>
</repository> -->
<repository>
<id>github</id>
<name>Anax - the QA Testing Framework</name>
<url>https://maven.pkg.github.com/anaxdojo/anax</url>
</repository>
</distributionManagement>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
</dependencyManagement>
<!-- NOTE: we do not put artifactory here with central as the id! -->
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.2</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<modules>
<module>anax-core</module>
<module>anax-chrome-demo-app</module>
<module>anax-chrome</module>
<module>anax-firefox</module>
<module>anax-winium</module>
<module>anax-plain</module>
<module>anax-saucelabs</module>
<module>anax-plugins</module>
<!-- demo app cannot be deployed (easily) to github packages
<module>anax-chrome-demo-app</module> -->
</modules>
</project>