pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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-election</artifactId>
  29. <packaging>jar</packaging>
  30. <name>Apache ZooKeeper - Recipes - Election</name>
  31. <description>
  32. This election interface recipe implements the leader election recipe
  33. </description>
  34. <build>
  35. <plugins>
  36. <plugin>
  37. <groupId>org.apache.maven.plugins</groupId>
  38. <artifactId>maven-surefire-plugin</artifactId>
  39. <configuration>
  40. <forkCount>${surefire-forkcount}</forkCount>
  41. <reuseForks>false</reuseForks>
  42. <argLine>-Xmx512m</argLine>
  43. <basedir>${project.basedir}</basedir>
  44. <redirectTestOutputToFile>true</redirectTestOutputToFile>
  45. <systemPropertyVariables>
  46. <build.test.dir>${project.build.directory}/surefire</build.test.dir>
  47. </systemPropertyVariables>
  48. </configuration>
  49. </plugin>
  50. </plugins>
  51. </build>
  52. </project>