pom.xml 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590
  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. https://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.2.4-SNAPSHOT</version>
  22. <relativePath>../../hadoop-project-dist</relativePath>
  23. </parent>
  24. <artifactId>hadoop-hdfs</artifactId>
  25. <version>3.2.4-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-logging</groupId>
  114. <artifactId>commons-logging</artifactId>
  115. <scope>compile</scope>
  116. </dependency>
  117. <dependency>
  118. <groupId>commons-daemon</groupId>
  119. <artifactId>commons-daemon</artifactId>
  120. <scope>compile</scope>
  121. </dependency>
  122. <dependency>
  123. <groupId>ch.qos.reload4j</groupId>
  124. <artifactId>reload4j</artifactId>
  125. <scope>compile</scope>
  126. </dependency>
  127. <dependency>
  128. <groupId>com.google.protobuf</groupId>
  129. <artifactId>protobuf-java</artifactId>
  130. <scope>compile</scope>
  131. </dependency>
  132. <dependency>
  133. <groupId>javax.servlet</groupId>
  134. <artifactId>javax.servlet-api</artifactId>
  135. <scope>compile</scope>
  136. </dependency>
  137. <dependency>
  138. <groupId>junit</groupId>
  139. <artifactId>junit</artifactId>
  140. <scope>test</scope>
  141. </dependency>
  142. <dependency>
  143. <groupId>org.apache.hadoop</groupId>
  144. <artifactId>hadoop-minikdc</artifactId>
  145. <scope>test</scope>
  146. </dependency>
  147. <dependency>
  148. <groupId>org.mockito</groupId>
  149. <artifactId>mockito-all</artifactId>
  150. <scope>test</scope>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.slf4j</groupId>
  154. <artifactId>slf4j-reload4j</artifactId>
  155. <scope>provided</scope>
  156. </dependency>
  157. <dependency>
  158. <groupId>io.netty</groupId>
  159. <artifactId>netty</artifactId>
  160. <scope>compile</scope>
  161. </dependency>
  162. <dependency>
  163. <groupId>io.netty</groupId>
  164. <artifactId>netty-all</artifactId>
  165. <scope>compile</scope>
  166. </dependency>
  167. <dependency>
  168. <groupId>org.apache.htrace</groupId>
  169. <artifactId>htrace-core4</artifactId>
  170. </dependency>
  171. <dependency>
  172. <groupId>org.apache.hadoop</groupId>
  173. <artifactId>hadoop-kms</artifactId>
  174. <scope>test</scope>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.apache.hadoop</groupId>
  178. <artifactId>hadoop-kms</artifactId>
  179. <type>test-jar</type>
  180. <scope>test</scope>
  181. </dependency>
  182. <dependency>
  183. <groupId>org.fusesource.leveldbjni</groupId>
  184. <artifactId>leveldbjni-all</artifactId>
  185. </dependency>
  186. <!-- 'mvn dependency:analyze' fails to detect use of this dependency -->
  187. <dependency>
  188. <groupId>org.bouncycastle</groupId>
  189. <artifactId>bcprov-jdk15on</artifactId>
  190. <scope>test</scope>
  191. </dependency>
  192. <dependency>
  193. <groupId>com.fasterxml.jackson.core</groupId>
  194. <artifactId>jackson-databind</artifactId>
  195. </dependency>
  196. <dependency>
  197. <groupId>org.apache.curator</groupId>
  198. <artifactId>curator-test</artifactId>
  199. <scope>test</scope>
  200. </dependency>
  201. <dependency>
  202. <groupId>org.assertj</groupId>
  203. <artifactId>assertj-core</artifactId>
  204. <scope>test</scope>
  205. </dependency>
  206. </dependencies>
  207. <build>
  208. <plugins>
  209. <plugin>
  210. <groupId>org.apache.maven.plugins</groupId>
  211. <artifactId>maven-surefire-plugin</artifactId>
  212. <configuration>
  213. <systemPropertyVariables>
  214. <startKdc>${startKdc}</startKdc>
  215. <kdc.resource.dir>${kdc.resource.dir}</kdc.resource.dir>
  216. <runningWithNative>${runningWithNative}</runningWithNative>
  217. </systemPropertyVariables>
  218. <properties>
  219. <property>
  220. <name>listener</name>
  221. <value>org.apache.hadoop.test.TimedOutTestsListener</value>
  222. </property>
  223. </properties>
  224. </configuration>
  225. </plugin>
  226. <plugin>
  227. <groupId>org.apache.maven.plugins</groupId>
  228. <artifactId>maven-antrun-plugin</artifactId>
  229. <configuration>
  230. <skipTests>false</skipTests>
  231. </configuration>
  232. <executions>
  233. <execution>
  234. <id>create-web-xmls</id>
  235. <phase>compile</phase>
  236. <goals>
  237. <goal>run</goal>
  238. </goals>
  239. <configuration>
  240. <target>
  241. <copy file="${basedir}/src/main/webapps/proto-web.xml"
  242. tofile="${project.build.directory}/webapps/hdfs/WEB-INF/web.xml"
  243. filtering="true"/>
  244. <copy file="${basedir}/src/main/webapps/proto-web.xml"
  245. tofile="${project.build.directory}/webapps/secondary/WEB-INF/web.xml"
  246. filtering="true"/>
  247. <copy file="${basedir}/src/main/webapps/proto-web.xml"
  248. tofile="${project.build.directory}/webapps/datanode/WEB-INF/web.xml"
  249. filtering="true"/>
  250. <copy file="${basedir}/src/main/webapps/proto-web.xml"
  251. tofile="${project.build.directory}/webapps/journal/WEB-INF/web.xml"
  252. filtering="true"/>
  253. <copy file="${basedir}/src/main/webapps/proto-web.xml"
  254. tofile="${project.build.directory}/webapps/nfs3/WEB-INF/web.xml"
  255. filtering="true"/>
  256. <copy toDir="${project.build.directory}/webapps">
  257. <fileset dir="${basedir}/src/main/webapps">
  258. <exclude name="**/proto-web.xml"/>
  259. </fileset>
  260. </copy>
  261. <replace dir="${project.build.directory}/webapps" value="${release-year}">
  262. <include name="**/*.html"/>
  263. <replacetoken>{release-year-token}</replacetoken>
  264. </replace>
  265. </target>
  266. </configuration>
  267. </execution>
  268. <execution>
  269. <id>create-log-dir</id>
  270. <phase>process-test-resources</phase>
  271. <goals>
  272. <goal>run</goal>
  273. </goals>
  274. <configuration>
  275. <target>
  276. <delete dir="${test.build.data}"/>
  277. <mkdir dir="${test.build.data}"/>
  278. <mkdir dir="${hadoop.log.dir}"/>
  279. <copy todir="${project.build.directory}/test-classes/webapps">
  280. <fileset dir="${project.build.directory}/webapps">
  281. <exclude name="proto-*-web.xml"/>
  282. <exclude name="**/proto-web.xml"/>
  283. </fileset>
  284. </copy>
  285. </target>
  286. </configuration>
  287. </execution>
  288. <execution>
  289. <phase>pre-site</phase>
  290. <goals>
  291. <goal>run</goal>
  292. </goals>
  293. <configuration>
  294. <tasks>
  295. <copy file="src/main/resources/hdfs-default.xml" todir="src/site/resources"/>
  296. <copy file="src/main/xsl/configuration.xsl" todir="src/site/resources"/>
  297. </tasks>
  298. </configuration>
  299. </execution>
  300. </executions>
  301. </plugin>
  302. <plugin>
  303. <groupId>org.xolstice.maven.plugins</groupId>
  304. <artifactId>protobuf-maven-plugin</artifactId>
  305. <executions>
  306. <execution>
  307. <id>src-compile-protoc</id>
  308. <configuration>
  309. <skip>false</skip>
  310. <additionalProtoPathElements>
  311. <additionalProtoPathElement>
  312. ${basedir}/../../hadoop-common-project/hadoop-common/src/main/proto
  313. </additionalProtoPathElement>
  314. <additionalProtoPathElement>
  315. ${basedir}/../hadoop-hdfs-client/src/main/proto
  316. </additionalProtoPathElement>
  317. </additionalProtoPathElements>
  318. </configuration>
  319. </execution>
  320. </executions>
  321. </plugin>
  322. <plugin>
  323. <groupId>org.apache.hadoop</groupId>
  324. <artifactId>hadoop-maven-plugins</artifactId>
  325. <executions>
  326. <execution>
  327. <id>resource-gz</id>
  328. <phase>generate-resources</phase>
  329. <goals>
  330. <goal>resource-gz</goal>
  331. </goals>
  332. <configuration>
  333. <inputDirectory>${basedir}/src/main/webapps/static</inputDirectory>
  334. <outputDirectory>${basedir}/target/webapps/static</outputDirectory>
  335. <extensions>js,css</extensions>
  336. </configuration>
  337. </execution>
  338. </executions>
  339. </plugin>
  340. <plugin>
  341. <groupId>org.apache.maven.plugins</groupId>
  342. <artifactId>maven-javadoc-plugin</artifactId>
  343. <configuration>
  344. <excludePackageNames>org.apache.hadoop.hdfs.protocol.proto</excludePackageNames>
  345. </configuration>
  346. </plugin>
  347. <plugin>
  348. <groupId>org.apache.rat</groupId>
  349. <artifactId>apache-rat-plugin</artifactId>
  350. <configuration>
  351. <excludes>
  352. <exclude>.gitattributes</exclude>
  353. <exclude>.idea/**</exclude>
  354. <exclude>src/main/conf/*</exclude>
  355. <exclude>dev-support/findbugsExcludeFile.xml</exclude>
  356. <exclude>dev-support/checkstyle*</exclude>
  357. <exclude>dev-support/jdiff/**</exclude>
  358. <exclude>dev-support/*tests</exclude>
  359. <exclude>src/test/empty-file</exclude>
  360. <exclude>src/test/all-tests</exclude>
  361. <exclude>src/test/resources/*.tgz</exclude>
  362. <exclude>src/test/resources/data*</exclude>
  363. <exclude>**/*.json</exclude>
  364. <exclude>src/test/resources/editsStored*</exclude>
  365. <exclude>src/test/resources/empty-file</exclude>
  366. <exclude>src/main/webapps/datanode/robots.txt</exclude>
  367. <exclude>src/main/webapps/hdfs/robots.txt</exclude>
  368. <exclude>src/main/webapps/journal/robots.txt</exclude>
  369. <exclude>src/main/webapps/secondary/robots.txt</exclude>
  370. <exclude>src/contrib/**</exclude>
  371. <exclude>src/site/resources/images/*</exclude>
  372. <exclude>src/main/webapps/static/bootstrap-3.4.1/**</exclude>
  373. <exclude>src/main/webapps/static/moment.min.js</exclude>
  374. <exclude>src/main/webapps/static/dust-full-2.0.0.min.js</exclude>
  375. <exclude>src/main/webapps/static/dust-helpers-1.1.1.min.js</exclude>
  376. <exclude>src/main/webapps/static/jquery-3.4.1.min.js</exclude>
  377. <exclude>src/main/webapps/static/jquery.dataTables.min.js</exclude>
  378. <exclude>src/main/webapps/static/json-bignum.js</exclude>
  379. <exclude>src/main/webapps/static/dataTables.bootstrap.css</exclude>
  380. <exclude>src/main/webapps/static/dataTables.bootstrap.js</exclude>
  381. <exclude>src/main/webapps/static/d3-v4.1.1.min.js</exclude>
  382. <exclude>src/test/resources/diskBalancer/data-cluster-3node-3disk.json</exclude>
  383. </excludes>
  384. </configuration>
  385. </plugin>
  386. <plugin>
  387. <artifactId>maven-clean-plugin</artifactId>
  388. <configuration>
  389. <filesets>
  390. <fileset>
  391. <directory>src/site/resources</directory>
  392. <includes>
  393. <include>configuration.xsl</include>
  394. <include>hdfs-default.xml</include>
  395. </includes>
  396. <followSymlinks>false</followSymlinks>
  397. </fileset>
  398. </filesets>
  399. </configuration>
  400. </plugin>
  401. </plugins>
  402. </build>
  403. <profiles>
  404. <!-- profile that starts ApacheDS KDC server -->
  405. <profile>
  406. <id>startKdc</id>
  407. <activation>
  408. <property>
  409. <name>startKdc</name>
  410. <value>true</value>
  411. </property>
  412. </activation>
  413. <build>
  414. <plugins>
  415. <plugin>
  416. <groupId>org.apache.maven.plugins</groupId>
  417. <artifactId>maven-enforcer-plugin</artifactId>
  418. <executions>
  419. <execution>
  420. <id>enforce-os</id>
  421. <goals>
  422. <goal>enforce</goal>
  423. </goals>
  424. <configuration>
  425. <rules>
  426. <!-- At present supports Mac and Unix OS family -->
  427. <requireOS>
  428. <family>mac</family>
  429. <family>unix</family>
  430. </requireOS>
  431. </rules>
  432. <fail>true</fail>
  433. </configuration>
  434. </execution>
  435. </executions>
  436. </plugin>
  437. <plugin>
  438. <groupId>org.apache.maven.plugins</groupId>
  439. <artifactId>maven-antrun-plugin</artifactId>
  440. <executions>
  441. <execution>
  442. <id>kdc</id>
  443. <phase>compile</phase>
  444. <goals>
  445. <goal>run</goal>
  446. </goals>
  447. <configuration>
  448. <target>
  449. <chmod file="${kdc.resource.dir}/killKdc.sh" perm="775" />
  450. <exec dir="${kdc.resource.dir}" executable= "./killKdc.sh" />
  451. <mkdir dir="${project.build.directory}/test-classes/kdc/downloads"/>
  452. <get src="https://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"/>
  453. <untar src="${project.build.directory}/test-classes/kdc/downloads/apacheds-1.5.7.tar.gz" dest="${project.build.directory}/test-classes/kdc" compression="gzip" />
  454. <copy file="${kdc.resource.dir}/server.xml" toDir="${project.build.directory}/test-classes/kdc/apacheds_1.5.7/conf"/>
  455. <mkdir dir="${project.build.directory}/test-classes/kdc/apacheds_1.5.7/ldif"/>
  456. <copy toDir="${project.build.directory}/test-classes/kdc/apacheds_1.5.7/ldif">
  457. <fileset dir="${kdc.resource.dir}/ldif"/>
  458. </copy>
  459. <chmod file="${project.build.directory}/test-classes/kdc/apacheds_1.5.7/apacheds.sh" perm="775" />
  460. <exec dir="${project.build.directory}/test-classes/kdc/apacheds_1.5.7/" executable="./apacheds.sh" spawn="true"/>
  461. </target>
  462. </configuration>
  463. </execution>
  464. <!-- On completion of graceful test phase: closes the ApacheDS KDC server -->
  465. <execution>
  466. <id>killKdc</id>
  467. <phase>test</phase>
  468. <goals>
  469. <goal>run</goal>
  470. </goals>
  471. <configuration>
  472. <target>
  473. <chmod file="${kdc.resource.dir}/killKdc.sh" perm="775" />
  474. <exec dir="${kdc.resource.dir}" executable= "./killKdc.sh" />
  475. </target>
  476. </configuration>
  477. </execution>
  478. </executions>
  479. </plugin>
  480. </plugins>
  481. </build>
  482. </profile>
  483. <profile>
  484. <id>parallel-tests</id>
  485. <build>
  486. <plugins>
  487. <plugin>
  488. <groupId>org.apache.hadoop</groupId>
  489. <artifactId>hadoop-maven-plugins</artifactId>
  490. <executions>
  491. <execution>
  492. <id>parallel-tests-createdir</id>
  493. <goals>
  494. <goal>parallel-tests-createdir</goal>
  495. </goals>
  496. </execution>
  497. </executions>
  498. </plugin>
  499. <plugin>
  500. <groupId>org.apache.maven.plugins</groupId>
  501. <artifactId>maven-surefire-plugin</artifactId>
  502. <configuration>
  503. <forkCount>${testsThreadCount}</forkCount>
  504. <reuseForks>false</reuseForks>
  505. <argLine>${maven-surefire-plugin.argLine} -DminiClusterDedicatedDirs=true</argLine>
  506. <systemPropertyVariables>
  507. <testsThreadCount>${testsThreadCount}</testsThreadCount>
  508. <test.build.data>${test.build.data}/${surefire.forkNumber}</test.build.data>
  509. <test.build.dir>${test.build.dir}/${surefire.forkNumber}</test.build.dir>
  510. <hadoop.tmp.dir>${hadoop.tmp.dir}/${surefire.forkNumber}</hadoop.tmp.dir>
  511. <!-- This is intentionally the same directory for all JUnit -->
  512. <!-- forks, for use in the very rare situation that -->
  513. <!-- concurrent tests need to coordinate, such as using lock -->
  514. <!-- files. -->
  515. <test.build.shared.data>${test.build.data}</test.build.shared.data>
  516. <!-- Due to a Maven quirk, setting this to just -->
  517. <!-- surefire.forkNumber won't do the parameter substitution. -->
  518. <!-- Putting a prefix in front of it like "fork-" makes it -->
  519. <!-- work. -->
  520. <test.unique.fork.id>fork-${surefire.forkNumber}</test.unique.fork.id>
  521. </systemPropertyVariables>
  522. </configuration>
  523. </plugin>
  524. </plugins>
  525. </build>
  526. </profile>
  527. <!-- profile to test shell code -->
  528. <profile>
  529. <id>shelltest</id>
  530. <activation>
  531. <property>
  532. <name>!skipTests</name>
  533. </property>
  534. </activation>
  535. <build>
  536. <plugins>
  537. <plugin>
  538. <artifactId>maven-antrun-plugin</artifactId>
  539. <executions>
  540. <execution>
  541. <id>hdfs-test-bats-driver</id>
  542. <phase>test</phase>
  543. <goals>
  544. <goal>run</goal>
  545. </goals>
  546. <configuration>
  547. <target>
  548. <exec dir="src/test/scripts"
  549. executable="bash"
  550. failonerror="true">
  551. <arg value="./run-bats.sh" />
  552. </exec>
  553. </target>
  554. </configuration>
  555. </execution>
  556. </executions>
  557. </plugin>
  558. </plugins>
  559. </build>
  560. </profile>
  561. <profile>
  562. <id>java9</id>
  563. <activation>
  564. <jdk>[9,)</jdk>
  565. </activation>
  566. <build>
  567. <plugins>
  568. <plugin>
  569. <artifactId>maven-compiler-plugin</artifactId>
  570. <configuration>
  571. <testExcludes>
  572. <testExclude>org/apache/hadoop/hdfs/TestDFSClientFailover.java</testExclude>
  573. </testExcludes>
  574. </configuration>
  575. </plugin>
  576. </plugins>
  577. </build>
  578. </profile>
  579. </profiles>
  580. </project>