-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpom.xml
109 lines (92 loc) · 3.63 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.demoiselle.jee</groupId>
<artifactId>example</artifactId>
<packaging>pom</packaging>
<version>1.0.0</version>
<name>Demoiselle Example</name>
<description>Framework de integração para Java EE 7</description>
<url>http://demoiselle.io</url>
<licenses>
<license>
<name>GNU Lesser General Public License, Version 3</name>
<url>http://www.gnu.org/licenses/lgpl-3.0.txt</url>
</license>
</licenses>
<organization>
<name>SERPRO - Serviço Federal de Processamento de Dados</name>
<url>http://www.serpro.gov.br</url>
</organization>
<developers>
<developer>
<name>Cassio Maes da Fonseca</name>
<email>[email protected]</email>
<organization>SERPRO</organization>
<organizationUrl>http://www.serpro.gov.br</organizationUrl>
</developer>
<developer>
<name>Clovis Lemes Ferreira Junior</name>
<email>[email protected]</email>
<organization>SERPRO</organization>
<organizationUrl>http://www.serpro.gov.br</organizationUrl>
</developer>
<developer>
<name>Julian Cesar dos Santos</name>
<email>[email protected]</email>
<organization>SERPRO</organization>
<organizationUrl>http://www.serpro.gov.br</organizationUrl>
</developer>
<developer>
<name>Paulo Gladson Ximenes Pinheiro</name>
<email>[email protected]</email>
<organization>SERPRO</organization>
<organizationUrl>http://www.serpro.gov.br</organizationUrl>
</developer>
<developer>
<name>Vanderson Botelho da Silva</name>
<email>[email protected]</email>
<organization>SERPRO</organization>
<organizationUrl>http://www.serpro.gov.br</organizationUrl>
</developer>
</developers>
<modules>
<module>v3/cep/backend</module>
<module>v3/forum/backend</module>
<module>v3/livraria/backend</module>
<module>v3/push/backend</module>
<module>v3/todoList/backend</module>
</modules>
<build>
</build>
<scm>
<connection>scm:git:https://github.com/demoiselle/${project.alias}.git</connection>
<developerConnection>scm:git:https://github.com/demoiselle/${project.alias}.git</developerConnection>
<url>http://github.com/demoiselle/${project.alias}</url>
<tag>3.0.2-SNAPSHOT</tag>
</scm>
<repositories>
<repository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
</repository>
<repository>
<id>sonatype-nexus-releases</id>
<name>Sonatype Nexus Releases</name>
<url>https://oss.sonatype.org/content/repositories/releases</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
</repositories>
</project>