pom.xml 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767
  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"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>org.deidentifier.arx</groupId>
  6. <artifactId>arx</artifactId>
  7. <version>3.7.1</version>
  8. <repositories>
  9. <repository>
  10. <id>local-maven-repo</id>
  11. <url>file:///${project.basedir}/lib</url>
  12. </repository>
  13. <repository>
  14. <id>jitpack.io</id>
  15. <url>https://jitpack.io</url>
  16. </repository>
  17. </repositories>
  18. <build>
  19. <finalName>${project.artifactId}-${project.version}-${envClassifier}</finalName>
  20. <testSourceDirectory>src/test</testSourceDirectory>
  21. <resources>
  22. <resource>
  23. <directory>src/gui</directory>
  24. <includes>
  25. <include>**/*.properties</include>
  26. <include>**/*.png</include>
  27. <include>**/*.gif</include>
  28. <include>**/*.pdf</include>
  29. <include>**/*.txt</include>
  30. </includes>
  31. </resource>
  32. <resource>
  33. <directory>src/main</directory>
  34. <includes>
  35. <include>**/*.properties</include>
  36. <include>**/*.png</include>
  37. <include>**/*.gif</include>
  38. <include>**/*.pdf</include>
  39. <include>**/*.csv</include>
  40. </includes>
  41. </resource>
  42. </resources>
  43. <plugins>
  44. <plugin>
  45. <groupId>org.codehaus.mojo</groupId>
  46. <artifactId>build-helper-maven-plugin</artifactId>
  47. <version>3.0.0</version>
  48. <executions>
  49. <execution>
  50. <id>add-source</id>
  51. <phase>generate-sources</phase>
  52. <goals>
  53. <goal>add-source</goal>
  54. </goals>
  55. <configuration>
  56. <sources>
  57. <source>${project.basedir}/src/main</source>
  58. <source>${project.basedir}/src/gui</source>
  59. <source>${project.basedir}/src/example</source>
  60. </sources>
  61. </configuration>
  62. </execution>
  63. </executions>
  64. </plugin>
  65. <plugin>
  66. <groupId>org.apache.maven.plugins</groupId>
  67. <artifactId>maven-compiler-plugin</artifactId>
  68. <version>3.6.1</version>
  69. <configuration>
  70. <source>1.8</source>
  71. <target>1.8</target>
  72. </configuration>
  73. </plugin>
  74. <plugin>
  75. <groupId>org.apache.maven.plugins</groupId>
  76. <artifactId>maven-shade-plugin</artifactId>
  77. <version>3.1.1</version>
  78. <configuration>
  79. <createDependencyReducedPom>false</createDependencyReducedPom>
  80. </configuration>
  81. <executions>
  82. <execution>
  83. <phase>package</phase>
  84. <goals>
  85. <goal>shade</goal>
  86. </goals>
  87. <configuration>
  88. <transformers>
  89. <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
  90. <mainClass>org.deidentifier.arx.gui.Main</mainClass>
  91. </transformer>
  92. </transformers>
  93. <filters>
  94. <filter>
  95. <artifact>*:*</artifact>
  96. <excludes>
  97. <exclude>META-INF/*.SF</exclude>
  98. <exclude>META-INF/*.DSA</exclude>
  99. <exclude>META-INF/*.RSA</exclude>
  100. </excludes>
  101. </filter>
  102. </filters>
  103. </configuration>
  104. </execution>
  105. </executions>
  106. </plugin>
  107. </plugins>
  108. <testResources>
  109. <testResource>
  110. <directory>data</directory>
  111. </testResource>
  112. </testResources>
  113. </build>
  114. <dependencies>
  115. <dependency>
  116. <groupId>colt</groupId>
  117. <artifactId>colt</artifactId>
  118. <version>1.2.0</version>
  119. <exclusions>
  120. <exclusion>
  121. <groupId>*</groupId>
  122. <artifactId>*</artifactId>
  123. </exclusion>
  124. </exclusions>
  125. </dependency>
  126. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  127. <dependency>
  128. <groupId>commons-io</groupId>
  129. <artifactId>commons-io</artifactId>
  130. <version>2.4</version>
  131. <exclusions>
  132. <exclusion>
  133. <groupId>*</groupId>
  134. <artifactId>*</artifactId>
  135. </exclusion>
  136. </exclusions>
  137. </dependency>
  138. <dependency>
  139. <groupId>commons-lang</groupId>
  140. <artifactId>commons-lang</artifactId>
  141. <version>2.6</version>
  142. <exclusions>
  143. <exclusion>
  144. <groupId>*</groupId>
  145. <artifactId>*</artifactId>
  146. </exclusion>
  147. </exclusions>
  148. </dependency>
  149. <dependency>
  150. <groupId>org.apache.commons</groupId>
  151. <artifactId>commons-math3</artifactId>
  152. <version>3.1.1</version>
  153. <exclusions>
  154. <exclusion>
  155. <groupId>*</groupId>
  156. <artifactId>*</artifactId>
  157. </exclusion>
  158. </exclusions>
  159. </dependency>
  160. <dependency>
  161. <groupId>commons-validator</groupId>
  162. <artifactId>commons-validator</artifactId>
  163. <version>1.4.1</version>
  164. <exclusions>
  165. <exclusion>
  166. <groupId>*</groupId>
  167. <artifactId>*</artifactId>
  168. </exclusion>
  169. </exclusions>
  170. </dependency>
  171. <dependency>
  172. <groupId>com.googlecode.sarasvati.thirdparty.eclipse</groupId>
  173. <artifactId>draw2d</artifactId>
  174. <version>3.8.1</version>
  175. <exclusions>
  176. <exclusion>
  177. <groupId>*</groupId>
  178. <artifactId>*</artifactId>
  179. </exclusion>
  180. </exclusions>
  181. </dependency>
  182. <dependency>
  183. <groupId>net.objecthunter</groupId>
  184. <artifactId>exp4j</artifactId>
  185. <version>0.4.8</version>
  186. <exclusions>
  187. <exclusion>
  188. <groupId>*</groupId>
  189. <artifactId>*</artifactId>
  190. </exclusion>
  191. </exclusions>
  192. </dependency>
  193. <dependency>
  194. <groupId>com.carrotsearch</groupId>
  195. <artifactId>hppc</artifactId>
  196. <version>0.6.0</version>
  197. <exclusions>
  198. <exclusion>
  199. <groupId>*</groupId>
  200. <artifactId>*</artifactId>
  201. </exclusion>
  202. </exclusions>
  203. </dependency>
  204. <dependency>
  205. <groupId>org.hamcrest</groupId>
  206. <artifactId>hamcrest-core</artifactId>
  207. <version>1.3</version>
  208. <exclusions>
  209. <exclusion>
  210. <groupId>*</groupId>
  211. <artifactId>*</artifactId>
  212. </exclusion>
  213. </exclusions>
  214. </dependency>
  215. <dependency>
  216. <groupId>junit</groupId>
  217. <artifactId>junit</artifactId>
  218. <version>4.11</version>
  219. <scope>test</scope>
  220. <exclusions>
  221. <exclusion>
  222. <groupId>*</groupId>
  223. <artifactId>*</artifactId>
  224. </exclusion>
  225. </exclusions>
  226. </dependency>
  227. <dependency>
  228. <groupId>org.slf4j</groupId>
  229. <artifactId>slf4j-api</artifactId>
  230. <version>1.7.13</version>
  231. <exclusions>
  232. <exclusion>
  233. <groupId>*</groupId>
  234. <artifactId>*</artifactId>
  235. </exclusion>
  236. </exclusions>
  237. </dependency>
  238. <dependency>
  239. <groupId>log4j</groupId>
  240. <artifactId>log4j</artifactId>
  241. <version>1.2.17</version>
  242. <exclusions>
  243. <exclusion>
  244. <groupId>*</groupId>
  245. <artifactId>*</artifactId>
  246. </exclusion>
  247. </exclusions>
  248. </dependency>
  249. <dependency>
  250. <groupId>com.google.guava</groupId>
  251. <artifactId>guava</artifactId>
  252. <version>18.0</version>
  253. <exclusions>
  254. <exclusion>
  255. <groupId>*</groupId>
  256. <artifactId>*</artifactId>
  257. </exclusion>
  258. </exclusions>
  259. </dependency>
  260. <dependency>
  261. <groupId>org.apache.mahout</groupId>
  262. <artifactId>mahout-core</artifactId>
  263. <version>0.9</version>
  264. <exclusions>
  265. <exclusion>
  266. <groupId>*</groupId>
  267. <artifactId>*</artifactId>
  268. </exclusion>
  269. </exclusions>
  270. </dependency>
  271. <dependency>
  272. <groupId>org.apache.mahout</groupId>
  273. <artifactId>mahout-math</artifactId>
  274. <version>0.11.1</version>
  275. <exclusions>
  276. <exclusion>
  277. <groupId>*</groupId>
  278. <artifactId>*</artifactId>
  279. </exclusion>
  280. </exclusions>
  281. </dependency>
  282. <dependency>
  283. <groupId>org.apache.hadoop</groupId>
  284. <artifactId>hadoop-core</artifactId>
  285. <version>1.2.1</version>
  286. <exclusions>
  287. <exclusion>
  288. <groupId>*</groupId>
  289. <artifactId>*</artifactId>
  290. </exclusion>
  291. </exclusions>
  292. </dependency>
  293. <dependency>
  294. <groupId>mysql</groupId>
  295. <artifactId>mysql-connector-java</artifactId>
  296. <version>5.1.38</version>
  297. <exclusions>
  298. <exclusion>
  299. <groupId>*</groupId>
  300. <artifactId>*</artifactId>
  301. </exclusion>
  302. </exclusions>
  303. </dependency>
  304. <dependency>
  305. <groupId>org.apache.pdfbox</groupId>
  306. <artifactId>pdfbox-app</artifactId>
  307. <version>2.0.1</version>
  308. <exclusions>
  309. <exclusion>
  310. <groupId>*</groupId>
  311. <artifactId>*</artifactId>
  312. </exclusion>
  313. </exclusions>
  314. </dependency>
  315. <dependency>
  316. <groupId>com.github.ralfstuckert.pdfbox-layout</groupId>
  317. <artifactId>pdfbox2-layout</artifactId>
  318. <version>1.0.0</version>
  319. <exclusions>
  320. <exclusion>
  321. <groupId>*</groupId>
  322. <artifactId>*</artifactId>
  323. </exclusion>
  324. </exclusions>
  325. </dependency>
  326. <dependency>
  327. <groupId>org.apache.poi</groupId>
  328. <artifactId>poi</artifactId>
  329. <version>3.10-FINAL</version>
  330. </dependency>
  331. <dependency>
  332. <groupId>org.apache.poi</groupId>
  333. <artifactId>poi-ooxml</artifactId>
  334. <version>3.10-FINAL</version>
  335. </dependency>
  336. <dependency>
  337. <groupId>org.apache.poi</groupId>
  338. <artifactId>poi-ooxml-schemas</artifactId>
  339. <version>3.10-FINAL</version>
  340. </dependency>
  341. <dependency>
  342. <groupId>org.apache.xmlbeans</groupId>
  343. <artifactId>xmlbeans</artifactId>
  344. <version>2.6.0</version>
  345. </dependency>
  346. <dependency>
  347. <groupId>org.postgresql</groupId>
  348. <artifactId>postgresql</artifactId>
  349. <version>9.3-1101-jdbc41</version>
  350. <exclusions>
  351. <exclusion>
  352. <groupId>*</groupId>
  353. <artifactId>*</artifactId>
  354. </exclusion>
  355. </exclusions>
  356. </dependency>
  357. <dependency>
  358. <groupId>org.xerial</groupId>
  359. <artifactId>sqlite-jdbc</artifactId>
  360. <version>3.7.2</version>
  361. <exclusions>
  362. <exclusion>
  363. <groupId>*</groupId>
  364. <artifactId>*</artifactId>
  365. </exclusion>
  366. </exclusions>
  367. </dependency>
  368. <dependency>
  369. <groupId>com.univocity</groupId>
  370. <artifactId>univocity-parsers</artifactId>
  371. <version>2.4.1</version>
  372. <exclusions>
  373. <exclusion>
  374. <groupId>*</groupId>
  375. <artifactId>*</artifactId>
  376. </exclusion>
  377. </exclusions>
  378. </dependency>
  379. <!--local dependencies-->
  380. <dependency>
  381. <groupId>org.eclipse.core</groupId>
  382. <artifactId>commands</artifactId>
  383. <version>3.6.2</version>
  384. <exclusions>
  385. <exclusion>
  386. <groupId>*</groupId>
  387. <artifactId>*</artifactId>
  388. </exclusion>
  389. </exclusions>
  390. </dependency>
  391. <dependency>
  392. <groupId>org.eclipse.core</groupId>
  393. <artifactId>runtime</artifactId>
  394. <version>3.8.0</version>
  395. <exclusions>
  396. <exclusion>
  397. <groupId>*</groupId>
  398. <artifactId>*</artifactId>
  399. </exclusion>
  400. </exclusions>
  401. </dependency>
  402. <dependency>
  403. <groupId>org.eclipse.equinox</groupId>
  404. <artifactId>common</artifactId>
  405. <version>3.6.100</version>
  406. <exclusions>
  407. <exclusion>
  408. <groupId>*</groupId>
  409. <artifactId>*</artifactId>
  410. </exclusion>
  411. </exclusions>
  412. </dependency>
  413. <dependency>
  414. <groupId>org.eclipse</groupId>
  415. <artifactId>jface</artifactId>
  416. <version>3.8.102</version>
  417. <exclusions>
  418. <exclusion>
  419. <groupId>*</groupId>
  420. <artifactId>*</artifactId>
  421. </exclusion>
  422. </exclusions>
  423. </dependency>
  424. <dependency>
  425. <groupId>de.linearbits</groupId>
  426. <artifactId>libjhc</artifactId>
  427. <version>swt</version>
  428. <exclusions>
  429. <exclusion>
  430. <groupId>*</groupId>
  431. <artifactId>*</artifactId>
  432. </exclusion>
  433. </exclusions>
  434. </dependency>
  435. <dependency>
  436. <groupId>de.linearbits</groupId>
  437. <artifactId>jhpl</artifactId>
  438. <version>0.0.1</version>
  439. <exclusions>
  440. <exclusion>
  441. <groupId>*</groupId>
  442. <artifactId>*</artifactId>
  443. </exclusion>
  444. </exclusions>
  445. </dependency>
  446. <dependency>
  447. <groupId>jtds</groupId>
  448. <artifactId>jtds</artifactId>
  449. <version>1.3.1</version>
  450. <exclusions>
  451. <exclusion>
  452. <groupId>*</groupId>
  453. <artifactId>*</artifactId>
  454. </exclusion>
  455. </exclusions>
  456. </dependency>
  457. <dependency>
  458. <groupId>org.eclipse.nebula.widgets.nattable</groupId>
  459. <artifactId>core</artifactId>
  460. <version>1.1.0</version>
  461. <exclusions>
  462. <exclusion>
  463. <groupId>*</groupId>
  464. <artifactId>*</artifactId>
  465. </exclusion>
  466. </exclusions>
  467. </dependency>
  468. <dependency>
  469. <groupId>de.linearbits</groupId>
  470. <artifactId>newtonraphson</artifactId>
  471. <version>0.0.1</version>
  472. <exclusions>
  473. <exclusion>
  474. <groupId>*</groupId>
  475. <artifactId>*</artifactId>
  476. </exclusion>
  477. </exclusions>
  478. </dependency>
  479. <dependency>
  480. <groupId>de.linearbits</groupId>
  481. <artifactId>objectselector</artifactId>
  482. <version>lib</version>
  483. <exclusions>
  484. <exclusion>
  485. <groupId>*</groupId>
  486. <artifactId>*</artifactId>
  487. </exclusion>
  488. </exclusions>
  489. </dependency>
  490. <dependency>
  491. <groupId>com.oracle</groupId>
  492. <artifactId>ojdbc7</artifactId>
  493. <version>12.1.0.2</version>
  494. <exclusions>
  495. <exclusion>
  496. <groupId>*</groupId>
  497. <artifactId>*</artifactId>
  498. </exclusion>
  499. </exclusions>
  500. </dependency>
  501. <dependency>
  502. <groupId>org.swtchart</groupId>
  503. <artifactId>ext</artifactId>
  504. <version>0.8.0.v20120301</version>
  505. <exclusions>
  506. <exclusion>
  507. <groupId>*</groupId>
  508. <artifactId>*</artifactId>
  509. </exclusion>
  510. </exclusions>
  511. </dependency>
  512. <dependency>
  513. <groupId>org.swtchart</groupId>
  514. <artifactId>swtchart</artifactId>
  515. <version>0.8.0.v20120301</version>
  516. <exclusions>
  517. <exclusion>
  518. <groupId>*</groupId>
  519. <artifactId>*</artifactId>
  520. </exclusion>
  521. </exclusions>
  522. </dependency>
  523. <dependency>
  524. <groupId>de.linearbits.swt</groupId>
  525. <artifactId>swtchoicesdialog</artifactId>
  526. <version>0.0.1</version>
  527. <exclusions>
  528. <exclusion>
  529. <groupId>*</groupId>
  530. <artifactId>*</artifactId>
  531. </exclusion>
  532. </exclusions>
  533. </dependency>
  534. <dependency>
  535. <groupId>de.linearbits.swt</groupId>
  536. <artifactId>swtknob</artifactId>
  537. <version>1.0.0</version>
  538. <exclusions>
  539. <exclusion>
  540. <groupId>*</groupId>
  541. <artifactId>*</artifactId>
  542. </exclusion>
  543. </exclusions>
  544. </dependency>
  545. <dependency>
  546. <groupId>de.linearbits.swt</groupId>
  547. <artifactId>swtpreferences</artifactId>
  548. <version>0.0.1</version>
  549. <exclusions>
  550. <exclusion>
  551. <groupId>*</groupId>
  552. <artifactId>*</artifactId>
  553. </exclusion>
  554. </exclusions>
  555. </dependency>
  556. <dependency>
  557. <groupId>de.linearbits.swt</groupId>
  558. <artifactId>swtrangeslider</artifactId>
  559. <version>0.0.1</version>
  560. <exclusions>
  561. <exclusion>
  562. <groupId>*</groupId>
  563. <artifactId>*</artifactId>
  564. </exclusion>
  565. </exclusions>
  566. </dependency>
  567. <dependency>
  568. <groupId>de.linearbits.swt</groupId>
  569. <artifactId>swtsimplebrowser</artifactId>
  570. <version>0.0.1</version>
  571. <exclusions>
  572. <exclusion>
  573. <groupId>*</groupId>
  574. <artifactId>*</artifactId>
  575. </exclusion>
  576. </exclusions>
  577. </dependency>
  578. <dependency>
  579. <groupId>de.linearbits.swt</groupId>
  580. <artifactId>swttable</artifactId>
  581. <version>0.0.1</version>
  582. <exclusions>
  583. <exclusion>
  584. <groupId>*</groupId>
  585. <artifactId>*</artifactId>
  586. </exclusion>
  587. </exclusions>
  588. </dependency>
  589. <dependency>
  590. <groupId>de.linearbits.swt</groupId>
  591. <artifactId>swttiles</artifactId>
  592. <version>0.0.1</version>
  593. <exclusions>
  594. <exclusion>
  595. <groupId>*</groupId>
  596. <artifactId>*</artifactId>
  597. </exclusion>
  598. </exclusions>
  599. </dependency>
  600. <dependency>
  601. <groupId>org.eclipse.nebula.visualization</groupId>
  602. <artifactId>widgets</artifactId>
  603. <version>1.0.0.201511041902</version>
  604. <exclusions>
  605. <exclusion>
  606. <groupId>*</groupId>
  607. <artifactId>*</artifactId>
  608. </exclusion>
  609. </exclusions>
  610. </dependency>
  611. <dependency>
  612. <groupId>org.eclipse.nebula.visualization</groupId>
  613. <artifactId>xygraph</artifactId>
  614. <version>1.0.0.201511041902</version>
  615. <exclusions>
  616. <exclusion>
  617. <groupId>*</groupId>
  618. <artifactId>*</artifactId>
  619. </exclusion>
  620. </exclusions>
  621. </dependency>
  622. <dependency>
  623. <groupId>com.github.haifengl</groupId>
  624. <artifactId>smile</artifactId>
  625. <version>1.3.1</version>
  626. <exclusions>
  627. <exclusion>
  628. <groupId>*</groupId>
  629. <artifactId>*</artifactId>
  630. </exclusion>
  631. </exclusions>
  632. </dependency>
  633. </dependencies>
  634. <profiles>
  635. <profile>
  636. <id>osx-64</id>
  637. <activation>
  638. <os>
  639. <family>mac</family>
  640. <arch>x86_64</arch>
  641. </os>
  642. </activation>
  643. <properties>
  644. <envClassifier>osx-64</envClassifier>
  645. </properties>
  646. <dependencies>
  647. <dependency>
  648. <groupId>org.eclipse</groupId>
  649. <artifactId>swt</artifactId>
  650. <version>4.2.1-cocoa-macosx-x86_64</version>
  651. <exclusions>
  652. <exclusion>
  653. <groupId>*</groupId>
  654. <artifactId>*</artifactId>
  655. </exclusion>
  656. </exclusions>
  657. </dependency>
  658. </dependencies>
  659. </profile>
  660. <!--NOTE: this build is specific for x86_64. Separate profiles may be required for arm64 or amd64 in the future -->
  661. <profile>
  662. <id>win-64</id>
  663. <activation>
  664. <os>
  665. <family>Windows</family>
  666. <arch>x86_64</arch>
  667. </os>
  668. </activation>
  669. <properties>
  670. <envClassifier>win-64</envClassifier>
  671. </properties>
  672. <dependencies>
  673. <dependency>
  674. <groupId>org.eclipse</groupId>
  675. <artifactId>swt</artifactId>
  676. <version>4.2.1-win32-win32-x86_64</version>
  677. <exclusions>
  678. <exclusion>
  679. <groupId>*</groupId>
  680. <artifactId>*</artifactId>
  681. </exclusion>
  682. </exclusions>
  683. </dependency>
  684. </dependencies>
  685. </profile>
  686. <profile>
  687. <id>win</id>
  688. <activation>
  689. <os>
  690. <family>Windows</family>
  691. <arch>x86</arch>
  692. </os>
  693. </activation>
  694. <properties>
  695. <envClassifier>win</envClassifier>
  696. </properties>
  697. <dependencies>
  698. <dependency>
  699. <groupId>org.eclipse</groupId>
  700. <artifactId>swt</artifactId>
  701. <version>4.2.1-win32-win32-x86</version>
  702. <exclusions>
  703. <exclusion>
  704. <groupId>*</groupId>
  705. <artifactId>*</artifactId>
  706. </exclusion>
  707. </exclusions>
  708. </dependency>
  709. </dependencies>
  710. </profile>
  711. <profile>
  712. <id>gtk</id>
  713. <activation>
  714. <os>
  715. <name>Linux</name>
  716. <arch>x86</arch>
  717. </os>
  718. </activation>
  719. <properties>
  720. <envClassifier>gtk</envClassifier>
  721. </properties>
  722. <dependencies>
  723. <dependency>
  724. <groupId>org.eclipse</groupId>
  725. <artifactId>swt</artifactId>
  726. <version>4.2.1-gtk-linux-x86</version>
  727. <exclusions>
  728. <exclusion>
  729. <groupId>*</groupId>
  730. <artifactId>*</artifactId>
  731. </exclusion>
  732. </exclusions>
  733. </dependency>
  734. </dependencies>
  735. </profile>
  736. <profile>
  737. <id>gtk-64</id>
  738. <activation>
  739. <os>
  740. <name>Linux</name>
  741. <arch>x86_64</arch>
  742. </os>
  743. </activation>
  744. <properties>
  745. <envClassifier>gtk-64</envClassifier>
  746. </properties>
  747. <dependencies>
  748. <dependency>
  749. <groupId>org.eclipse</groupId>
  750. <artifactId>swt</artifactId>
  751. <version>4.2.1-gtk-linux-x86_64</version>
  752. <exclusions>
  753. <exclusion>
  754. <groupId>*</groupId>
  755. <artifactId>*</artifactId>
  756. </exclusion>
  757. </exclusions>
  758. </dependency>
  759. </dependencies>
  760. </profile>
  761. </profiles>
  762. </project>