-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
46 lines (37 loc) · 1.37 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
<?xml version="1.0" encoding="utf-8"?>
<!--
- pom.xml
-
- Copyright (C) 2012-2024 Rafael Corchuelo.
-
- In keeping with the traditional purpose of furthering education and research, it is
- the policy of the copyright owner to permit non-commercial use and redistribution of
- this software. It has been tested carefully, but it is not guaranteed for any particular
- purposes. The copyright owner does not offer any warranties or representations, nor do
- they accept any liabilities with respect to them.
-->
<!DOCTYPE xml>
<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>
<name>Acme SF</name>
<description>Acme - Software Factory - D04 of the group C1.033</description>
<artifactId>Acme-SF</artifactId>
<version>D04</version>
<packaging>war</packaging>
<parent>
<groupId>Acme</groupId>
<artifactId>Parent-Pom</artifactId>
<version>24.4.0</version>
<relativePath>../../pom-24.4.0.xml</relativePath>
</parent>
<!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
<dependencies>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
</dependency>
</dependencies>
</project>