undertow-parent-2.2.28.Final.pom 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ JBoss, Home of Professional Open Source.
  4. ~ Copyright 2012 Red Hat, Inc., and individual contributors
  5. ~ as indicated by the @author tags.
  6. ~
  7. ~ Licensed under the Apache License, Version 2.0 (the "License");
  8. ~ you may not use this file except in compliance with the License.
  9. ~ You may obtain a copy of the License at
  10. ~
  11. ~ http://www.apache.org/licenses/LICENSE-2.0
  12. ~
  13. ~ Unless required by applicable law or agreed to in writing, software
  14. ~ distributed under the License is distributed on an "AS IS" BASIS,
  15. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  16. ~ See the License for the specific language governing permissions and
  17. ~ limitations under the License.
  18. -->
  19. <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/xsd/maven-4.0.0.xsd">
  20. <modelVersion>4.0.0</modelVersion>
  21. <parent>
  22. <groupId>org.jboss</groupId>
  23. <artifactId>jboss-parent</artifactId>
  24. <version>35</version>
  25. </parent>
  26. <groupId>io.undertow</groupId>
  27. <artifactId>undertow-parent</artifactId>
  28. <version>2.2.28.Final</version>
  29. <name>Undertow</name>
  30. <description>Undertow</description>
  31. <packaging>pom</packaging>
  32. <licenses>
  33. <license>
  34. <name>Apache License Version 2.0</name>
  35. <url>http://repository.jboss.org/licenses/apache-2.0.txt</url>
  36. <distribution>repo</distribution>
  37. </license>
  38. </licenses>
  39. <scm>
  40. <connection>scm:git://github.com/undertow-io/undertow.git</connection>
  41. <developerConnection>scm:git://github.com/undertow-io/undertow.git</developerConnection>
  42. <url>https://github.com/undertow-io/undertow</url>
  43. </scm>
  44. <properties>
  45. <!--
  46. Dependency versions. Please keep alphabetical.
  47. Each version property should be of the form "version.<groupId>".
  48. For example: <version.org.jboss.as>
  49. In cases where multiple artifacts use the same groupId but have different
  50. versions, add the artifactId or other qualifier to the property name.
  51. For example: <version.org.jboss.as.console>
  52. -->
  53. <version.com.h2database>1.4.200</version.com.h2database>
  54. <version.easymock>4.2</version.easymock>
  55. <version.junit>4.13</version.junit>
  56. <version.netty>4.1.50.Final</version.netty>
  57. <version.org.apache.directory.server>2.0.0-M15</version.org.apache.directory.server>
  58. <version.org.apache.httpcomponents>4.5.12</version.org.apache.httpcomponents>
  59. <version.org.jboss.classfilewriter>1.2.4.Final</version.org.jboss.classfilewriter>
  60. <version.org.jboss.logging>3.4.1.Final</version.org.jboss.logging>
  61. <version.org.jboss.logging.processor>2.2.1.Final</version.org.jboss.logging.processor>
  62. <version.org.jboss.logmanager>2.1.14.Final</version.org.jboss.logmanager>
  63. <version.org.jboss.spec.javax.annotation.jboss-annotations-api_1.3_spec>2.0.1.Final</version.org.jboss.spec.javax.annotation.jboss-annotations-api_1.3_spec>
  64. <version.org.jboss.spec.javax.servlet.jboss-servlet-api_4.0_spec>2.0.0.Final</version.org.jboss.spec.javax.servlet.jboss-servlet-api_4.0_spec>
  65. <version.org.jboss.spec.javax.websockets>2.0.0.Final</version.org.jboss.spec.javax.websockets>
  66. <version.xnio>3.8.7.Final</version.xnio>
  67. <!-- TODO remove this dependency once xnio upgrades to latest jboss threads -->
  68. <version.org.jboss.threads>3.1.0.Final</version.org.jboss.threads>
  69. <version.org.wildfly.common>1.5.4.Final</version.org.wildfly.common>
  70. <version.org.wildfly.client-config>1.0.1.Final</version.org.wildfly.client-config>
  71. <!-- jacoco -->
  72. <version.org.jacoco>0.7.9</version.org.jacoco>
  73. <jacoco.agent.argLine></jacoco.agent.argLine>
  74. <!-- Spotbugs properties -->
  75. <spotbugs.exclude.filter.file>../spotbugs-exclude.xml</spotbugs.exclude.filter.file>
  76. <!-- Surefire args -->
  77. <surefire.jpda.args/>
  78. <surefire.system.args>-ea ${surefire.jpda.args} -Xmx1024m</surefire.system.args>
  79. <!--by default run all tests-->
  80. <test.categories>io.undertow.testutils.category.UnitTest OR NOT io.undertow.testutils.category.UnitTest</test.categories>
  81. <!-- Checkstyle configuration -->
  82. <linkXRef>false</linkXRef>
  83. <version.io.undertow.build.checkstyle-config>1.0.1.Final</version.io.undertow.build.checkstyle-config>
  84. <version.com.github.spotbugs-maven-plugin>3.1.7</version.com.github.spotbugs-maven-plugin>
  85. <version.org.eclipse.jetty.alpn>1.1.3.v20160715</version.org.eclipse.jetty.alpn>
  86. <version.com.twitter.hpack>1.0.2</version.com.twitter.hpack>
  87. <!-- Non-default maven plugin versions and configuration -->
  88. <version.org.wildfly.openssl>1.0.4.Final</version.org.wildfly.openssl>
  89. <version.checkstyle>7.1</version.checkstyle>
  90. <version.bundle.plugin>5.1.1</version.bundle.plugin>
  91. <version.jmh>1.21</version.jmh>
  92. </properties>
  93. <modules>
  94. <module>parser-generator</module>
  95. <module>core</module>
  96. <module>servlet</module>
  97. <module>examples</module>
  98. <module>websockets-jsr</module>
  99. <module>benchmarks</module>
  100. </modules>
  101. <build>
  102. <plugins>
  103. <plugin>
  104. <groupId>org.apache.maven.plugins</groupId>
  105. <artifactId>maven-checkstyle-plugin</artifactId>
  106. </plugin>
  107. <!-- Javadoc -->
  108. <plugin>
  109. <groupId>org.apache.maven.plugins</groupId>
  110. <artifactId>maven-javadoc-plugin</artifactId>
  111. <configuration>
  112. <!--
  113. The Javadoc comments contain a lot of warnings
  114. that add a lot of noise to the build without the
  115. following setting.
  116. -->
  117. <doclint>none</doclint>
  118. <!-- @implNote is a non-standard tag and must be declared or the build will fail -->
  119. <tags>
  120. <tag>
  121. <name>implNote</name>
  122. <placement>a</placement>
  123. <head>Implementation Note:</head>
  124. </tag>
  125. </tags>
  126. <source>1.8</source>
  127. </configuration>
  128. <executions>
  129. <execution>
  130. <id>attach-javadocs</id>
  131. <goals>
  132. <goal>jar</goal>
  133. </goals>
  134. </execution>
  135. </executions>
  136. </plugin>
  137. <!-- Zanata translations -->
  138. <plugin>
  139. <groupId>org.zanata</groupId>
  140. <artifactId>zanata-maven-plugin</artifactId>
  141. <version>${version.zanata.plugin}</version>
  142. <configuration>
  143. <!-- Process sub-modules separately, sharing parent config -->
  144. <enableModules>true</enableModules>
  145. <projectConfig>${session.executionRootDirectory}/zanata.xml</projectConfig>
  146. <!-- Generated English i18n.properties are written here: -->
  147. <srcDir>target/classes</srcDir>
  148. <transDir>src/main/resources</transDir>
  149. <includes>**/*.i18n.properties,**/LocalDescriptions.properties</includes>
  150. </configuration>
  151. </plugin>
  152. </plugins>
  153. <pluginManagement>
  154. <plugins>
  155. <!-- Checkstyle -->
  156. <plugin>
  157. <groupId>org.apache.maven.plugins</groupId>
  158. <artifactId>maven-checkstyle-plugin</artifactId>
  159. <version>${version.checkstyle.plugin}</version>
  160. <configuration>
  161. <configLocation>undertow-checkstyle/checkstyle.xml</configLocation>
  162. <consoleOutput>true</consoleOutput>
  163. <failsOnError>true</failsOnError>
  164. <includeTestSourceDirectory>true</includeTestSourceDirectory>
  165. <useFile/>
  166. <sourceDirectories>
  167. <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
  168. </sourceDirectories>
  169. </configuration>
  170. <dependencies>
  171. <dependency>
  172. <groupId>io.undertow.build</groupId>
  173. <artifactId>undertow-checkstyle-config</artifactId>
  174. <version>${version.io.undertow.build.checkstyle-config}</version>
  175. </dependency>
  176. </dependencies>
  177. <executions>
  178. <execution>
  179. <id>check-style</id>
  180. <phase>compile</phase>
  181. <goals>
  182. <goal>checkstyle</goal>
  183. </goals>
  184. </execution>
  185. </executions>
  186. </plugin>
  187. <!-- FindBugs -->
  188. <plugin>
  189. <groupId>com.github.spotbugs</groupId>
  190. <artifactId>spotbugs-maven-plugin</artifactId>
  191. <version>${version.com.github.spotbugs-maven-plugin}</version>
  192. <configuration>
  193. <excludeFilterFile>${spotbugs.exclude.filter.file}</excludeFilterFile>
  194. </configuration>
  195. <executions>
  196. <execution>
  197. <id>find-bugs</id>
  198. <phase>verify</phase>
  199. <goals>
  200. <goal>check</goal>
  201. </goals>
  202. </execution>
  203. </executions>
  204. </plugin>
  205. <plugin>
  206. <groupId>org.apache.maven.plugins</groupId>
  207. <artifactId>maven-surefire-plugin</artifactId>
  208. <version>${version.surefire.plugin}</version>
  209. <configuration>
  210. <groups>${test.categories}</groups>
  211. <redirectTestOutputToFile>true</redirectTestOutputToFile>
  212. </configuration>
  213. </plugin>
  214. <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
  215. <plugin>
  216. <!--suppress MavenModelInspection -->
  217. <groupId>org.eclipse.m2e</groupId>
  218. <!--suppress MavenModelInspection -->
  219. <artifactId>lifecycle-mapping</artifactId>
  220. <!--suppress MavenModelInspection -->
  221. <version>1.0.0</version>
  222. <configuration>
  223. <lifecycleMappingMetadata>
  224. <pluginExecutions>
  225. <pluginExecution>
  226. <pluginExecutionFilter>
  227. <groupId>
  228. org.apache.maven.plugins
  229. </groupId>
  230. <artifactId>
  231. maven-checkstyle-plugin
  232. </artifactId>
  233. <versionRange>
  234. [2.5,)
  235. </versionRange>
  236. <goals>
  237. <goal>checkstyle</goal>
  238. </goals>
  239. </pluginExecutionFilter>
  240. <action>
  241. <ignore></ignore>
  242. </action>
  243. </pluginExecution>
  244. </pluginExecutions>
  245. </lifecycleMappingMetadata>
  246. </configuration>
  247. </plugin>
  248. <plugin>
  249. <groupId>org.apache.felix</groupId>
  250. <artifactId>maven-bundle-plugin</artifactId>
  251. <version>${version.bundle.plugin}</version>
  252. </plugin>
  253. </plugins>
  254. </pluginManagement>
  255. </build>
  256. <dependencyManagement>
  257. <dependencies>
  258. <!-- Modules in this project -->
  259. <dependency>
  260. <groupId>io.undertow</groupId>
  261. <artifactId>undertow-core</artifactId>
  262. <version>${project.version}</version>
  263. </dependency>
  264. <dependency>
  265. <groupId>io.undertow</groupId>
  266. <artifactId>undertow-core</artifactId>
  267. <version>${project.version}</version>
  268. <type>test-jar</type>
  269. <scope>test</scope>
  270. </dependency>
  271. <dependency>
  272. <groupId>io.undertow</groupId>
  273. <artifactId>undertow-examples</artifactId>
  274. <version>${project.version}</version>
  275. </dependency>
  276. <dependency>
  277. <groupId>io.undertow</groupId>
  278. <artifactId>undertow-parser-generator</artifactId>
  279. <version>${project.version}</version>
  280. </dependency>
  281. <dependency>
  282. <groupId>io.undertow</groupId>
  283. <artifactId>undertow-servlet</artifactId>
  284. <version>${project.version}</version>
  285. </dependency>
  286. <dependency>
  287. <groupId>io.undertow</groupId>
  288. <artifactId>undertow-servlet</artifactId>
  289. <version>${project.version}</version>
  290. <type>test-jar</type>
  291. <scope>test</scope>
  292. </dependency>
  293. <dependency>
  294. <groupId>io.undertow</groupId>
  295. <artifactId>undertow-websockets-jsr</artifactId>
  296. <version>${project.version}</version>
  297. </dependency>
  298. <dependency>
  299. <groupId>io.undertow</groupId>
  300. <artifactId>undertow-benchmarks</artifactId>
  301. <version>${project.version}</version>
  302. </dependency>
  303. <!-- External Dependencies -->
  304. <dependency>
  305. <groupId>io.undertow.build</groupId>
  306. <artifactId>undertow-checkstyle-config</artifactId>
  307. <version>${version.io.undertow.build.checkstyle-config}</version>
  308. </dependency>
  309. <dependency>
  310. <groupId>org.jboss.classfilewriter</groupId>
  311. <artifactId>jboss-classfilewriter</artifactId>
  312. <version>${version.org.jboss.classfilewriter}</version>
  313. </dependency>
  314. <dependency>
  315. <groupId>junit</groupId>
  316. <artifactId>junit</artifactId>
  317. <version>${version.junit}</version>
  318. <scope>test</scope>
  319. </dependency>
  320. <dependency>
  321. <groupId>org.eclipse.jetty.alpn</groupId>
  322. <artifactId>alpn-api</artifactId>
  323. <version>${version.org.eclipse.jetty.alpn}</version>
  324. <scope>provided</scope>
  325. </dependency>
  326. <dependency>
  327. <groupId>org.easymock</groupId>
  328. <artifactId>easymock</artifactId>
  329. <version>${version.easymock}</version>
  330. <scope>test</scope>
  331. </dependency>
  332. <dependency>
  333. <groupId>io.netty</groupId>
  334. <artifactId>netty-all</artifactId>
  335. <version>${version.netty}</version>
  336. <scope>test</scope>
  337. </dependency>
  338. <dependency>
  339. <groupId>com.twitter</groupId>
  340. <artifactId>hpack</artifactId>
  341. <version>${version.com.twitter.hpack}</version>
  342. <scope>test</scope>
  343. </dependency>
  344. <dependency>
  345. <groupId>org.apache.directory.server</groupId>
  346. <artifactId>apacheds-all</artifactId>
  347. <version>${version.org.apache.directory.server}</version>
  348. <scope>test</scope>
  349. </dependency>
  350. <dependency>
  351. <groupId>org.apache.httpcomponents</groupId>
  352. <artifactId>httpclient</artifactId>
  353. <version>${version.org.apache.httpcomponents}</version>
  354. <scope>test</scope>
  355. </dependency>
  356. <dependency>
  357. <groupId>org.apache.httpcomponents</groupId>
  358. <artifactId>httpmime</artifactId>
  359. <version>${version.org.apache.httpcomponents}</version>
  360. <scope>test</scope>
  361. </dependency>
  362. <dependency>
  363. <groupId>org.jboss.logging</groupId>
  364. <artifactId>jboss-logging</artifactId>
  365. <version>${version.org.jboss.logging}</version>
  366. </dependency>
  367. <dependency>
  368. <groupId>org.jboss.logging</groupId>
  369. <artifactId>jboss-logging-processor</artifactId>
  370. <version>${version.org.jboss.logging.processor}</version>
  371. </dependency>
  372. <dependency>
  373. <groupId>org.jboss.logmanager</groupId>
  374. <artifactId>jboss-logmanager</artifactId>
  375. <version>${version.org.jboss.logmanager}</version>
  376. </dependency>
  377. <dependency>
  378. <groupId>org.jboss.spec.javax.annotation</groupId>
  379. <artifactId>jboss-annotations-api_1.3_spec</artifactId>
  380. <version>${version.org.jboss.spec.javax.annotation.jboss-annotations-api_1.3_spec}</version>
  381. </dependency>
  382. <!-- TODO: replace with JBoss Spec Artifact-->
  383. <dependency>
  384. <groupId>org.jboss.spec.javax.servlet</groupId>
  385. <artifactId>jboss-servlet-api_4.0_spec</artifactId>
  386. <version>${version.org.jboss.spec.javax.servlet.jboss-servlet-api_4.0_spec}</version>
  387. </dependency>
  388. <dependency>
  389. <groupId>org.jboss.spec.javax.websocket</groupId>
  390. <artifactId>jboss-websocket-api_1.1_spec</artifactId>
  391. <version>${version.org.jboss.spec.javax.websockets}</version>
  392. </dependency>
  393. <dependency>
  394. <groupId>org.jboss.xnio</groupId>
  395. <artifactId>xnio-api</artifactId>
  396. <version>${version.xnio}</version>
  397. <exclusions>
  398. <exclusion>
  399. <groupId>org.jboss.threads</groupId>
  400. <artifactId>jboss-threads</artifactId>
  401. </exclusion>
  402. </exclusions>
  403. </dependency>
  404. <dependency>
  405. <groupId>org.jboss.xnio</groupId>
  406. <artifactId>xnio-nio</artifactId>
  407. <version>${version.xnio}</version>
  408. <exclusions>
  409. <exclusion>
  410. <groupId>org.wildfly.common</groupId>
  411. <artifactId>wildfly-common</artifactId>
  412. </exclusion>
  413. </exclusions>
  414. </dependency>
  415. <dependency>
  416. <groupId>org.jboss.threads</groupId>
  417. <artifactId>jboss-threads</artifactId>
  418. <version>${version.org.jboss.threads}</version>
  419. <exclusions>
  420. <exclusion>
  421. <groupId>org.wildfly.common</groupId>
  422. <artifactId>wildfly-common</artifactId>
  423. </exclusion>
  424. </exclusions>
  425. </dependency>
  426. <dependency>
  427. <groupId>org.wildfly.common</groupId>
  428. <artifactId>wildfly-common</artifactId>
  429. <version>${version.org.wildfly.common}</version>
  430. </dependency>
  431. <dependency>
  432. <groupId>com.h2database</groupId>
  433. <artifactId>h2</artifactId>
  434. <version>${version.com.h2database}</version>
  435. <scope>test</scope>
  436. </dependency>
  437. <dependency>
  438. <groupId>org.wildfly.openssl</groupId>
  439. <artifactId>wildfly-openssl</artifactId>
  440. <version>${version.org.wildfly.openssl}</version>
  441. <scope>test</scope>
  442. </dependency>
  443. <dependency>
  444. <groupId>org.openjdk.jmh</groupId>
  445. <artifactId>jmh-core</artifactId>
  446. <version>${version.jmh}</version>
  447. </dependency>
  448. <dependency>
  449. <groupId>org.openjdk.jmh</groupId>
  450. <artifactId>jmh-generator-annprocess</artifactId>
  451. <version>${version.jmh}</version>
  452. <scope>provided</scope>
  453. </dependency>
  454. <dependency>
  455. <groupId>org.wildfly.extras.batavia</groupId>
  456. <artifactId>transformer-api</artifactId>
  457. <version>${version.org.wildfly.extras.batavia}</version>
  458. </dependency>
  459. <dependency>
  460. <groupId>org.wildfly.extras.batavia</groupId>
  461. <artifactId>transformer-impl-eclipse</artifactId>
  462. <version>${version.org.wildfly.extras.batavia}</version>
  463. </dependency>
  464. </dependencies>
  465. </dependencyManagement>
  466. <profiles>
  467. <profile>
  468. <id>spotbugs</id>
  469. <activation>
  470. <property>
  471. <name>findbugs</name> <!-- not modified just for compatibility reason -->
  472. </property>
  473. </activation>
  474. <build>
  475. <plugins>
  476. <plugin>
  477. <groupId>com.github.spotbugs</groupId>
  478. <artifactId>spotbugs-maven-plugin</artifactId>
  479. </plugin>
  480. </plugins>
  481. </build>
  482. </profile>
  483. <profile>
  484. <!-- Temporary profile to workaround issue described here https://github.com/spotbugs/spotbugs/issues/756. -->
  485. <id>spotbugs-jdk11</id>
  486. <activation>
  487. <jdk>11</jdk>
  488. <property>
  489. <name>findbugs</name> <!-- not modified just for compatibility reason -->
  490. </property>
  491. </activation>
  492. <build>
  493. <plugins>
  494. <plugin>
  495. <groupId>com.github.spotbugs</groupId>
  496. <artifactId>spotbugs-maven-plugin</artifactId>
  497. <configuration>
  498. <failOnError>false</failOnError>
  499. </configuration>
  500. </plugin>
  501. </plugins>
  502. </build>
  503. </profile>
  504. <profile>
  505. <id>jdk9</id>
  506. <activation>
  507. <jdk>9</jdk>
  508. </activation>
  509. <build>
  510. <pluginManagement>
  511. <plugins>
  512. <plugin>
  513. <groupId>org.apache.maven.plugins</groupId>
  514. <artifactId>maven-compiler-plugin</artifactId>
  515. <version>${version.compiler.plugin}</version>
  516. <configuration>
  517. <release>8</release>
  518. <!-- fork is needed so compiler args can be used -->
  519. <fork>true</fork>
  520. <failOnError>false</failOnError>
  521. <compilerArgs>
  522. <arg>-J--add-opens=java.base/java.lang=ALL-UNNAMED</arg>
  523. </compilerArgs>
  524. </configuration>
  525. </plugin>
  526. </plugins>
  527. </pluginManagement>
  528. </build>
  529. </profile>
  530. <profile>
  531. <id>dist</id>
  532. <activation>
  533. <property>
  534. <name>release</name>
  535. </property>
  536. </activation>
  537. <modules>
  538. <module>dist</module>
  539. </modules>
  540. </profile>
  541. <profile>
  542. <id>test-coverage</id>
  543. <modules>
  544. <module>coverage-report</module>
  545. </modules>
  546. <properties>
  547. <jacoco.agent.argLine>${jacoco.activated.agent.argLine}</jacoco.agent.argLine>
  548. </properties>
  549. <build>
  550. <plugins>
  551. <plugin>
  552. <groupId>org.jacoco</groupId>
  553. <artifactId>jacoco-maven-plugin</artifactId>
  554. <version>${version.org.jacoco}</version>
  555. <executions>
  556. <execution>
  557. <id>agent</id>
  558. <goals>
  559. <goal>prepare-agent</goal>
  560. </goals>
  561. <configuration>
  562. <includes>
  563. <include>io.undertow*</include>
  564. </includes>
  565. <propertyName>jacoco.activated.agent.argLine</propertyName>
  566. </configuration>
  567. </execution>
  568. </executions>
  569. </plugin>
  570. </plugins>
  571. </build>
  572. </profile>
  573. <profile>
  574. <id>only-unit-tests</id>
  575. <activation>
  576. <property>
  577. <name>onlyUnitTests</name>
  578. </property>
  579. </activation>
  580. <properties>
  581. <test.categories>io.undertow.testutils.category.UnitTest</test.categories>
  582. </properties>
  583. </profile>
  584. <profile>
  585. <id>skip-unit-tests</id>
  586. <activation>
  587. <property>
  588. <name>skipUnitTests</name>
  589. </property>
  590. </activation>
  591. <properties>
  592. <test.categories>NOT io.undertow.testutils.category.UnitTest</test.categories>
  593. </properties>
  594. </profile>
  595. <profile>
  596. <id>osgi</id>
  597. <activation>
  598. <property>
  599. <name>osgi</name>
  600. </property>
  601. </activation>
  602. <modules>
  603. <module>karaf</module>
  604. </modules>
  605. </profile>
  606. </profiles>
  607. </project>