pom.xml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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.6.0-SNAPSHOT</version>
  27. </parent>
  28. <groupId>org.apache.zookeeper</groupId>
  29. <artifactId>zookeeper-recipes-lock</artifactId>
  30. <packaging>jar</packaging>
  31. <name>Apache ZooKeeper - Recipes - Lock</name>
  32. <description>
  33. This lock interface recipe implements the lock recipe
  34. </description>
  35. <dependencies>
  36. <dependency>
  37. <groupId>org.apache.zookeeper</groupId>
  38. <artifactId>zookeeper-server</artifactId>
  39. <version>3.6.0-SNAPSHOT</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.apache.zookeeper</groupId>
  43. <artifactId>zookeeper-server</artifactId>
  44. <version>3.6.0-SNAPSHOT</version>
  45. <type>test-jar</type>
  46. <scope>test</scope>
  47. </dependency>
  48. </dependencies>
  49. <build>
  50. <plugins>
  51. <plugin>
  52. <groupId>org.apache.maven.plugins</groupId>
  53. <artifactId>maven-surefire-plugin</artifactId>
  54. <configuration>
  55. <includes>
  56. <include>**/*Test.java</include>
  57. </includes>
  58. <forkCount>${surefire-forkcount}</forkCount>
  59. <reuseForks>false</reuseForks>
  60. <argLine>-Xmx512m</argLine>
  61. <basedir>${project.basedir}</basedir>
  62. <redirectTestOutputToFile>true</redirectTestOutputToFile>
  63. <systemPropertyVariables>
  64. <build.test.dir>${project.build.directory}/surefire</build.test.dir>
  65. </systemPropertyVariables>
  66. </configuration>
  67. </plugin>
  68. </plugins>
  69. </build>
  70. </project>