|
11 | 11 | </parent>
|
12 | 12 |
|
13 | 13 | <artifactId>schemacrawler-ai-parent</artifactId>
|
14 |
| - <version>16.25.3-7</version> |
| 14 | + <version>16.25.3-8</version> |
15 | 15 | <packaging>pom</packaging>
|
16 | 16 | <name>SchemaCrawler AI [Parent]</name>
|
17 | 17 | <description>Free database schema discovery and comprehension tool</description>
|
|
132 | 132 | </pluginManagement>
|
133 | 133 | <plugins>
|
134 | 134 | <plugin>
|
135 |
| - <inherited>true</inherited> |
136 |
| - <groupId>org.apache.maven.plugins</groupId> |
137 |
| - <artifactId>maven-enforcer-plugin</artifactId> |
138 |
| - <executions> |
139 |
| - <execution> |
140 |
| - <id>enforce-maven-3</id> |
141 |
| - <goals> |
142 |
| - <goal>enforce</goal> |
143 |
| - </goals> |
144 |
| - <configuration> |
145 |
| - <rules> |
146 |
| - <requireMavenVersion> |
147 |
| - <version>3.8.4</version> |
148 |
| - </requireMavenVersion> |
149 |
| - </rules> |
150 |
| - <fail>true</fail> |
151 |
| - </configuration> |
152 |
| - </execution> |
153 |
| - </executions> |
154 |
| - </plugin> |
155 |
| - <plugin> |
156 |
| - <groupId>org.apache.maven.plugins</groupId> |
157 |
| - <artifactId>maven-clean-plugin</artifactId> |
158 |
| - <configuration> |
159 |
| - <filesets> |
160 |
| - <fileset> |
161 |
| - <directory>.</directory> |
162 |
| - <includes> |
163 |
| - <include>pom.xml.versionsBackup</include> |
164 |
| - <include>dependency-reduced-pom.xml</include> |
165 |
| - </includes> |
166 |
| - </fileset> |
167 |
| - </filesets> |
168 |
| - </configuration> |
169 |
| - </plugin> |
170 |
| - <plugin> |
171 |
| - <inherited>true</inherited> |
172 |
| - <groupId>org.apache.maven.plugins</groupId> |
173 |
| - <artifactId>maven-compiler-plugin</artifactId> |
174 |
| - <configuration> |
175 |
| - <release>21</release> |
176 |
| - <encoding>UTF-8</encoding> |
177 |
| - </configuration> |
178 |
| - </plugin> |
179 |
| - <plugin> |
180 |
| - <inherited>true</inherited> |
181 | 135 | <groupId>org.apache.maven.plugins</groupId>
|
182 |
| - <artifactId>maven-source-plugin</artifactId> |
183 |
| - <executions> |
184 |
| - <execution> |
185 |
| - <goals> |
186 |
| - <goal>jar-no-fork</goal> |
187 |
| - </goals> |
188 |
| - </execution> |
189 |
| - </executions> |
190 |
| - </plugin> |
191 |
| - <plugin> |
192 |
| - <inherited>true</inherited> |
193 |
| - <groupId>org.apache.maven.plugins</groupId> |
194 |
| - <artifactId>maven-surefire-plugin</artifactId> |
195 |
| - <configuration> |
196 |
| - <systemPropertyVariables> |
197 |
| - <java.util.logging.config.class>us.fatehi.utility.LoggingConfig</java.util.logging.config.class> |
198 |
| - </systemPropertyVariables> |
199 |
| - </configuration> |
200 |
| - </plugin> |
201 |
| - <plugin> |
202 |
| - <inherited>true</inherited> |
203 |
| - <groupId>org.apache.maven.plugins</groupId> |
204 |
| - <artifactId>maven-javadoc-plugin</artifactId> |
205 |
| - <executions> |
206 |
| - <execution> |
207 |
| - <id>attach-javadocs</id> |
208 |
| - <goals> |
209 |
| - <goal>jar</goal> |
210 |
| - </goals> |
211 |
| - <configuration> |
212 |
| - <release>21</release> |
213 |
| - <quiet>true</quiet> |
214 |
| - <show>public</show> |
215 |
| - <detectOfflineLinks>true</detectOfflineLinks> |
216 |
| - <additionalOptions> |
217 |
| - <additionalOption>-Xdoclint:none</additionalOption> |
218 |
| - </additionalOptions> |
219 |
| - <bottom>Copyright © 2000-2025 {organizationName}. All |
220 |
| - rights reserved.</bottom> |
221 |
| - <doctitle>SchemaCrawler AI ${project.version}</doctitle> |
222 |
| - </configuration> |
223 |
| - </execution> |
224 |
| - </executions> |
225 |
| - </plugin> |
226 |
| - <plugin> |
227 |
| - <inherited>true</inherited> |
228 |
| - <groupId>org.apache.maven.plugins</groupId> |
229 |
| - <artifactId>maven-gpg-plugin</artifactId> |
230 |
| - <configuration> |
231 |
| - <!-- Prevent `gpg` from using pinentry programs --> |
232 |
| - <gpgArguments> |
233 |
| - <arg>--pinentry-mode</arg> |
234 |
| - <arg>loopback</arg> |
235 |
| - </gpgArguments> |
236 |
| - <skip>${skip.signing.artifacts}</skip> |
237 |
| - </configuration> |
238 |
| - <executions> |
239 |
| - <execution> |
240 |
| - <id>sign-artifacts</id> |
241 |
| - <phase>verify</phase> |
242 |
| - <goals> |
243 |
| - <goal>sign</goal> |
244 |
| - </goals> |
245 |
| - </execution> |
246 |
| - </executions> |
247 |
| - </plugin> |
248 |
| - <plugin> |
249 |
| - <groupId>org.sonatype.plugins</groupId> |
250 |
| - <artifactId>nexus-staging-maven-plugin</artifactId> |
251 |
| - <extensions>true</extensions> |
| 136 | + <artifactId>maven-deploy-plugin</artifactId> |
252 | 137 | <configuration>
|
253 |
| - <serverId>sonatype-nexus</serverId> |
254 |
| - <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
255 |
| - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
256 |
| - <keepStagingRepositoryOnFailure>true</keepStagingRepositoryOnFailure> |
257 |
| - <keepStagingRepositoryOnCloseRuleFailure>true</keepStagingRepositoryOnCloseRuleFailure> |
258 |
| - <stagingProgressTimeoutMinutes>10</stagingProgressTimeoutMinutes> |
259 |
| - <stagingProgressPauseDurationSeconds>10</stagingProgressPauseDurationSeconds> |
| 138 | + <skip>false</skip> |
260 | 139 | </configuration>
|
261 | 140 | </plugin>
|
262 |
| - </plugins> |
| 141 | + </plugins> |
263 | 142 | </build>
|
264 | 143 | </project>
|
0 commit comments