-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom.xml
More file actions
54 lines (46 loc) · 1.83 KB
/
pom.xml
File metadata and controls
54 lines (46 loc) · 1.83 KB
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
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.bacsystem</groupId>
<artifactId>archetype-api-microservices</artifactId>
<version>1.1.0</version>
<description>archetype component spring-boot</description>
<developers>
<developer>
<id>cbaciliod</id>
<email>dbacilio88@outlook.es</email>
<name>Christian David Bacilio De La cruz</name>
<organization>bacsystem</organization>
<roles>
<role>developer</role>
</roles>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/dbacilio88/archetype-api-microservices.git</connection>
<developerConnection>scm:git:ssh://github.com/dbacilio88/archetype-api-microservices.git</developerConnection>
<url>https://github.com/dbacilio88/archetype-api-microservices</url>
</scm>
<licenses>
<license>
<name>he Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<properties>
<java.version>21</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.archetype</groupId>
<artifactId>archetype-packaging</artifactId>
<version>3.1.1</version>
</extension>
</extensions>
</build>
</project>