-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
126 lines (115 loc) · 4.07 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<?xml version="1.0" encoding="utf-8"?>
<!--
# This file is part of the pl.wrzasq.cform.
#
# @license http://mit-license.org/ The MIT license
# @copyright 2020 - 2024 © by Rafał Wrzeszcz - Wrzasq.pl.
-->
<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>
<!-- core project settings -->
<groupId>pl.wrzasq.cform</groupId>
<artifactId>cform</artifactId>
<packaging>pom</packaging>
<version>1.4.1-SNAPSHOT</version>
<parent>
<groupId>pl.wrzasq.parent</groupId>
<artifactId>parent-opensource</artifactId>
<version>3.0.3</version>
</parent>
<!-- project meta info -->
<name>WrzasqPl CForm</name>
<url>https://rafalwrzeszcz-wrzasqpl.github.io/pl.wrzasq.cform</url>
<description>WrzasqPl-CForm is set of AWS CloudFormation extensions.</description>
<inceptionYear>2020</inceptionYear>
<!-- legal info -->
<licenses>
<license>
<name>The MIT license</name>
<url>http://mit-license.org/</url>
<distribution>repo</distribution>
<comments>MIT</comments>
</license>
</licenses>
<organization>
<name>Rafał Wrzeszcz - Wrzasq.pl</name>
<url>https://wrzasq.pl/</url>
</organization>
<!-- personal info -->
<developers>
<developer>
<id>rafal.wrzeszcz</id>
<name>Rafał Wrzeszcz</name>
<email>[email protected]</email>
<url>https://wrzasq.pl/</url>
<organization>Rafał Wrzeszcz - Wrzasq.pl</organization>
<organizationUrl>https://wrzasq.pl/</organizationUrl>
<roles>
<role>creator</role>
<role>owner</role>
<role>manager</role>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>+1</timezone>
<properties>
<picUrl>https://www.gravatar.com/avatar/412a39726c1c9c96965d9db8f8c6787a.png</picUrl>
</properties>
</developer>
</developers>
<!-- development handling -->
<issueManagement>
<system>GitHub</system>
<url>https://github.com/rafalwrzeszcz-wrzasqpl/pl.wrzasq.cform/issues</url>
</issueManagement>
<ciManagement>
<system>GitHub Actions</system>
<url>https://github.com/rafalwrzeszcz-wrzasqpl/pl.wrzasq.cform/actions</url>
</ciManagement>
<scm>
<connection>scm:git:https://github.com/rafalwrzeszcz-wrzasqpl/pl.wrzasq.cform.git</connection>
<url>https://github.com/rafalwrzeszcz-wrzasqpl/pl.wrzasq.cform</url>
</scm>
<!-- distribution handling -->
<distributionManagement>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<site>
<id>github</id>
<url>git:ssh://[email protected]/rafalwrzeszcz-wrzasqpl/pl.wrzasq.cform.git?gh-pages#</url>
</site>
</distributionManagement>
<!-- build profiles -->
<profiles>
<profile>
<id>deploy</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-plugin</artifactId>
<inherited>false</inherited>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<!-- components of WrzasqPl-CForm project -->
<modules>
<module>cform-commons</module>
<module>cform-data-cognito-client</module>
<module>cform-macro</module>
<module>cform-resource-aws-passwordpolicy</module>
</modules>
</project>