-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom.xml
More file actions
96 lines (86 loc) · 3.38 KB
/
pom.xml
File metadata and controls
96 lines (86 loc) · 3.38 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>cv.igrp.framework.auth</groupId>
<artifactId>backend</artifactId>
<version>0.1.0-beta.2</version>
<packaging>pom</packaging>
<name>iGRP Framework Auth Backend</name>
<description>iGRP Framework Auth Backend — SDKs for authentication module</description>
<modules>
<module>client</module>
<module>core</module>
<module>core-spring-boot</module>
<module>keycloak</module>
<module>keycloak-spring-boot</module>
<module>permify-spring-boot</module>
<module>wso2</module>
<module>wso2-spring-boot</module>
</modules>
<properties>
<java.version>21</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<igrp.encoding>UTF-8</igrp.encoding>
<project.build.sourceEncoding>${igrp.encoding}</project.build.sourceEncoding>
<project.reporting.outputEncoding>${igrp.encoding}</project.reporting.outputEncoding>
</properties>
<scm>
<url>http://git.nosi.cv/igrp-3_0/igrp-framework-auth-backend-monorepo</url>
<connection>scm:git:git.nosi.cv:igrp-3_0/igrp-framework-auth-backend-monorepo.git</connection>
</scm>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
</license>
</licenses>
<developers>
<developer>
<id>nosi</id>
<name>NOSi</name>
<email>helpdesk@nosi.cv</email>
<url>https://nosi.cv</url>
<organization>NOSi E.P.E - Núcleo Operacional Para a Sociedade de Informação</organization> <!-- Organization the developer belongs to -->
<organizationUrl>https://nosi.cv</organizationUrl> <!-- Organization website -->
<roles>
<role>developer</role>
</roles>
<timezone>-1</timezone>
</developer>
</developers>
<repositories>
<repository>
<id>igrp-releases</id>
<url>https://sonatype.nosi.cv/repository/igrp-framework-releases/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>igrp-snapshots</id>
<url>https://sonatype.nosi.cv/repository/igrp-framework/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>igrp-framework-releases</id>
<url>https://sonatype.nosi.cv/repository/igrp-framework-releases/</url>
</repository>
<snapshotRepository>
<id>igrp-framework</id>
<url>https://sonatype.nosi.cv/repository/igrp-framework/</url>
</snapshotRepository>
</distributionManagement>
</project>