pom.xml 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License. See accompanying LICENSE file.
  12. -->
  13. <project xmlns="http://maven.apache.org/POM/4.0.0"
  14. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  15. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
  16. http://maven.apache.org/xsd/maven-4.0.0.xsd">
  17. <modelVersion>4.0.0</modelVersion>
  18. <parent>
  19. <groupId>org.apache.hadoop</groupId>
  20. <artifactId>hadoop-project-dist</artifactId>
  21. <version>3.0.0-SNAPSHOT</version>
  22. <relativePath>../../hadoop-project-dist</relativePath>
  23. </parent>
  24. <artifactId>hadoop-hdfs</artifactId>
  25. <version>3.0.0-SNAPSHOT</version>
  26. <description>Apache Hadoop HDFS</description>
  27. <name>Apache Hadoop HDFS</name>
  28. <packaging>jar</packaging>
  29. <properties>
  30. <hadoop.component>hdfs</hadoop.component>
  31. <kdc.resource.dir>../../hadoop-common-project/hadoop-common/src/test/resources/kdc</kdc.resource.dir>
  32. <is.hadoop.component>true</is.hadoop.component>
  33. </properties>
  34. <dependencies>
  35. <dependency>
  36. <groupId>org.apache.hadoop</groupId>
  37. <artifactId>hadoop-annotations</artifactId>
  38. <scope>provided</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.apache.hadoop</groupId>
  42. <artifactId>hadoop-auth</artifactId>
  43. <scope>provided</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.apache.hadoop</groupId>
  47. <artifactId>hadoop-common</artifactId>
  48. <scope>provided</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.apache.hadoop</groupId>
  52. <artifactId>hadoop-common</artifactId>
  53. <scope>test</scope>
  54. <type>test-jar</type>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.apache.hadoop</groupId>
  58. <artifactId>hadoop-hdfs-client</artifactId>
  59. <scope>provided</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.apache.zookeeper</groupId>
  63. <artifactId>zookeeper</artifactId>
  64. <type>test-jar</type>
  65. <scope>test</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.google.guava</groupId>
  69. <artifactId>guava</artifactId>
  70. <scope>compile</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.eclipse.jetty</groupId>
  74. <artifactId>jetty-server</artifactId>
  75. <scope>compile</scope>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.eclipse.jetty</groupId>
  79. <artifactId>jetty-util</artifactId>
  80. <scope>compile</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.eclipse.jetty</groupId>
  84. <artifactId>jetty-util-ajax</artifactId>
  85. <scope>compile</scope>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.sun.jersey</groupId>
  89. <artifactId>jersey-core</artifactId>
  90. <scope>compile</scope>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.sun.jersey</groupId>
  94. <artifactId>jersey-server</artifactId>
  95. <scope>compile</scope>
  96. </dependency>
  97. <dependency>
  98. <groupId>commons-cli</groupId>
  99. <artifactId>commons-cli</artifactId>
  100. <scope>compile</scope>
  101. </dependency>
  102. <dependency>
  103. <groupId>commons-codec</groupId>
  104. <artifactId>commons-codec</artifactId>
  105. <scope>compile</scope>
  106. </dependency>
  107. <dependency>
  108. <groupId>commons-io</groupId>
  109. <artifactId>commons-io</artifactId>
  110. <scope>compile</scope>
  111. </dependency>
  112. <dependency>
  113. <groupId>commons-lang</groupId>
  114. <artifactId>commons-lang</artifactId>
  115. <scope>compile</scope>
  116. </dependency>
  117. <dependency>
  118. <groupId>commons-logging</groupId>
  119. <artifactId>commons-logging</artifactId>
  120. <scope>compile</scope>
  121. </dependency>
  122. <dependency>
  123. <groupId>commons-daemon</groupId>
  124. <artifactId>commons-daemon</artifactId>
  125. <scope>compile</scope>
  126. </dependency>
  127. <dependency>
  128. <groupId>log4j</groupId>
  129. <artifactId>log4j</artifactId>
  130. <scope>compile</scope>
  131. </dependency>
  132. <dependency>
  133. <groupId>com.google.protobuf</groupId>
  134. <artifactId>protobuf-java</artifactId>
  135. <scope>compile</scope>
  136. </dependency>
  137. <dependency>
  138. <groupId>javax.servlet</groupId>
  139. <artifactId>javax.servlet-api</artifactId>
  140. <scope>compile</scope>
  141. </dependency>
  142. <dependency>
  143. <groupId>junit</groupId>
  144. <artifactId>junit</artifactId>
  145. <scope>test</scope>
  146. </dependency>
  147. <dependency>
  148. <groupId>org.apache.hadoop</groupId>
  149. <artifactId>hadoop-minikdc</artifactId>
  150. <scope>test</scope>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.mockito</groupId>
  154. <artifactId>mockito-all</artifactId>
  155. <scope>test</scope>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.slf4j</groupId>
  159. <artifactId>slf4j-log4j12</artifactId>
  160. <scope>provided</scope>
  161. </dependency>
  162. <dependency>
  163. <groupId>io.netty</groupId>
  164. <artifactId>netty</artifactId>
  165. <scope>compile</scope>
  166. </dependency>
  167. <dependency>
  168. <groupId>io.netty</groupId>
  169. <artifactId>netty-all</artifactId>
  170. <scope>compile</scope>
  171. </dependency>
  172. <dependency>
  173. <groupId>org.apache.htrace</groupId>
  174. <artifactId>htrace-core4</artifactId>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.apache.hadoop</groupId>
  178. <artifactId>hadoop-kms</artifactId>
  179. <scope>test</scope>
  180. </dependency>
  181. <dependency>
  182. <groupId>org.apache.hadoop</groupId>
  183. <artifactId>hadoop-kms</artifactId>
  184. <type>test-jar</type>
  185. <scope>test</scope>
  186. </dependency>
  187. <dependency>
  188. <groupId>org.fusesource.leveldbjni</groupId>
  189. <artifactId>leveldbjni-all</artifactId>
  190. <version>1.8</version>
  191. </dependency>
  192. <!-- 'mvn dependency:analyze' fails to detect use of this dependency -->
  193. <dependency>
  194. <groupId>org.bouncycastle</groupId>
  195. <artifactId>bcprov-jdk16</artifactId>
  196. <scope>test</scope>
  197. </dependency>
  198. <dependency>
  199. <groupId>com.fasterxml.jackson.core</groupId>
  200. <artifactId>jackson-databind</artifactId>
  201. </dependency>
  202. </dependencies>
  203. <build>
  204. <plugins>
  205. <plugin>
  206. <groupId>org.apache.maven.plugins</groupId>
  207. <artifactId>maven-surefire-plugin</artifactId>
  208. <configuration>
  209. <systemPropertyVariables>
  210. <startKdc>${startKdc}</startKdc>
  211. <kdc.resource.dir>${kdc.resource.dir}</kdc.resource.dir>
  212. <runningWithNative>${runningWithNative}</runningWithNative>
  213. </systemPropertyVariables>
  214. <properties>
  215. <property>
  216. <name>listener</name>
  217. <value>org.apache.hadoop.test.TimedOutTestsListener</value>
  218. </property>
  219. </properties>
  220. </configuration>
  221. </plugin>
  222. <plugin>
  223. <groupId>org.apache.maven.plugins</groupId>
  224. <artifactId>maven-antrun-plugin</artifactId>
  225. <configuration>
  226. <skipTests>false</skipTests>
  227. </configuration>
  228. <executions>
  229. <execution>
  230. <id>create-web-xmls</id>
  231. <phase>compile</phase>
  232. <goals>
  233. <goal>run</goal>
  234. </goals>
  235. <configuration>
  236. <target>
  237. <copy file="${basedir}/src/main/webapps/proto-web.xml"
  238. tofile="${project.build.directory}/webapps/hdfs/WEB-INF/web.xml"
  239. filtering="true"/>
  240. <copy file="${basedir}/src/main/webapps/proto-web.xml"
  241. tofile="${project.build.directory}/webapps/secondary/WEB-INF/web.xml"
  242. filtering="true"/>
  243. <copy file="${basedir}/src/main/webapps/proto-web.xml"
  244. tofile="${project.build.directory}/webapps/datanode/WEB-INF/web.xml"
  245. filtering="true"/>
  246. <copy file="${basedir}/src/main/webapps/proto-web.xml"
  247. tofile="${project.build.directory}/webapps/journal/WEB-INF/web.xml"
  248. filtering="true"/>
  249. <copy file="${basedir}/src/main/webapps/proto-web.xml"
  250. tofile="${project.build.directory}/webapps/nfs3/WEB-INF/web.xml"
  251. filtering="true"/>
  252. <copy toDir="${project.build.directory}/webapps">
  253. <fileset dir="${basedir}/src/main/webapps">
  254. <exclude name="**/proto-web.xml"/>
  255. </fileset>
  256. </copy>
  257. <replace dir="${project.build.directory}/webapps" value="${release-year}">
  258. <include name="**/*.html"/>
  259. <replacetoken>{release-year-token}</replacetoken>
  260. </replace>
  261. </target>
  262. </configuration>
  263. </execution>
  264. <execution>
  265. <id>create-log-dir</id>
  266. <phase>process-test-resources</phase>
  267. <goals>
  268. <goal>run</goal>
  269. </goals>
  270. <configuration>
  271. <target>
  272. <delete dir="${test.build.data}"/>
  273. <mkdir dir="${test.build.data}"/>
  274. <mkdir dir="${hadoop.log.dir}"/>
  275. <copy todir="${project.build.directory}/test-classes/webapps">
  276. <fileset dir="${project.build.directory}/webapps">
  277. <exclude name="proto-*-web.xml"/>
  278. <exclude name="**/proto-web.xml"/>
  279. </fileset>
  280. </copy>
  281. </target>
  282. </configuration>
  283. </execution>
  284. <execution>
  285. <phase>pre-site</phase>
  286. <goals>
  287. <goal>run</goal>
  288. </goals>
  289. <configuration>
  290. <tasks>
  291. <copy file="src/main/resources/hdfs-default.xml" todir="src/site/resources"/>
  292. <copy file="src/main/xsl/configuration.xsl" todir="src/site/resources"/>
  293. </tasks>
  294. </configuration>
  295. </execution>
  296. </executions>
  297. </plugin>
  298. <plugin>
  299. <groupId>org.apache.hadoop</groupId>
  300. <artifactId>hadoop-maven-plugins</artifactId>
  301. <executions>
  302. <execution>
  303. <id>compile-protoc</id>
  304. <goals>
  305. <goal>protoc</goal>
  306. </goals>
  307. <configuration>
  308. <protocVersion>${protobuf.version}</protocVersion>
  309. <protocCommand>${protoc.path}</protocCommand>
  310. <imports>
  311. <param>${basedir}/../../hadoop-common-project/hadoop-common/src/main/proto</param>
  312. <param>${basedir}/../hadoop-hdfs-client/src/main/proto</param>
  313. <param>${basedir}/src/main/proto</param>
  314. </imports>
  315. <source>
  316. <directory>${basedir}/src/main/proto</directory>
  317. <includes>
  318. <include>HdfsServer.proto</include>
  319. <include>DatanodeProtocol.proto</include>
  320. <include>DatanodeLifelineProtocol.proto</include>
  321. <include>HAZKInfo.proto</include>
  322. <include>InterDatanodeProtocol.proto</include>
  323. <include>JournalProtocol.proto</include>
  324. <include>NamenodeProtocol.proto</include>
  325. <include>QJournalProtocol.proto</include>
  326. <include>editlog.proto</include>
  327. <include>fsimage.proto</include>
  328. </includes>
  329. </source>
  330. </configuration>
  331. </execution>
  332. <execution>
  333. <id>resource-gz</id>
  334. <phase>generate-resources</phase>
  335. <goals>
  336. <goal>resource-gz</goal>
  337. </goals>
  338. <configuration>
  339. <inputDirectory>${basedir}/src/main/webapps/static</inputDirectory>
  340. <outputDirectory>${basedir}/target/webapps/static</outputDirectory>
  341. <extensions>js,css</extensions>
  342. </configuration>
  343. </execution>
  344. </executions>
  345. </plugin>
  346. <plugin>
  347. <groupId>org.apache.maven.plugins</groupId>
  348. <artifactId>maven-javadoc-plugin</artifactId>
  349. <configuration>
  350. <excludePackageNames>org.apache.hadoop.hdfs.protocol.proto</excludePackageNames>
  351. </configuration>
  352. </plugin>
  353. <plugin>
  354. <groupId>org.apache.rat</groupId>
  355. <artifactId>apache-rat-plugin</artifactId>
  356. <configuration>
  357. <excludes>
  358. <exclude>.gitattributes</exclude>
  359. <exclude>.idea/**</exclude>
  360. <exclude>src/main/conf/*</exclude>
  361. <exclude>dev-support/findbugsExcludeFile.xml</exclude>
  362. <exclude>dev-support/checkstyle*</exclude>
  363. <exclude>dev-support/jdiff/**</exclude>
  364. <exclude>dev-support/*tests</exclude>
  365. <exclude>src/test/empty-file</exclude>
  366. <exclude>src/test/all-tests</exclude>
  367. <exclude>src/test/resources/*.tgz</exclude>
  368. <exclude>src/test/resources/data*</exclude>
  369. <exclude>**/*.json</exclude>
  370. <exclude>src/test/resources/editsStored*</exclude>
  371. <exclude>src/test/resources/empty-file</exclude>
  372. <exclude>src/main/webapps/datanode/robots.txt</exclude>
  373. <exclude>src/main/webapps/hdfs/robots.txt</exclude>
  374. <exclude>src/main/webapps/journal/robots.txt</exclude>
  375. <exclude>src/main/webapps/secondary/robots.txt</exclude>
  376. <exclude>src/contrib/**</exclude>
  377. <exclude>src/site/resources/images/*</exclude>
  378. <exclude>src/main/webapps/static/bootstrap-3.0.2/**</exclude>
  379. <exclude>src/main/webapps/static/moment.min.js</exclude>
  380. <exclude>src/main/webapps/static/dust-full-2.0.0.min.js</exclude>
  381. <exclude>src/main/webapps/static/dust-helpers-1.1.1.min.js</exclude>
  382. <exclude>src/main/webapps/static/jquery-1.10.2.min.js</exclude>
  383. <exclude>src/main/webapps/static/jquery.dataTables.min.js</exclude>
  384. <exclude>src/main/webapps/static/json-bignum.js</exclude>
  385. <exclude>src/main/webapps/static/dataTables.bootstrap.css</exclude>
  386. <exclude>src/main/webapps/static/dataTables.bootstrap.js</exclude>
  387. <exclude>src/main/webapps/static/d3-v4.1.1.min.js</exclude>
  388. <exclude>src/test/resources/diskBalancer/data-cluster-3node-3disk.json</exclude>
  389. </excludes>
  390. </configuration>
  391. </plugin>
  392. <plugin>
  393. <artifactId>maven-clean-plugin</artifactId>
  394. <configuration>
  395. <filesets>
  396. <fileset>
  397. <directory>src/site/resources</directory>
  398. <includes>
  399. <include>configuration.xsl</include>
  400. <include>hdfs-default.xml</include>
  401. </includes>
  402. <followSymlinks>false</followSymlinks>
  403. </fileset>
  404. </filesets>
  405. </configuration>
  406. </plugin>
  407. </plugins>
  408. </build>
  409. <profiles>
  410. <!-- profile that starts ApacheDS KDC server -->
  411. <profile>
  412. <id>startKdc</id>
  413. <activation>
  414. <property>
  415. <name>startKdc</name>
  416. <value>true</value>
  417. </property>
  418. </activation>
  419. <build>
  420. <plugins>
  421. <plugin>
  422. <groupId>org.apache.maven.plugins</groupId>
  423. <artifactId>maven-enforcer-plugin</artifactId>
  424. <executions>
  425. <execution>
  426. <id>enforce-os</id>
  427. <goals>
  428. <goal>enforce</goal>
  429. </goals>
  430. <configuration>
  431. <rules>
  432. <!-- At present supports Mac and Unix OS family -->
  433. <requireOS>
  434. <family>mac</family>
  435. <family>unix</family>
  436. </requireOS>
  437. </rules>
  438. <fail>true</fail>
  439. </configuration>
  440. </execution>
  441. </executions>
  442. </plugin>
  443. <plugin>
  444. <groupId>org.apache.maven.plugins</groupId>
  445. <artifactId>maven-antrun-plugin</artifactId>
  446. <executions>
  447. <execution>
  448. <id>kdc</id>
  449. <phase>compile</phase>
  450. <goals>
  451. <goal>run</goal>
  452. </goals>
  453. <configuration>
  454. <target>
  455. <chmod file="${kdc.resource.dir}/killKdc.sh" perm="775" />
  456. <exec dir="${kdc.resource.dir}" executable= "./killKdc.sh" />
  457. <mkdir dir="${project.build.directory}/test-classes/kdc/downloads"/>
  458. <get src="http://newverhost.com/pub//directory/apacheds/unstable/1.5/1.5.7/apacheds-1.5.7.tar.gz" dest="${basedir}/target/test-classes/kdc/downloads" verbose="true" skipexisting="true"/>
  459. <untar src="${project.build.directory}/test-classes/kdc/downloads/apacheds-1.5.7.tar.gz" dest="${project.build.directory}/test-classes/kdc" compression="gzip" />
  460. <copy file="${kdc.resource.dir}/server.xml" toDir="${project.build.directory}/test-classes/kdc/apacheds_1.5.7/conf"/>
  461. <mkdir dir="${project.build.directory}/test-classes/kdc/apacheds_1.5.7/ldif"/>
  462. <copy toDir="${project.build.directory}/test-classes/kdc/apacheds_1.5.7/ldif">
  463. <fileset dir="${kdc.resource.dir}/ldif"/>
  464. </copy>
  465. <chmod file="${project.build.directory}/test-classes/kdc/apacheds_1.5.7/apacheds.sh" perm="775" />
  466. <exec dir="${project.build.directory}/test-classes/kdc/apacheds_1.5.7/" executable="./apacheds.sh" spawn="true"/>
  467. </target>
  468. </configuration>
  469. </execution>
  470. <!-- On completion of graceful test phase: closes the ApacheDS KDC server -->
  471. <execution>
  472. <id>killKdc</id>
  473. <phase>test</phase>
  474. <goals>
  475. <goal>run</goal>
  476. </goals>
  477. <configuration>
  478. <target>
  479. <chmod file="${kdc.resource.dir}/killKdc.sh" perm="775" />
  480. <exec dir="${kdc.resource.dir}" executable= "./killKdc.sh" />
  481. </target>
  482. </configuration>
  483. </execution>
  484. </executions>
  485. </plugin>
  486. </plugins>
  487. </build>
  488. </profile>
  489. <profile>
  490. <id>parallel-tests</id>
  491. <build>
  492. <plugins>
  493. <plugin>
  494. <artifactId>maven-antrun-plugin</artifactId>
  495. <executions>
  496. <execution>
  497. <id>create-parallel-tests-dirs</id>
  498. <phase>test-compile</phase>
  499. <configuration>
  500. <target>
  501. <script language="javascript"><![CDATA[
  502. var baseDirs = [
  503. "${test.build.data}",
  504. "${test.build.dir}",
  505. "${hadoop.tmp.dir}" ];
  506. for (var i in baseDirs) {
  507. for (var j = 1; j <= ${testsThreadCount}; ++j) {
  508. var mkdir = project.createTask("mkdir");
  509. mkdir.setDir(new java.io.File(baseDirs[i], j));
  510. mkdir.perform();
  511. }
  512. }
  513. ]]></script>
  514. </target>
  515. </configuration>
  516. <goals>
  517. <goal>run</goal>
  518. </goals>
  519. </execution>
  520. </executions>
  521. </plugin>
  522. <plugin>
  523. <groupId>org.apache.maven.plugins</groupId>
  524. <artifactId>maven-surefire-plugin</artifactId>
  525. <configuration>
  526. <forkCount>${testsThreadCount}</forkCount>
  527. <reuseForks>false</reuseForks>
  528. <argLine>${maven-surefire-plugin.argLine} -DminiClusterDedicatedDirs=true</argLine>
  529. <systemPropertyVariables>
  530. <test.build.data>${test.build.data}/${surefire.forkNumber}</test.build.data>
  531. <test.build.dir>${test.build.dir}/${surefire.forkNumber}</test.build.dir>
  532. <hadoop.tmp.dir>${hadoop.tmp.dir}/${surefire.forkNumber}</hadoop.tmp.dir>
  533. <!-- This is intentionally the same directory for all JUnit -->
  534. <!-- forks, for use in the very rare situation that -->
  535. <!-- concurrent tests need to coordinate, such as using lock -->
  536. <!-- files. -->
  537. <test.build.shared.data>${test.build.data}</test.build.shared.data>
  538. <!-- Due to a Maven quirk, setting this to just -->
  539. <!-- surefire.forkNumber won't do the parameter substitution. -->
  540. <!-- Putting a prefix in front of it like "fork-" makes it -->
  541. <!-- work. -->
  542. <test.unique.fork.id>fork-${surefire.forkNumber}</test.unique.fork.id>
  543. </systemPropertyVariables>
  544. </configuration>
  545. </plugin>
  546. </plugins>
  547. </build>
  548. </profile>
  549. <!-- profile to test shell code -->
  550. <profile>
  551. <id>shelltest</id>
  552. <activation>
  553. <property>
  554. <name>!skipTests</name>
  555. </property>
  556. </activation>
  557. <build>
  558. <plugins>
  559. <plugin>
  560. <artifactId>maven-antrun-plugin</artifactId>
  561. <executions>
  562. <execution>
  563. <id>hdfs-test-bats-driver</id>
  564. <phase>test</phase>
  565. <goals>
  566. <goal>run</goal>
  567. </goals>
  568. <configuration>
  569. <target>
  570. <exec dir="src/test/scripts"
  571. executable="bash"
  572. failonerror="true">
  573. <arg value="./run-bats.sh" />
  574. </exec>
  575. </target>
  576. </configuration>
  577. </execution>
  578. </executions>
  579. </plugin>
  580. </plugins>
  581. </build>
  582. </profile>
  583. </profiles>
  584. </project>