-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpom.xml
More file actions
79 lines (68 loc) · 2.66 KB
/
pom.xml
File metadata and controls
79 lines (68 loc) · 2.66 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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">
<parent>
<groupId>org.eclipse.ee4j</groupId>
<artifactId>project</artifactId>
<version>1.0.9</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.eclipse.starter</groupId>
<artifactId>jakarta-starter-modules</artifactId>
<version>2.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Eclipse Starter for Jakarta EE Project</name>
<description>
This is the official Eclipse Foundation Starter for Jakarta EE project.
It generates code to help get started with Jakarta EE projects
using Maven. It is possible to do so using Maven archetypes or a web UI.
</description>
<url>https://start.jakarta.ee</url>
<organization>
<name>Eclipse Foundation</name>
<url>https://www.eclipse.org/org/foundation/</url>
</organization>
<issueManagement>
<system>github</system>
<url>https://github.com/eclipse-ee4j/starter/issues</url>
</issueManagement>
<licenses>
<license>
<name>Eclipse Public License - v 2.0</name>
<url>https://www.eclipse.org/legal/epl-2.0/</url>
</license>
</licenses>
<developers>
<!-- All active committers should add their information here. -->
<developer>
<id>jeyvison</id>
<name>Jeyvison Nascimento</name>
<email>jeynoronha@gmail.com</email>
</developer>
<developer>
<id>m-reza-rahman</id>
<name>Reza Rahman</name>
<email>reza_rahman@mail.com</email>
</developer>
<developer>
<id>ivargrimstad</id>
<name>Ivar Grimstad</name>
<email>ivar.grimstad@eclipse-foundation.org</email>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/eclipse-ee4j/starter.git</connection>
<developerConnection>scm:git:ssh://github.com:eclipse-ee4j/starter.git</developerConnection>
<url>http://github.com/eclipse-ee4j/starter/tree/master</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.report.sourceEncoding>UTF-8</project.report.sourceEncoding>
<project.build.outputTimestamp>10</project.build.outputTimestamp>
</properties>
<modules>
<module>archetype</module>
<module>ui</module>
</modules>
</project>