| <?xml version="1.0" encoding="utf-8"?> |
| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one or more |
| contributor license agreements. See the NOTICE file distributed with |
| this work for additional information regarding copyright ownership. |
| The ASF licenses this file to You under the Apache License, Version 2.0 |
| (the "License"); you may not use this file except in compliance with |
| the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| --> |
| <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"> |
| <parent> |
| <groupId>org.apache.commons</groupId> |
| <artifactId>commons-parent</artifactId> |
| <version>77</version> |
| </parent> |
| <modelVersion>4.0.0</modelVersion> |
| <groupId>commons-dbutils</groupId> |
| <artifactId>commons-dbutils</artifactId> |
| <version>1.9.0-SNAPSHOT</version> |
| <name>Apache Commons DbUtils</name> |
| |
| <inceptionYear>2002</inceptionYear> |
| <description>The Apache Commons DbUtils package is a set of Java utility classes for easing JDBC development.</description> |
| |
| <url>https://commons.apache.org/proper/commons-dbutils/</url> |
| |
| <issueManagement> |
| <system>jira</system> |
| <url>https://issues.apache.org/jira/browse/DBUTILS</url> |
| </issueManagement> |
| |
| <scm> |
| <connection>scm:git:git://git.apache.org/commons-dbutils.git</connection> |
| <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/commons-dbutils.git</developerConnection> |
| <url>https://gitbox.apache.org/repos/asf?p=commons-dbutils.git</url> |
| </scm> |
| <dependencies> |
| <dependency> |
| <groupId>org.junit.vintage</groupId> |
| <artifactId>junit-vintage-engine</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.mockito</groupId> |
| <artifactId>mockito-core</artifactId> |
| <version>5.14.1</version> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| |
| <distributionManagement> |
| <!-- Cannot define in parent ATM, see COMMONSSITE-26 --> |
| <site> |
| <id>apache.website</id> |
| <name>Apache Commons Site</name> |
| <url>${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/${commons.componentid}</url> |
| </site> |
| </distributionManagement> |
| |
| <properties> |
| <maven.compiler.source>11</maven.compiler.source> |
| <maven.compiler.target>11</maven.compiler.target> |
| <maven.compiler.release>11</maven.compiler.release> |
| |
| <checkstyle.header.file>${basedir}/src/conf/checkstyle/checkstyle-header.txt</checkstyle.header.file> |
| <checkstyle.config.file>${basedir}/src/conf/checkstyle/checkstyle.xml</checkstyle.config.file> |
| |
| <commons.componentid>dbutils</commons.componentid> |
| <commons.packageId>dbutils</commons.packageId> |
| <commons.release.version>1.9.0</commons.release.version> |
| <commons.next.version>1.9.1</commons.next.version> |
| <commons.rc.version>RC1</commons.rc.version> |
| <commons.bc.version>1.8.1</commons.bc.version> |
| <commons.jira.id>DBUTILS</commons.jira.id> |
| <commons.jira.pid>12310470</commons.jira.pid> |
| <commons.release.isDistModule>true</commons.release.isDistModule> |
| <project.build.outputTimestamp>2024-01-01T00:00:00Z</project.build.outputTimestamp> |
| <!-- JaCoCo: Don't make code coverage worse than: --> |
| <commons.jacoco.haltOnFailure>true</commons.jacoco.haltOnFailure> |
| <commons.jacoco.classRatio>0.93</commons.jacoco.classRatio> |
| <commons.jacoco.instructionRatio>0.67</commons.jacoco.instructionRatio> |
| <commons.jacoco.methodRatio>0.58</commons.jacoco.methodRatio> |
| <commons.jacoco.branchRatio>0.81</commons.jacoco.branchRatio> |
| <commons.jacoco.lineRatio>0.66</commons.jacoco.lineRatio> |
| <commons.jacoco.complexityRatio>0.61</commons.jacoco.complexityRatio> |
| </properties> |
| <build> |
| <!-- clean before javadoc:javadoc somehow help javadoc not blow up. --> |
| <defaultGoal>clean verify apache-rat:check japicmp:cmp checkstyle:check spotbugs:check pmd:check pmd:cpd-check clean javadoc:javadoc</defaultGoal> |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-checkstyle-plugin</artifactId> |
| <version>${commons.checkstyle-plugin.version}</version> |
| <configuration> |
| <configLocation>${checkstyle.config.file}</configLocation> |
| <enableRulesSummary>false</enableRulesSummary> |
| <headerLocation>${checkstyle.header.file}</headerLocation> |
| <includeTestSourceDirectory>true</includeTestSourceDirectory> <!-- TODO --> |
| <suppressionsLocation>${basedir}/src/conf/checkstyle/checkstyle-suppressions.xml</suppressionsLocation> |
| <suppressionsFileExpression>${basedir}/src/conf/checkstyle/checkstyle-suppressions.xml</suppressionsFileExpression> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>com.github.spotbugs</groupId> |
| <artifactId>spotbugs-maven-plugin</artifactId> |
| <configuration> |
| <threshold>Normal</threshold> |
| <effort>Default</effort> |
| <excludeFilterFile>${basedir}/src/site/resources/spotbugs/sb-excludes.xml</excludeFilterFile> |
| </configuration> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <configuration> |
| <excludes> |
| <exclude>**/BaseTestCase.java</exclude> |
| </excludes> |
| </configuration> |
| </plugin> |
| <plugin> |
| <artifactId>maven-assembly-plugin</artifactId> |
| <configuration> |
| <descriptors> |
| <descriptor>src/main/assembly/bin.xml</descriptor> |
| <descriptor>src/main/assembly/src.xml</descriptor> |
| </descriptors> |
| <tarLongFileMode>gnu</tarLongFileMode> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.rat</groupId> |
| <artifactId>apache-rat-plugin</artifactId> |
| <executions> |
| <execution> |
| <phase>verify</phase> |
| <goals> |
| <goal>check</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.jacoco</groupId> |
| <artifactId>jacoco-maven-plugin</artifactId> |
| <executions> |
| <execution> |
| <phase>test</phase> |
| <goals> |
| <goal>report</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| |
| <reporting> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-changes-plugin</artifactId> |
| <version>${commons.changes.version}</version> |
| <configuration> |
| <xmlPath>${basedir}/src/changes/changes.xml</xmlPath> |
| <issueLinkTemplate>%URL%/%ISSUE%</issueLinkTemplate> |
| </configuration> |
| <reportSets> |
| <reportSet> |
| <reports> |
| <report>changes-report</report> |
| </reports> |
| </reportSet> |
| </reportSets> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-checkstyle-plugin</artifactId> |
| <configuration> |
| <configLocation>${checkstyle.config.file}</configLocation> |
| <enableRulesSummary>false</enableRulesSummary> |
| <headerLocation>${checkstyle.header.file}</headerLocation> |
| <suppressionsLocation>${basedir}/src/site/resources/checkstyle/checkstyle-suppressions.xml</suppressionsLocation> |
| <suppressionsFileExpression>${basedir}/src/site/resources/checkstyle/checkstyle-suppressions.xml</suppressionsFileExpression> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>com.github.spotbugs</groupId> |
| <artifactId>spotbugs-maven-plugin</artifactId> |
| <configuration> |
| <threshold>Normal</threshold> |
| <effort>Default</effort> |
| <excludeFilterFile>${basedir}/src/site/resources/spotbugs/sb-excludes.xml</excludeFilterFile> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-pmd-plugin</artifactId> |
| <version>${commons.pmd.version}</version> |
| <configuration> |
| <targetJdk>${maven.compiler.source}</targetJdk> |
| <rulesets> |
| <ruleset>${basedir}/src/site/resources/pmd/pmd-ruleset.xml</ruleset> |
| </rulesets> |
| </configuration> |
| </plugin> |
| </plugins> |
| </reporting> |
| <profiles> |
| <profile> |
| <id>rc</id> |
| <distributionManagement> |
| <!-- Cannot define in parent ATM, see COMMONSSITE-26 --> |
| <site> |
| <id>apache.website</id> |
| <name>Apache Commons Release Candidate Staging Site</name> |
| <url>${commons.deployment.protocol}://people.apache.org/www/people.apache.org/builds/commons/${commons.componentid}/${commons.release.version}/${commons.rc.version}/site</url> |
| </site> |
| </distributionManagement> |
| </profile> |
| </profiles> |
| <developers> |
| <developer> |
| <name>Juozas Baliuka</name> |
| <id>baliuka</id> |
| <email>baliuka@apache.org</email> |
| <organization /> |
| <roles> |
| <role>Java Developer</role> |
| </roles> |
| </developer> |
| <developer> |
| <name>Steven Caswell</name> |
| <id>scaswell</id> |
| <email>steven@caswell.name</email> |
| <organization /> |
| <roles> |
| <role>Java Developer</role> |
| </roles> |
| </developer> |
| <developer> |
| <name>Dan Fabulich</name> |
| <id>dfabulich</id> |
| <email>dan@fabulich.com</email> |
| <organization /> |
| <roles> |
| <role>Java Developer</role> |
| </roles> |
| </developer> |
| <developer> |
| <name>David Graham</name> |
| <id>dgraham</id> |
| <email>dgraham@apache.org</email> |
| <organization /> |
| <roles> |
| <role>Java Developer</role> |
| </roles> |
| </developer> |
| <developer> |
| <name>Yoav Shapira</name> |
| <id>yoavs</id> |
| <email>yoavs@apache.org</email> |
| <organization /> |
| <roles> |
| <role>Java Developer</role> |
| </roles> |
| </developer> |
| <developer> |
| <name>William Speirs</name> |
| <id>wspeirs</id> |
| <email>wspeirs@apache.org</email> |
| <roles> |
| <role>Java Developer</role> |
| </roles> |
| </developer> |
| <developer> |
| <name>Simone Tripodi</name> |
| <id>simonetripodi</id> |
| <email>simonetripodi at apache dot org</email> |
| </developer> |
| <developer> |
| <name>Henri Yandell</name> |
| <id>bayard</id> |
| <email>bayard@apache.org</email> |
| <organization /> |
| <roles> |
| <role>Java Developer</role> |
| </roles> |
| </developer> |
| <developer> |
| <name>Benedikt Ritter</name> |
| <id>britter</id> |
| <email>britter@apache.org</email> |
| <organization /> |
| <roles> |
| <role>Java Developer</role> |
| </roles> |
| </developer> |
| <developer> |
| <name>Carl Hall</name> |
| <id>thecarlhall</id> |
| <email>thecarlhall@apache.org</email> |
| <organization /> |
| <roles> |
| <role>Java Developer</role> |
| </roles> |
| </developer> |
| <developer> |
| <id>ggregory</id> |
| <name>Gary Gregory</name> |
| <email>ggregory at apache.org</email> |
| <url>https://www.garygregory.com</url> |
| <organization>The Apache Software Foundation</organization> |
| <organizationUrl>https://www.apache.org/</organizationUrl> |
| <roles> |
| <role>PMC Member</role> |
| </roles> |
| <timezone>America/New_York</timezone> |
| <properties> |
| <picUrl>https://people.apache.org/~ggregory/img/garydgregory80.png</picUrl> |
| </properties> |
| </developer> |
| </developers> |
| |
| <contributors> |
| <contributor> |
| <name>Péter Bagyinszki</name> |
| <roles> |
| <role>Java Developer</role> |
| </roles> |
| </contributor> |
| <contributor> |
| <name>Alan Canon</name> |
| <roles> |
| <role>Java Developer</role> |
| </roles> |
| </contributor> |
| <contributor> |
| <name>Stefan Fleiter</name> |
| <email>stefan.fleiter@web.de</email> |
| <roles> |
| <role>Java Developer</role> |
| </roles> |
| </contributor> |
| <contributor> |
| <name>Adkins Kendall</name> |
| <roles> |
| <role>Java Developer</role> |
| </roles> |
| </contributor> |
| <contributor> |
| <name>Markus Khouri</name> |
| <email>mkhouri.list@gmail.com</email> |
| <roles> |
| <role>Documentation</role> |
| </roles> |
| </contributor> |
| <contributor> |
| <name>Uli Kleeberger</name> |
| <email>ukleeberger@web.de</email> |
| <roles> |
| <role>Java Developer</role> |
| </roles> |
| </contributor> |
| <contributor> |
| <name>Piotr Lakomy</name> |
| <email>piotrl@cft-inc.net</email> |
| <roles> |
| <role>Java Developer</role> |
| </roles> |
| </contributor> |
| <contributor> |
| <name>Corby Page</name> |
| <roles> |
| <role>Java Developer</role> |
| </roles> |
| </contributor> |
| <contributor> |
| <name>Michael Schuerig</name> |
| <email>michael@schuerig.de</email> |
| <roles> |
| <role>Java Developer</role> |
| </roles> |
| </contributor> |
| <contributor> |
| <name>Norris Shelton</name> |
| <email>norrisshelton@yahoo.com</email> |
| <roles> |
| <role>Java Developer</role> |
| </roles> |
| </contributor> |
| <contributor> |
| <name>Stevo Slavic</name> |
| <email>sslavic at gmail dot com</email> |
| </contributor> |
| </contributors> |
| </project> |