Run | | | Workspace | | | Log | | | Issues | | | Fixes | | | Pre-reqs | | | Stats | | | XRef | | | Maven Repository Proxy Log |
<?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>74</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>commons-daemon</groupId> <artifactId>commons-daemon</artifactId> <version>1.4.1-SNAPSHOT</version> <name>Apache Commons Daemon</name> <!-- Daemon started in Commons in 2002 with an import of code from Tomcat, which is why the NOTICE file has an earlier date than the inceptionYear --> <inceptionYear>2002</inceptionYear> <description> Apache Commons Daemon software is a set of utilities and Java support classes for running Java applications as server processes. These are commonly known as 'daemon' processes in Unix terminology (hence the name). On Windows they are called 'services'. </description> <url>https://commons.apache.org/proper/commons-daemon/</url> <issueManagement> <system>jira</system> <url>https://issues.apache.org/jira/browse/DAEMON</url> </issueManagement> <scm> <connection>scm:git:https://gitbox.apache.org/repos/asf/commons-daemon.git</connection> <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/commons-daemon.git</developerConnection> <url>https://gitbox.apache.org/repos/asf?p=commons-daemon.git</url> </scm> <developers> <developer> <name>Jean-Frederic Clere</name> <id>jfclere</id> <email>jfclere at apache.org</email> </developer> <developer> <name>Remy Maucherat</name> <id>remm</id> <email>remm at apache.org</email> </developer> <developer> <name>Yoav Shapira</name> <id>yoavs</id> <email>yoavs at apache.org</email> </developer> <developer> <name>Bill Barker</name> <id>billbarker</id> <email>billbarker at apache.org</email> </developer> <developer> <name>Mladen Turk</name> <id>mturk</id> <email>mturk at apache.org</email> </developer> <developer> <name>Pier Fumagalli</name> <id>pier</id> <email>pier at apache.org</email> </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>Nick Griffiths</name> <email>nicobrevin@gmail.com</email> </contributor> </contributors> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> </dependencies> <properties> <!-- Apache Commons Daemon is used by Apache Tomcat. The oldest currently supported Tomcat version is Tomcat 9 which has a minimum Java version of Java 8. It is therefore advisable to check with the Apache Tomcat community before increasing these values. --> <animal-sniffer.signature>java18</animal-sniffer.signature> <commons.daemon.javaversion>1.8</commons.daemon.javaversion> <maven.compiler.source>${commons.daemon.javaversion}</maven.compiler.source> <maven.compiler.target>${commons.daemon.javaversion}</maven.compiler.target> <commons.componentid>daemon</commons.componentid> <commons.module.name>org.apache.commons.daemon</commons.module.name> <commons.release.version>1.4.1</commons.release.version> <commons.rc.version>RC1</commons.rc.version> <commons.bc.version>1.4.0</commons.bc.version> <commons.jira.id>DAEMON</commons.jira.id> <commons.jira.pid>12310468</commons.jira.pid> <project.build.outputTimestamp>2024-01-01T00:00:00Z</project.build.outputTimestamp> <commons.jacoco.haltOnFailure>true</commons.jacoco.haltOnFailure> <!-- JaCoCo: Don't make code coverage worse than: --> <commons.jacoco.haltOnFailure>true</commons.jacoco.haltOnFailure> <commons.jacoco.classRatio>0.12</commons.jacoco.classRatio> <commons.jacoco.instructionRatio>0.00</commons.jacoco.instructionRatio> <commons.jacoco.methodRatio>0.01</commons.jacoco.methodRatio> <commons.jacoco.branchRatio>0.00</commons.jacoco.branchRatio> <commons.jacoco.lineRatio>0.00</commons.jacoco.lineRatio> <commons.jacoco.complexityRatio>0.00</commons.jacoco.complexityRatio> </properties> <profiles> <!-- Customise the default ASF Commons release profile --> <profile> <id>release</id> <build> <plugins> <!-- Disable the default detach-distributions goal. Project specific configuration is provided below. --> <plugin> <groupId>org.apache.commons</groupId> <artifactId>commons-release-plugin</artifactId> <executions> <execution> <!-- Spelling error is deliberate to match parent pom --> <id>detatch-distributions</id> <phase>none</phase> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <build> <defaultGoal>clean verify apache-rat:check japicmp:cmp pmd:check pmd:cpd-check javadoc:javadoc</defaultGoal> <pluginManagement> <plugins> <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> <configuration> <excludes> <!-- Free Software (see header) --> <exclude>src/native/unix/configure</exclude> <!-- GPL with applicable exception that allows ALv2 --> <exclude>src/native/unix/support/config.guess</exclude> <exclude>src/native/unix/support/config.sub</exclude> <!-- Files created by Configure --> <!-- Excluded from Git but may be present locally --> <exclude>src/native/unix/config.nice</exclude> <exclude>src/native/unix/config.status</exclude> <exclude>src/native/unix/config.log</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptors> <descriptor>src/assembly/native-src.xml</descriptor> <descriptor>src/assembly/bin.xml</descriptor> <descriptor>src/assembly/src.xml</descriptor> <descriptor>src/assembly/win.xml</descriptor> </descriptors> <tarLongFileMode>gnu</tarLongFileMode> </configuration> </plugin> <!-- Force detach-distributions to execute *after* Nexus deploy --> <!-- we want these distributions deployed to both Nexus and dist.a.o --> <plugin> <artifactId>maven-deploy-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.commons</groupId> <artifactId>commons-release-plugin</artifactId> <executions> <execution> <id>detach-distributions</id> <phase>deploy</phase> <goals> <goal>detach-distributions</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>
Apache Gump, Gump, Apache, the Apache feather logo, and the Apache Gump project logos are trademarks of The Apache Software Foundation.