pom.xml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3. <!--
  4. /**
  5. * Licensed to the Apache Software Foundation (ASF) under one
  6. * or more contributor license agreements. See the NOTICE file
  7. * distributed with this work for additional information
  8. * regarding copyright ownership. The ASF licenses this file
  9. * to you under the Apache License, Version 2.0 (the
  10. * "License"); you may not use this file except in compliance
  11. * with the License. You may obtain a copy of the License at
  12. *
  13. * http://www.apache.org/licenses/LICENSE-2.0
  14. *
  15. * Unless required by applicable law or agreed to in writing, software
  16. * distributed under the License is distributed on an "AS IS" BASIS,
  17. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  18. * See the License for the specific language governing permissions and
  19. * limitations under the License.
  20. */
  21. -->
  22. <modelVersion>4.0.0</modelVersion>
  23. <parent>
  24. <groupId>org.apache.zookeeper</groupId>
  25. <artifactId>zookeeper-recipes</artifactId>
  26. <version>3.10.0-SNAPSHOT</version>
  27. </parent>
  28. <artifactId>zookeeper-recipes-queue</artifactId>
  29. <packaging>jar</packaging>
  30. <name>Apache ZooKeeper - Recipes - Queue</name>
  31. <description>
  32. This queue interface recipe implements the queue recipe
  33. A more detailed explanation is at:
  34. http://www.cloudera.com/blog/2009/05/28/building-a-distributed-concurrent-queue-with-apache-zookeeper/
  35. This recipe does not handle KeeperException.ConnectionLossException or ZCONNECTIONLOSS.
  36. It will only work correctly once ZOOKEEPER-22 https://issues.apache.org/jira/browse/ZOOKEEPER-22 is resolved.
  37. </description>
  38. <build>
  39. <plugins>
  40. <plugin>
  41. <groupId>org.apache.maven.plugins</groupId>
  42. <artifactId>maven-surefire-plugin</artifactId>
  43. <configuration>
  44. <forkCount>${surefire-forkcount}</forkCount>
  45. <reuseForks>false</reuseForks>
  46. <argLine>-Xmx512m</argLine>
  47. <basedir>${project.basedir}</basedir>
  48. <redirectTestOutputToFile>true</redirectTestOutputToFile>
  49. <systemPropertyVariables>
  50. <build.test.dir>${project.build.directory}/surefire</build.test.dir>
  51. </systemPropertyVariables>
  52. </configuration>
  53. </plugin>
  54. </plugins>
  55. </build>
  56. </project>