-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
59 lines (51 loc) · 2.14 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
<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>
<groupId>pt.tecnico.hdlt.T25</groupId>
<artifactId>location-tracker</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<group.id>T25</group.id>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<version.java>11</version.java>
<maven.compiler.source>${version.java}</maven.compiler.source>
<maven.compiler.target>${version.java}</maven.compiler.target>
<version.maven-resources-plugin>3.1.0</version.maven-resources-plugin>
<version.maven-failsafe-plugin>3.0.0-M4</version.maven-failsafe-plugin>
<version.maven-surefire-plugin>3.0.0-M4</version.maven-surefire-plugin>
<version.exec-maven-plugin>1.6.0</version.exec-maven-plugin>
<version.appassembler-maven-plugin>2.1.0</version.appassembler-maven-plugin>
<version.maven-javadoc-plugin>3.2.0</version.maven-javadoc-plugin>
<version.junit>5.6.0</version.junit>
<version.grpc>1.28.0</version.grpc>
<version.protobuf>3.11.4</version.protobuf>
<version.javax.annotation-api>1.3.2</version.javax.annotation-api>
<version.protoc>3.11.4</version.protoc>
<version.protobuf-maven-plugin>0.6.1</version.protobuf-maven-plugin>
<version.os-maven-plugin>1.6.2</version.os-maven-plugin>
<version.maven-enforcer-plugin>3.0.0-M3</version.maven-enforcer-plugin>
<version.maven-compiler-plugin>3.8.1</version.maven-compiler-plugin>
</properties>
<modules>
<module>contract</module>
<module>server</module>
<module>client</module>
<module>generator</module>
<module>location-tracker-crypto</module>
</modules>
<dependencies>
</dependencies>
<build>
<plugins>
<!-- Plugin to check available updates on dependencies -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.7</version>
</plugin>
</plugins>
</build>
</project>