-
Notifications
You must be signed in to change notification settings - Fork 2
/
pom.xml
194 lines (194 loc) · 7.99 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
<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">
<!-- Copyright (c) 2012 - 2022, Andres Gomez Casanova (AngocA) All rights
reserved. -->
<!-- Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met: -->
<!-- 1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer. -->
<!-- 2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution. -->
<!-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -->
<modelVersion>4.0.0</modelVersion>
<!-- The Basics -->
<groupId>com.github.angoca</groupId>
<artifactId>log4db2</artifactId>
<version>2-SNAPSHOT</version>
<packaging>pom</packaging>
<!-- Build Settings -->
<!-- "Project Build" contains more elements than just the BaseBuild set -->
<build>
<defaultGoal>clean assembly:single</defaultGoal>
<pluginManagement>
<plugins>
<!-- Cleans the target directory. -->
<!-- mvn clean -->
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>auto-clean</id>
<phase>initialize</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<!-- Packs all files in a tar. -->
<!-- mvn assembly:single -->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.3.0</version>
<configuration>
<appendAssemblyId>false</appendAssemblyId>
<finalName>log4db2</finalName>
<descriptors>
<descriptor>src/main/assembly/assembly.xml</descriptor>
</descriptors>
</configuration>
<!-- Creates the assembly as part of package -->
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Creates the site -->
<!-- mvn site -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.12.0</version>
<configuration>
<locales>en</locales>
</configuration>
</plugin>
<!-- Enforce Maven 3 -->
<!-- mvn site -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>3.8.5</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<localCheckout>true</localCheckout>
<pushChanges>false</pushChanges>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>3.3.0</version>
</plugin>
</plugins>
</reporting>
<!-- More Project Information -->
<name>log4db2</name>
<description>A logging utility written in SQL-PL for IBM DB2 LUW.
</description>
<url>https://angoca.github.io/log4db2/</url>
<!-- The first year. -->
<inceptionYear>2012</inceptionYear>
<licenses>
<license>
<name>BSD 2-Clauses License</name>
<distribution>repo</distribution>
<comments>The Simplified BSD license is for the code (core, test, examples).
</comments>
</license>
<license>
<name>FreeBSD Documentation License</name>
<distribution>repo</distribution>
<comments>This license is for the documentation, that is in the /doc directory and in
the Wiki.
</comments>
</license>
</licenses>
<developers>
<developer>
<id>angoca</id>
<name>Andres Gomez Casanova</name>
<email>angoca at yahoo dot com</email>
<timezone>-5</timezone>
<url>http://angoca.users.sourceforge.net/</url>
<roles>
<role>Designer</role>
<role>Developer</role>
</roles>
<properties>
<picUrl>https://secure.gravatar.com/avatar/6998587ec6de0bab814c70777bcdd2ce.png
</picUrl>
</properties>
</developer>
</developers>
<!-- Environment Settings -->
<issueManagement>
<system>GitHub</system>
<url>https://github.com/angoca/log4db2/issues</url>
</issueManagement>
<scm>
<connection>scm:git:ssh://github.com/angoca/log4db2.git</connection>
<developerConnection>scm:git:ssh://[email protected]/angoca/log4db2.git
</developerConnection>
<url>https://github.com/angoca/log4db2</url>
<tag>HEAD</tag>
</scm>
<distributionManagement>
<repository>
<id>internal.repo</id>
<name>Temporary Staging Repository</name>
<url>file://${project.build.directory}/mvn-repo</url>
</repository>
</distributionManagement>
</project>