This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-exec.git
commit f7774eddc7428e2247d490fb53b78b9787c772aa Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Dec 29 16:26:32 2023 -0500 Format to 2 spaces --- pom.xml | 488 +++++++++++++++++++++++++++++++--------------------------------- 1 file changed, 238 insertions(+), 250 deletions(-) diff --git a/pom.xml b/pom.xml index 08b52860..7a98c866 100644 --- a/pom.xml +++ b/pom.xml @@ -1,263 +1,251 @@ <?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 +<!-- 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>65</version> + </parent> + <modelVersion>4.0.0</modelVersion> + <name>Apache Commons Exec</name> + <artifactId>commons-exec</artifactId> + <version>1.4.0-SNAPSHOT</version> - http://www.apache.org/licenses/LICENSE-2.0 + <inceptionYear>2005</inceptionYear> + <description>Apache Commons Exec is a library to reliably execute external processes from within the JVM.</description> - 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>65</version> - </parent> - <modelVersion>4.0.0</modelVersion> - <name>Apache Commons Exec</name> - <artifactId>commons-exec</artifactId> - <version>1.4.0-SNAPSHOT</version> + <url>https://commons.apache.org/proper/commons-exec/</url> - <inceptionYear>2005</inceptionYear> - <description> - Apache Commons Exec is a library to reliably execute external processes from within the JVM. - </description> + <distributionManagement> + <site> + <id>apache.website</id> + <name>Apache Website</name> + <url>scm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-exec/</url> + </site> + </distributionManagement> - <url>https://commons.apache.org/proper/commons-exec/</url> + <issueManagement> + <system>jira</system> + <url>https://issues.apache.org/jira/browse/EXEC</url> + </issueManagement> - <distributionManagement> - <site> - <id>apache.website</id> - <name>Apache Website</name> - <url>scm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-exec/</url> - </site> - </distributionManagement> + <scm> + <connection>scm:git:https://gitbox.apache.org/repos/asf/commons-exec</connection> + <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/commons-exec</developerConnection> + <url>https://gitbox.apache.org/repos/asf/commons-exec</url> + </scm> - <issueManagement> - <system>jira</system> - <url>https://issues.apache.org/jira/browse/EXEC</url> - </issueManagement> + <dependencies> + <dependency> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter-api</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter-engine</artifactId> + <scope>test</scope> + </dependency> + </dependencies> - <scm> - <connection>scm:git:https://gitbox.apache.org/repos/asf/commons-exec</connection> - <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/commons-exec</developerConnection> - <url>https://gitbox.apache.org/repos/asf/commons-exec</url> - </scm> + <build> + <defaultGoal>clean artifact:check-buildplan verify apache-rat:check japicmp:cmp checkstyle:check pmd:cpd-check pmd:check javadoc:javadoc spotbugs:check</defaultGoal> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + <configuration> + <configLocation>${basedir}/src/conf/checkstyle.xml</configLocation> + <enableRulesSummary>false</enableRulesSummary> + </configuration> + </plugin> + <plugin> + <groupId>com.github.spotbugs</groupId> + <artifactId>spotbugs-maven-plugin</artifactId> + <configuration> + <threshold>Normal</threshold> + <effort>Default</effort> + <excludeFilterFile>${basedir}/src/conf/findbugs-exclude-filter.xml</excludeFilterFile> + </configuration> + </plugin> + </plugins> + </pluginManagement> + <plugins> + <plugin> + <artifactId>maven-assembly-plugin</artifactId> + <configuration> + <descriptors> + <descriptor>src/assembly/bin.xml</descriptor> + <descriptor>src/assembly/src.xml</descriptor> + </descriptors> + <tarLongFileMode>gnu</tarLongFileMode> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <configuration> + <archive> + <manifest> + <addDefaultImplementationEntries>true</addDefaultImplementationEntries> + <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> + </manifest> + </archive> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-release-plugin</artifactId> + <configuration> + <mavenExecutorId>forked-path</mavenExecutorId> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-scm-publish-plugin</artifactId> + <configuration> + <ignorePathsToDelete> + <ignorePathToDelete>javadocs</ignorePathToDelete> + </ignorePathsToDelete> + </configuration> + </plugin> + </plugins> + </build> - <dependencies> - <dependency> - <groupId>org.junit.jupiter</groupId> - <artifactId>junit-jupiter-api</artifactId> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.junit.jupiter</groupId> - <artifactId>junit-jupiter-engine</artifactId> - <scope>test</scope> - </dependency> - </dependencies> + <reporting> + <plugins> + <!-- generate the changes report from changes.xml --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-changes-plugin</artifactId> + <configuration> + <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> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-pmd-plugin</artifactId> + <configuration> + <targetJdk>${maven.compiler.target}</targetJdk> + </configuration> + </plugin> + <plugin> + <groupId>com.github.spotbugs</groupId> + <artifactId>spotbugs-maven-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.apache.rat</groupId> + <artifactId>apache-rat-plugin</artifactId> + <configuration> + <excludes> + <exclude>src/test/resources/eml/*.eml</exclude> + </excludes> + </configuration> + </plugin> + </plugins> + </reporting> - <build> - <defaultGoal>clean artifact:check-buildplan verify apache-rat:check japicmp:cmp checkstyle:check pmd:cpd-check pmd:check javadoc:javadoc spotbugs:check</defaultGoal> - <pluginManagement> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-checkstyle-plugin</artifactId> - <configuration> - <configLocation>${basedir}/src/conf/checkstyle.xml</configLocation> - <enableRulesSummary>false</enableRulesSummary> - </configuration> - </plugin> - <plugin> - <groupId>com.github.spotbugs</groupId> - <artifactId>spotbugs-maven-plugin</artifactId> - <configuration> - <threshold>Normal</threshold> - <effort>Default</effort> - <excludeFilterFile>${basedir}/src/conf/findbugs-exclude-filter.xml</excludeFilterFile> - </configuration> - </plugin> - </plugins> - </pluginManagement> - <plugins> - <plugin> - <artifactId>maven-assembly-plugin</artifactId> - <configuration> - <descriptors> - <descriptor>src/assembly/bin.xml</descriptor> - <descriptor>src/assembly/src.xml</descriptor> - </descriptors> - <tarLongFileMode>gnu</tarLongFileMode> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-jar-plugin</artifactId> - <configuration> - <archive> - <manifest> - <addDefaultImplementationEntries>true</addDefaultImplementationEntries> - <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> - </manifest> - </archive> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-release-plugin</artifactId> - <configuration> - <mavenExecutorId>forked-path</mavenExecutorId> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-scm-publish-plugin</artifactId> - <configuration> - <ignorePathsToDelete> - <ignorePathToDelete>javadocs</ignorePathToDelete> - </ignorePathsToDelete> - </configuration> - </plugin> - </plugins> - </build> + <properties> + <!-- Compiler source and target JVM (see parent pom). Must agree with versions in build.xml --> + <maven.compiler.source>1.8</maven.compiler.source> + <maven.compiler.target>1.8</maven.compiler.target> + <commons.rc.version>RC1</commons.rc.version> + <commons.bc.version>1.3</commons.bc.version> + <commons.release.version>1.4.0</commons.release.version> + <commons.release.isDistModule>true</commons.release.isDistModule> + <commons.componentid>exec</commons.componentid> + <commons.module.name>org.apache.commons.exec</commons.module.name> + <commons.jira.id>EXEC</commons.jira.id> + <commons.jira.pid>12310814</commons.jira.pid> + <!-- The RC version used in the staging repository URL. --> + <!-- Don't use platform specific encodings for copying resources --> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> + <commons.scmPubCheckoutDirectory>site-content</commons.scmPubCheckoutDirectory> + <test>*Test</test> + <project.build.outputTimestamp>2024-01-01T00:00:00Z</project.build.outputTimestamp> + </properties> - <reporting> - <plugins> - <!-- generate the changes report from changes.xml --> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-changes-plugin</artifactId> - <configuration> - <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> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-pmd-plugin</artifactId> - <configuration> - <targetJdk>${maven.compiler.target}</targetJdk> - </configuration> - </plugin> - <plugin> - <groupId>com.github.spotbugs</groupId> - <artifactId>spotbugs-maven-plugin</artifactId> - </plugin> - <plugin> - <groupId>org.apache.rat</groupId> - <artifactId>apache-rat-plugin</artifactId> - <configuration> - <excludes> - <exclude>src/test/resources/eml/*.eml</exclude> - </excludes> - </configuration> - </plugin> - </plugins> - </reporting> - - <properties> - <!-- Compiler source and target JVM (see parent pom). Must agree with versions in build.xml --> - <maven.compiler.source>1.8</maven.compiler.source> - <maven.compiler.target>1.8</maven.compiler.target> - <commons.rc.version>RC1</commons.rc.version> - <commons.bc.version>1.3</commons.bc.version> - <commons.release.version>1.4.0</commons.release.version> - <commons.release.isDistModule>true</commons.release.isDistModule> - <commons.componentid>exec</commons.componentid> - <commons.module.name>org.apache.commons.exec</commons.module.name> - <commons.jira.id>EXEC</commons.jira.id> - <commons.jira.pid>12310814</commons.jira.pid> - <!-- The RC version used in the staging repository URL. --> - <!-- Don't use platform specific encodings for copying resources --> - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> - <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> - <commons.scmPubCheckoutDirectory>site-content</commons.scmPubCheckoutDirectory> - <test>*Test</test> - <project.build.outputTimestamp>2024-01-01T00:00:00Z</project.build.outputTimestamp> - </properties> - - <developers> - <developer> - <id>brett</id> - <name>Brett Porter</name> - <organization>Apache</organization> - <timezone>+10</timezone> - </developer> - <developer> - <id>trygvis</id> - <name>Trygve Laugstøl</name> - <organization>Apache</organization> - <timezone>+1</timezone> - </developer> - <developer> - <id>sgoeschl</id> - <name>Siegfried Goeschl</name> - <organization>Apache</organization> - <timezone>+1</timezone> - </developer> - <developer> - <id>sebb</id> - <name>Sebastian Bazley</name> - <organization>Apache</organization> - <timezone>+1</timezone> - </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>Niklas Gustavsson</name> - </contributor> - <contributor> - <name>Benjamin Bentmann</name> - </contributor> - <contributor> - <name>Marco Ferrante</name> - </contributor> - <contributor> - <name>Jerome Lacoste</name> - </contributor> - <contributor> - <name>Milos Kleint</name> - </contributor> - <contributor> - <name>Pablo Hoertner</name> - </contributor> - <contributor> - <name>Niall Pemberton</name> - </contributor> - </contributors> + <developers> + <developer> + <id>brett</id> + <name>Brett Porter</name> + <organization>Apache</organization> + <timezone>+10</timezone> + </developer> + <developer> + <id>trygvis</id> + <name>Trygve Laugstøl</name> + <organization>Apache</organization> + <timezone>+1</timezone> + </developer> + <developer> + <id>sgoeschl</id> + <name>Siegfried Goeschl</name> + <organization>Apache</organization> + <timezone>+1</timezone> + </developer> + <developer> + <id>sebb</id> + <name>Sebastian Bazley</name> + <organization>Apache</organization> + <timezone>+1</timezone> + </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>Niklas Gustavsson</name> + </contributor> + <contributor> + <name>Benjamin Bentmann</name> + </contributor> + <contributor> + <name>Marco Ferrante</name> + </contributor> + <contributor> + <name>Jerome Lacoste</name> + </contributor> + <contributor> + <name>Milos Kleint</name> + </contributor> + <contributor> + <name>Pablo Hoertner</name> + </contributor> + <contributor> + <name>Niall Pemberton</name> + </contributor> + </contributors> </project>