logback-parent-1.4.11.pom 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>ch.qos.logback</groupId>
  7. <artifactId>logback-parent</artifactId>
  8. <version>1.4.11</version>
  9. <packaging>pom</packaging>
  10. <name>Logback-Parent</name>
  11. <description>logback project pom.xml file</description>
  12. <url>http://logback.qos.ch</url>
  13. <organization>
  14. <name>QOS.ch</name>
  15. <url>http://www.qos.ch</url>
  16. </organization>
  17. <inceptionYear>2005</inceptionYear>
  18. <licenses>
  19. <license>
  20. <name>Eclipse Public License - v 1.0</name>
  21. <url>http://www.eclipse.org/legal/epl-v10.html</url>
  22. </license>
  23. <license>
  24. <name>GNU Lesser General Public License</name>
  25. <url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html</url>
  26. </license>
  27. </licenses>
  28. <scm>
  29. <url>https://github.com/qos-ch/logback</url>
  30. <connection>scm:git@github.com:qos-ch/logback.git</connection>
  31. </scm>
  32. <modules>
  33. <module>logback-core</module>
  34. <module>logback-core-blackbox</module>
  35. <module>logback-classic</module>
  36. <module>logback-classic-blackbox</module>
  37. <module>logback-access</module>
  38. <module>logback-examples</module>
  39. </modules>
  40. <properties>
  41. <!-- yyyy-MM-dd'T'HH:mm:ss'Z' -->
  42. <project.build.outputTimestamp>2023-08-09T19:23:17Z</project.build.outputTimestamp>
  43. <jdk.version>11</jdk.version>
  44. <maven.compiler.release>${jdk.version}</maven.compiler.release>
  45. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  46. <junit.version>4.13.1</junit.version>
  47. <junit-jupiter-api.version>5.9.1</junit-jupiter-api.version>
  48. <junit-vintage-engine.version>5.9.1</junit-vintage-engine.version>
  49. <junit-jupiter-params.version>5.9.1</junit-jupiter-params.version>
  50. <assertj-core.version>3.23.1</assertj-core.version>
  51. <hamcrest.version>2.2</hamcrest.version>
  52. <jakarta.mail.version>2.1.0</jakarta.mail.version>
  53. <jakarta.activation.version>2.1.0</jakarta.activation.version>
  54. <jakarta.angus-mail.version>1.0.0</jakarta.angus-mail.version>
  55. <jakarta.servlet.version>5.0.0</jakarta.servlet.version>
  56. <greenmail.version>2.0.0-alpha-1</greenmail.version>
  57. <janino.version>3.1.8</janino.version>
  58. <!-- slf4j.version property is used below, in
  59. logback-classic/pom.xml, /logback-examples/src/main/resources/setClasspath.cmd, download.html
  60. -->
  61. <slf4j.version>2.0.7</slf4j.version>
  62. <cal10n.version>0.8.1</cal10n.version>
  63. <consolePlugin.version>1.1.0</consolePlugin.version>
  64. <tomcat.version>10.0.10</tomcat.version>
  65. <jetty.version>11.0.12</jetty.version>
  66. <jackson.version>2.15.0</jackson.version>
  67. <!--<jansi.version>1.18</jansi.version>-->
  68. <jansi.version>2.4.0</jansi.version>
  69. <mockito-core.version>4.8.0</mockito-core.version>
  70. <byte-buddy.version>1.12.14</byte-buddy.version>
  71. <maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
  72. <maven-surefire-plugin.version>3.0.0-M7</maven-surefire-plugin.version>
  73. <maven-site-plugin.version>3.7.1</maven-site-plugin.version>
  74. <maven-install-plugin.version>3.0.0-M1</maven-install-plugin.version>
  75. <maven-javadoc-plugin.version>3.3.0</maven-javadoc-plugin.version>
  76. <maven-source-plugin.version>3.2.0</maven-source-plugin.version>
  77. <maven-resources-plugin.version>3.1.0</maven-resources-plugin.version>
  78. <license-maven-plugin.version>3.0</license-maven-plugin.version>
  79. <maven-jar-plugin.version>3.2.2</maven-jar-plugin.version>
  80. <maven-jxr-plugin.version>3.1.1</maven-jxr-plugin.version>
  81. <maven-release-plugin.version>3.0.0-M4</maven-release-plugin.version>
  82. <maven-deploy-plugin.version>3.0.0-M1</maven-deploy-plugin.version>
  83. <maven-dependency-plugin.version>3.2.0</maven-dependency-plugin.version>
  84. <maven-bundle-plugin.version>5.1.8</maven-bundle-plugin.version>
  85. <maven-antrun-plugin.version>3.1.0</maven-antrun-plugin.version>
  86. <ant.version>1.10.12</ant.version>
  87. <cobertura.maven.plugin.version>2.7</cobertura.maven.plugin.version>
  88. </properties>
  89. <developers>
  90. <developer>
  91. <id>ceki</id>
  92. <name>Ceki Gulcu</name>
  93. <email>ceki@qos.ch</email>
  94. </developer>
  95. <developer>
  96. <id>hixi</id>
  97. <name>Joern Huxhorn</name>
  98. <email>huxi@undisclosed.org</email>
  99. </developer>
  100. </developers>
  101. <dependencies>
  102. <dependency>
  103. <groupId>org.assertj</groupId>
  104. <artifactId>assertj-core</artifactId>
  105. <version>${assertj-core.version}</version>
  106. <scope>test</scope>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.junit.jupiter</groupId>
  110. <artifactId>junit-jupiter-api</artifactId>
  111. <version>${junit-jupiter-api.version}</version>
  112. <scope>test</scope>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.junit.jupiter</groupId>
  116. <artifactId>junit-jupiter-engine</artifactId>
  117. <version>${junit-jupiter-api.version}</version>
  118. <scope>test</scope>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.hamcrest</groupId>
  122. <artifactId>hamcrest-library</artifactId>
  123. <version>${hamcrest.version}</version>
  124. <scope>test</scope>
  125. </dependency>
  126. </dependencies>
  127. <dependencyManagement>
  128. <dependencies>
  129. <!-- start of dependencies duplicated from logback-bom/pom.xml -->
  130. <dependency>
  131. <groupId>ch.qos.logback</groupId>
  132. <artifactId>logback-core</artifactId>
  133. <version>${project.version}</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>ch.qos.logback</groupId>
  137. <artifactId>logback-classic</artifactId>
  138. <version>${project.version}</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.slf4j</groupId>
  142. <artifactId>slf4j-api</artifactId>
  143. <version>${slf4j.version}</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>ch.qos.logback</groupId>
  147. <artifactId>logback-access</artifactId>
  148. <version>${project.version}</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>ch.qos.logback</groupId>
  152. <artifactId>logback-core</artifactId>
  153. <version>${project.version}</version>
  154. <type>test-jar</type>
  155. </dependency>
  156. <!-- end of dependencies duplicated from logback-bom/pom.xml -->
  157. <dependency>
  158. <groupId>org.codehaus.janino</groupId>
  159. <artifactId>janino</artifactId>
  160. <version>${janino.version}</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>org.codehaus.janino</groupId>
  164. <artifactId>commons-compiler</artifactId>
  165. <version>${janino.version}</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>org.fusesource.jansi</groupId>
  169. <artifactId>jansi</artifactId>
  170. <version>${jansi.version}</version>
  171. </dependency>
  172. <dependency>
  173. <groupId>jakarta.mail</groupId>
  174. <artifactId>jakarta.mail-api</artifactId>
  175. <version>${jakarta.mail.version}</version>
  176. </dependency>
  177. <dependency>
  178. <groupId>jakarta.activation</groupId>
  179. <artifactId>jakarta.activation-api</artifactId>
  180. <version>${jakarta.activation.version}</version>
  181. </dependency>
  182. <dependency>
  183. <groupId>org.eclipse.angus</groupId>
  184. <artifactId>angus-mail</artifactId>
  185. <version>${jakarta.angus-mail.version}</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>jakarta.servlet</groupId>
  189. <artifactId>jakarta.servlet-api</artifactId>
  190. <version>${jakarta.servlet.version}</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>com.icegreen</groupId>
  194. <artifactId>greenmail</artifactId>
  195. <version>${greenmail.version}</version>
  196. </dependency>
  197. <dependency>
  198. <groupId>org.dom4j</groupId>
  199. <artifactId>dom4j</artifactId>
  200. <version>2.0.3</version>
  201. </dependency>
  202. <dependency>
  203. <groupId>org.apache.tomcat</groupId>
  204. <artifactId>tomcat-catalina</artifactId>
  205. <version>${tomcat.version}</version>
  206. </dependency>
  207. <dependency>
  208. <groupId>org.apache.tomcat</groupId>
  209. <artifactId>tomcat-coyote</artifactId>
  210. <version>${tomcat.version}</version>
  211. </dependency>
  212. <dependency>
  213. <groupId>org.eclipse.jetty</groupId>
  214. <artifactId>jetty-server</artifactId>
  215. <version>${jetty.version}</version>
  216. </dependency>
  217. <dependency>
  218. <groupId>org.mockito</groupId>
  219. <artifactId>mockito-core</artifactId>
  220. <version>${mockito-core.version}</version>
  221. </dependency>
  222. <dependency>
  223. <groupId>net.bytebuddy</groupId>
  224. <artifactId>byte-buddy</artifactId>
  225. <version>${byte-buddy.version}</version>
  226. </dependency>
  227. </dependencies>
  228. </dependencyManagement>
  229. <build>
  230. <extensions>
  231. <extension>
  232. <groupId>org.apache.maven.wagon</groupId>
  233. <artifactId>wagon-ssh</artifactId>
  234. <version>2.10</version>
  235. </extension>
  236. </extensions>
  237. <pluginManagement>
  238. <plugins>
  239. <plugin>
  240. <groupId>org.apache.maven.plugins</groupId>
  241. <artifactId>maven-clean-plugin</artifactId>
  242. <version>3.0.0</version>
  243. </plugin>
  244. <plugin>
  245. <groupId>org.apache.maven.plugins</groupId>
  246. <artifactId>maven-compiler-plugin</artifactId>
  247. <version>${maven-compiler-plugin.version}</version>
  248. </plugin>
  249. <plugin>
  250. <groupId>org.apache.maven.plugins</groupId>
  251. <artifactId>maven-deploy-plugin</artifactId>
  252. <version>${maven-deploy-plugin.version}</version>
  253. </plugin>
  254. <plugin>
  255. <groupId>org.apache.maven.plugins</groupId>
  256. <artifactId>maven-install-plugin</artifactId>
  257. <version>${maven-install-plugin.version}</version>
  258. </plugin>
  259. <plugin>
  260. <groupId>org.apache.maven.plugins</groupId>
  261. <artifactId>maven-resources-plugin</artifactId>
  262. <version>${maven-resources-plugin.version}</version>
  263. </plugin>
  264. <plugin>
  265. <groupId>org.apache.maven.plugins</groupId>
  266. <artifactId>maven-site-plugin</artifactId>
  267. <version>${maven-site-plugin.version}</version>
  268. </plugin>
  269. <plugin>
  270. <groupId>org.apache.maven.plugins</groupId>
  271. <artifactId>maven-surefire-plugin</artifactId>
  272. <version>${maven-surefire-plugin.version}</version>
  273. </plugin>
  274. <plugin>
  275. <groupId>org.apache.maven.plugins</groupId>
  276. <artifactId>maven-jar-plugin</artifactId>
  277. <version>${maven-jar-plugin.version}</version>
  278. <configuration>
  279. <outputTimestamp>${project.build.outputTimestamp}</outputTimestamp>
  280. <archive>
  281. <index>true</index>
  282. <manifest>
  283. <!-- Add version information into the MANIFEST so it is accessible by
  284. calling Package#getImplementationVersion()
  285. -->
  286. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  287. <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
  288. </manifest>
  289. </archive>
  290. </configuration>
  291. </plugin>
  292. <plugin>
  293. <groupId>org.apache.maven.plugins</groupId>
  294. <artifactId>maven-javadoc-plugin</artifactId>
  295. <version>${maven-javadoc-plugin.version}</version>
  296. </plugin>
  297. <plugin>
  298. <groupId>org.apache.maven.plugins</groupId>
  299. <artifactId>maven-dependency-plugin</artifactId>
  300. <version>${maven-dependency-plugin.version}</version>
  301. </plugin>
  302. <plugin>
  303. <groupId>org.apache.maven.plugins</groupId>
  304. <artifactId>maven-release-plugin</artifactId>
  305. <version>${maven-release-plugin.version}</version>
  306. </plugin>
  307. <plugin>
  308. <groupId>org.apache.maven.plugins</groupId>
  309. <artifactId>maven-source-plugin</artifactId>
  310. <version>${maven-source-plugin.version}</version>
  311. </plugin>
  312. <plugin>
  313. <groupId>org.codehaus.mojo</groupId>
  314. <artifactId>findbugs-maven-plugin</artifactId>
  315. <version>3.0.4</version>
  316. </plugin>
  317. <plugin>
  318. <groupId>org.apache.felix</groupId>
  319. <artifactId>maven-bundle-plugin</artifactId>
  320. <version>${maven-bundle-plugin.version}</version>
  321. </plugin>
  322. <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
  323. <plugin>
  324. <groupId>org.eclipse.m2e</groupId>
  325. <artifactId>lifecycle-mapping</artifactId>
  326. <version>1.0.0</version>
  327. <configuration>
  328. <lifecycleMappingMetadata>
  329. <pluginExecutions>
  330. </pluginExecutions>
  331. </lifecycleMappingMetadata>
  332. </configuration>
  333. </plugin>
  334. </plugins>
  335. </pluginManagement>
  336. <plugins>
  337. <plugin>
  338. <groupId>org.apache.maven.plugins</groupId>
  339. <artifactId>maven-compiler-plugin</artifactId>
  340. <configuration>
  341. <release>${jdk.version}</release>
  342. </configuration>
  343. </plugin>
  344. <plugin>
  345. <groupId>org.apache.maven.plugins</groupId>
  346. <artifactId>maven-source-plugin</artifactId>
  347. <executions>
  348. <execution>
  349. <id>attach-sources</id>
  350. <goals>
  351. <goal>jar</goal>
  352. <goal>test-jar</goal>
  353. </goals>
  354. </execution>
  355. </executions>
  356. </plugin>
  357. <!--
  358. <plugin>
  359. <groupId>org.simplify4u.plugins</groupId>
  360. <artifactId>pgpverify-maven-plugin</artifactId>
  361. <version>1.16.0</version>
  362. </plugin>
  363. -->
  364. </plugins>
  365. </build>
  366. <distributionManagement>
  367. <repository>
  368. <id>sonatype-nexus-staging</id>
  369. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  370. </repository>
  371. </distributionManagement>
  372. <reporting>
  373. <plugins>
  374. <!--
  375. <plugin>
  376. <groupId>org.apache.maven.plugins</groupId>
  377. <artifactId>maven-jxr-plugin</artifactId>
  378. <version>2.5</version>
  379. <configuration>
  380. <aggregate>true</aggregate>
  381. <javadocDir>target/site/apidocs/</javadocDir>
  382. <linkJavadoc>true</linkJavadoc>
  383. </configuration>
  384. </plugin>
  385. -->
  386. <plugin>
  387. <groupId>org.apache.maven.plugins</groupId>
  388. <artifactId>maven-jxr-plugin</artifactId>
  389. <version>${maven-jxr-plugin.version}</version>
  390. <configuration>
  391. <aggregate>true</aggregate>
  392. <javadocDir>target/site/apidocs/</javadocDir>
  393. <linkJavadoc>true</linkJavadoc>
  394. </configuration>
  395. </plugin>
  396. <plugin>
  397. <groupId>org.apache.maven.plugins</groupId>
  398. <artifactId>maven-javadoc-plugin</artifactId>
  399. <configuration>
  400. <aggregate>true</aggregate>
  401. <linkJavadoc>true</linkJavadoc>
  402. <linksource>true</linksource>
  403. <doclint>none</doclint>
  404. <sourceFileExcludes>
  405. <sourceFileExclude>**/module-info.java</sourceFileExclude>
  406. </sourceFileExcludes>
  407. <links>
  408. <link>
  409. http://docs.oracle.com/javase/7/docs/api/
  410. </link>
  411. </links>
  412. <groups>
  413. <group>
  414. <title>Logback Core</title>
  415. <packages>ch.qos.logback.core:ch.qos.logback.core.*
  416. </packages>
  417. </group>
  418. <group>
  419. <title>Logback Classic</title>
  420. <packages>
  421. ch.qos.logback:ch.qos.logback.classic:ch.qos.logback.classic.*
  422. </packages>
  423. </group>
  424. <group>
  425. <title>Logback Access</title>
  426. <packages>ch.qos.logback.access:ch.qos.logback.access.*
  427. </packages>
  428. </group>
  429. <group>
  430. <title>Examples</title>
  431. <packages>chapter*:joran*</packages>
  432. </group>
  433. </groups>
  434. </configuration>
  435. </plugin>
  436. </plugins>
  437. </reporting>
  438. <profiles>
  439. <profile>
  440. <id>testSkip</id>
  441. <properties>
  442. <maven.test.skip>true</maven.test.skip>
  443. </properties>
  444. </profile>
  445. <profile>
  446. <id>license</id>
  447. <build>
  448. <plugins>
  449. <plugin>
  450. <groupId>com.mycila</groupId>
  451. <artifactId>license-maven-plugin</artifactId>
  452. <version>${license-maven-plugin.version}</version>
  453. <configuration>
  454. <header>src/main/licenseHeader.txt</header>
  455. <quiet>false</quiet>
  456. <failIfMissing>true</failIfMissing>
  457. <aggregate>true</aggregate>
  458. <includes>
  459. <include>src/**/*.java</include>
  460. <include>src/**/*.groovy</include>
  461. </includes>
  462. <useDefaultExcludes>true</useDefaultExcludes>
  463. <useDefaultMapping>true</useDefaultMapping>
  464. <properties>
  465. <year>1999</year>
  466. </properties>
  467. <headerDefinitions>
  468. <headerDefinition>src/main/javadocHeaders.xml</headerDefinition>
  469. </headerDefinitions>
  470. </configuration>
  471. </plugin>
  472. </plugins>
  473. </build>
  474. </profile>
  475. <profile>
  476. <id>javadocjar</id>
  477. <build>
  478. <plugins>
  479. <plugin>
  480. <groupId>org.apache.maven.plugins</groupId>
  481. <artifactId>maven-javadoc-plugin</artifactId>
  482. <version>${maven-javadoc-plugin.version}</version>
  483. <executions>
  484. <execution>
  485. <id>attach-javadocs</id>
  486. <goals>
  487. <goal>jar</goal>
  488. </goals>
  489. </execution>
  490. </executions>
  491. <configuration>
  492. <doclint>none</doclint>
  493. <sourceFileExcludes>
  494. <sourceFileExclude>**/module-info.java</sourceFileExclude>
  495. </sourceFileExcludes>
  496. </configuration>
  497. </plugin>
  498. </plugins>
  499. </build>
  500. </profile>
  501. <profile>
  502. <id>sign-artifacts</id>
  503. <build>
  504. <plugins>
  505. <plugin>
  506. <groupId>org.apache.maven.plugins</groupId>
  507. <artifactId>maven-gpg-plugin</artifactId>
  508. <version>1.6</version>
  509. <executions>
  510. <execution>
  511. <id>sign-artifacts</id>
  512. <phase>verify</phase>
  513. <goals>
  514. <goal>sign</goal>
  515. </goals>
  516. </execution>
  517. </executions>
  518. </plugin>
  519. </plugins>
  520. </build>
  521. </profile>
  522. </profiles>
  523. </project>