logback-parent-1.2.11.pom 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583
  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.2.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/ceki/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-classic</module>
  35. <module>logback-access</module>
  36. <module>logback-site</module>
  37. <module>logback-examples</module>
  38. </modules>
  39. <properties>
  40. <project.build.outputTimestamp>2022-03-05T19:45:00Z</project.build.outputTimestamp>
  41. <maven.compiler.source>1.6</maven.compiler.source>
  42. <maven.compiler.target>1.6</maven.compiler.target>
  43. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  44. <junit.version>4.10</junit.version>
  45. <javax.mail.version>1.4</javax.mail.version>
  46. <janino.version>3.0.6</janino.version>
  47. <!-- slf4j.version property is used below, in
  48. logback-classic/pom.xml and in setClasspath.cmd
  49. -->
  50. <slf4j.version>1.7.32</slf4j.version>
  51. <cal10n.version>0.8.1</cal10n.version>
  52. <consolePlugin.version>1.1.0</consolePlugin.version>
  53. <!--<tomcat.version>7.0.59</tomcat.version>-->
  54. <tomcat.version>8.5.9</tomcat.version>
  55. <!--<jetty.version>7.5.1.v20110908</jetty.version>-->
  56. <jetty.version>8.2.0.v20160908</jetty.version>
  57. <!--<jetty.version>9.2.9.v20150224</jetty.version>-->
  58. <jansi.version>1.9</jansi.version>
  59. <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
  60. <maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
  61. <maven-site-plugin.version>3.7.1</maven-site-plugin.version>
  62. <maven-javadoc-plugin.version>3.1.0</maven-javadoc-plugin.version>
  63. <maven-source-plugin.version>3.2.0</maven-source-plugin.version>
  64. <maven-license-plugin.version>3.0</maven-license-plugin.version>
  65. <maven-jar-plugin.version>3.2.2</maven-jar-plugin.version>
  66. <maven-jxr-plugin.version>3.1.1</maven-jxr-plugin.version>
  67. <maven-deploy-plugin.version>3.0.0-M1</maven-deploy-plugin.version>
  68. <cobertura.maven.plugin.version>2.7</cobertura.maven.plugin.version>
  69. <maven-bundle-plugin.version>5.1.4</maven-bundle-plugin.version>
  70. </properties>
  71. <developers>
  72. <developer>
  73. <id>ceki</id>
  74. <name>Ceki Gulcu</name>
  75. <email>ceki@qos.ch</email>
  76. </developer>
  77. <developer>
  78. <id>hixi</id>
  79. <name>Joern Huxhorn</name>
  80. <email>huxi@undisclosed.org</email>
  81. </developer>
  82. </developers>
  83. <dependencies>
  84. <dependency>
  85. <groupId>junit</groupId>
  86. <artifactId>junit</artifactId>
  87. <version>${junit.version}</version>
  88. <scope>test</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.assertj</groupId>
  92. <artifactId>assertj-core</artifactId>
  93. <version>1.7.1</version>
  94. <scope>test</scope>
  95. </dependency>
  96. </dependencies>
  97. <dependencyManagement>
  98. <dependencies>
  99. <!-- start of dependencies duplicated from logback-bom/pom.xml -->
  100. <dependency>
  101. <groupId>ch.qos.logback</groupId>
  102. <artifactId>logback-core</artifactId>
  103. <version>${project.version}</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>ch.qos.logback</groupId>
  107. <artifactId>logback-classic</artifactId>
  108. <version>${project.version}</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.slf4j</groupId>
  112. <artifactId>slf4j-api</artifactId>
  113. <version>${slf4j.version}</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>ch.qos.logback</groupId>
  117. <artifactId>logback-access</artifactId>
  118. <version>${project.version}</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>ch.qos.logback</groupId>
  122. <artifactId>logback-core</artifactId>
  123. <version>${project.version}</version>
  124. <type>test-jar</type>
  125. </dependency>
  126. <!-- end of dependencies duplicated from logback-bom/pom.xml -->
  127. <dependency>
  128. <groupId>org.codehaus.janino</groupId>
  129. <artifactId>janino</artifactId>
  130. <version>${janino.version}</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.codehaus.groovy</groupId>
  134. <artifactId>groovy</artifactId>
  135. <version>${groovy.version}</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.codehaus.groovy</groupId>
  139. <artifactId>groovy-test</artifactId>
  140. <version>${groovy.version}</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>org.fusesource.jansi</groupId>
  144. <artifactId>jansi</artifactId>
  145. <version>${jansi.version}</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>javax.mail</groupId>
  149. <artifactId>mail</artifactId>
  150. <version>${javax.mail.version}</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>dom4j</groupId>
  154. <artifactId>dom4j</artifactId>
  155. <version>1.6.1</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.apache.tomcat</groupId>
  159. <artifactId>tomcat-catalina</artifactId>
  160. <version>${tomcat.version}</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>org.apache.tomcat</groupId>
  164. <artifactId>tomcat-coyote</artifactId>
  165. <version>${tomcat.version}</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>org.eclipse.jetty</groupId>
  169. <artifactId>jetty-server</artifactId>
  170. <version>${jetty.version}</version>
  171. </dependency>
  172. <dependency>
  173. <groupId>javax.servlet</groupId>
  174. <artifactId>javax.servlet-api</artifactId>
  175. <version>3.1.0</version>
  176. </dependency>
  177. <dependency>
  178. <groupId>joda-time</groupId>
  179. <artifactId>joda-time</artifactId>
  180. <version>2.9.2</version>
  181. </dependency>
  182. <dependency>
  183. <groupId>org.mockito</groupId>
  184. <artifactId>mockito-core</artifactId>
  185. <version>2.7.9</version>
  186. </dependency>
  187. </dependencies>
  188. </dependencyManagement>
  189. <build>
  190. <extensions>
  191. <extension>
  192. <groupId>org.apache.maven.wagon</groupId>
  193. <artifactId>wagon-ssh</artifactId>
  194. <version>2.10</version>
  195. </extension>
  196. </extensions>
  197. <pluginManagement>
  198. <plugins>
  199. <plugin>
  200. <groupId>org.apache.maven.plugins</groupId>
  201. <artifactId>maven-clean-plugin</artifactId>
  202. <version>3.0.0</version>
  203. </plugin>
  204. <plugin>
  205. <groupId>org.apache.maven.plugins</groupId>
  206. <artifactId>maven-compiler-plugin</artifactId>
  207. <version>${maven-compiler-plugin.version}</version>
  208. </plugin>
  209. <plugin>
  210. <groupId>org.apache.maven.plugins</groupId>
  211. <artifactId>maven-deploy-plugin</artifactId>
  212. <version>${maven-deploy-plugin.version}</version>
  213. </plugin>
  214. <plugin>
  215. <groupId>org.apache.maven.plugins</groupId>
  216. <artifactId>maven-install-plugin</artifactId>
  217. <version>2.5.2</version>
  218. </plugin>
  219. <plugin>
  220. <groupId>org.apache.maven.plugins</groupId>
  221. <artifactId>maven-resources-plugin</artifactId>
  222. <version>3.0.1</version>
  223. </plugin>
  224. <plugin>
  225. <groupId>org.apache.maven.plugins</groupId>
  226. <artifactId>maven-site-plugin</artifactId>
  227. <version>${maven-site-plugin.version}</version>
  228. </plugin>
  229. <plugin>
  230. <groupId>org.apache.maven.plugins</groupId>
  231. <artifactId>maven-surefire-plugin</artifactId>
  232. <version>${maven-surefire-plugin.version}</version>
  233. </plugin>
  234. <plugin>
  235. <groupId>org.apache.maven.plugins</groupId>
  236. <artifactId>maven-jar-plugin</artifactId>
  237. <version>${maven-jar-plugin.version}</version>
  238. </plugin>
  239. <plugin>
  240. <groupId>org.apache.maven.plugins</groupId>
  241. <artifactId>maven-javadoc-plugin</artifactId>
  242. <version>${maven-javadoc-plugin.version}</version>
  243. </plugin>
  244. <plugin>
  245. <groupId>org.apache.maven.plugins</groupId>
  246. <artifactId>maven-dependency-plugin</artifactId>
  247. <version>2.10</version>
  248. </plugin>
  249. <plugin>
  250. <groupId>org.apache.maven.plugins</groupId>
  251. <artifactId>maven-release-plugin</artifactId>
  252. <version>2.5.3</version>
  253. </plugin>
  254. <plugin>
  255. <groupId>org.apache.maven.plugins</groupId>
  256. <artifactId>maven-source-plugin</artifactId>
  257. <version>${maven-source-plugin.version}</version>
  258. </plugin>
  259. <plugin>
  260. <groupId>org.codehaus.mojo</groupId>
  261. <artifactId>findbugs-maven-plugin</artifactId>
  262. <version>3.0.4</version>
  263. </plugin>
  264. <plugin>
  265. <groupId>org.apache.felix</groupId>
  266. <artifactId>maven-bundle-plugin</artifactId>
  267. <version>${maven-bundle-plugin.version}</version>
  268. </plugin>
  269. <plugin>
  270. <groupId>org.codehaus.mojo</groupId>
  271. <artifactId>animal-sniffer-maven-plugin</artifactId>
  272. <version>1.15</version>
  273. <configuration>
  274. <ignores>
  275. <ignore>sun.reflect.Reflection</ignore>
  276. </ignores>
  277. <signature>
  278. <groupId>org.codehaus.mojo.signature</groupId>
  279. <artifactId>java16</artifactId>
  280. <version>1.0</version>
  281. </signature>
  282. </configuration>
  283. </plugin>
  284. </plugins>
  285. </pluginManagement>
  286. <plugins>
  287. <plugin>
  288. <groupId>org.apache.maven.plugins</groupId>
  289. <artifactId>maven-source-plugin</artifactId>
  290. <executions>
  291. <execution>
  292. <id>attach-sources</id>
  293. <goals>
  294. <goal>jar</goal>
  295. <goal>test-jar</goal>
  296. </goals>
  297. </execution>
  298. </executions>
  299. </plugin>
  300. <plugin>
  301. <groupId>org.apache.maven.plugins</groupId>
  302. <artifactId>maven-assembly-plugin</artifactId>
  303. <version>3.0.0</version>
  304. <configuration>
  305. <descriptors>
  306. <descriptor>src/main/assembly/dist.xml</descriptor>
  307. </descriptors>
  308. <finalName>logback-${project.version}</finalName>
  309. <appendAssemblyId>false</appendAssemblyId>
  310. <outputDirectory>target/site/dist/</outputDirectory>
  311. </configuration>
  312. </plugin>
  313. <plugin>
  314. <groupId>org.codehaus.mojo</groupId>
  315. <artifactId>findbugs-maven-plugin</artifactId>
  316. <configuration>
  317. <threshold>High</threshold>
  318. <!--<trace>true</trace>-->
  319. <excludeFilterFile>findbugs-exclude.xml</excludeFilterFile>
  320. </configuration>
  321. </plugin>
  322. <!-- ================ site plugin ==================== -->
  323. <plugin>
  324. <groupId>org.apache.maven.plugins</groupId>
  325. <artifactId>maven-site-plugin</artifactId>
  326. <configuration>
  327. <reportPlugins>
  328. <plugin>
  329. <groupId>org.apache.maven.plugins</groupId>
  330. <artifactId>maven-jxr-plugin</artifactId>
  331. <version>${maven-jxr-plugin.version}</version>
  332. <configuration>
  333. <aggregate>true</aggregate>
  334. <javadocDir>target/site/apidocs/</javadocDir>
  335. <linkJavadoc>true</linkJavadoc>
  336. </configuration>
  337. </plugin>
  338. <plugin>
  339. <groupId>org.apache.maven.plugins</groupId>
  340. <artifactId>maven-javadoc-plugin</artifactId>
  341. <version>${maven-javadoc-plugin.version}</version>
  342. <configuration>
  343. <aggregate>true</aggregate>
  344. <linksource>true</linksource>
  345. <additionalOptions>
  346. <additionalOption>-Xdoclint:none</additionalOption>
  347. <doclint>none</doclint>
  348. </additionalOptions>
  349. <links>
  350. <link>
  351. http://docs.oracle.com/javase/6/docs/api/
  352. </link>
  353. </links>
  354. <groups>
  355. <group>
  356. <title>Logback Core</title>
  357. <packages>ch.qos.logback.core:ch.qos.logback.core.*
  358. </packages>
  359. </group>
  360. <group>
  361. <title>Logback Classic</title>
  362. <packages>
  363. ch.qos.logback:ch.qos.logback.classic:ch.qos.logback.classic.*
  364. </packages>
  365. </group>
  366. <group>
  367. <title>Logback Access</title>
  368. <packages>ch.qos.logback.access:ch.qos.logback.access.*
  369. </packages>
  370. </group>
  371. <group>
  372. <title>SLF4J</title>
  373. <packages>org.slf4j:org.slf4j.*</packages>
  374. </group>
  375. <group>
  376. <title>Examples</title>
  377. <packages>chapter*:joran*</packages>
  378. </group>
  379. </groups>
  380. </configuration>
  381. </plugin>
  382. </reportPlugins>
  383. </configuration>
  384. </plugin>
  385. </plugins>
  386. </build>
  387. <distributionManagement>
  388. <site>
  389. <id>qos_ch</id>
  390. <url>scp://te.qos.ch/var/www/logback.qos.ch/htdocs/</url>
  391. </site>
  392. <repository>
  393. <id>sonatype-nexus-staging</id>
  394. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  395. </repository>
  396. </distributionManagement>
  397. <profiles>
  398. <profile>
  399. <id>java6</id>
  400. <build>
  401. <plugins>
  402. <plugin>
  403. <groupId>org.apache.maven.plugins</groupId>
  404. <artifactId>maven-toolchains-plugin</artifactId>
  405. <version>1.1</version>
  406. <executions>
  407. <execution>
  408. <goals>
  409. <goal>toolchain</goal>
  410. </goals>
  411. </execution>
  412. </executions>
  413. <configuration>
  414. <toolchains>
  415. <jdk>
  416. <version>1.6</version>
  417. </jdk>
  418. </toolchains>
  419. </configuration>
  420. </plugin>
  421. </plugins>
  422. </build>
  423. </profile>
  424. <profile>
  425. <id>testSkip</id>
  426. <properties>
  427. <maven.test.skip>true</maven.test.skip>
  428. </properties>
  429. </profile>
  430. <profile>
  431. <id>license</id>
  432. <build>
  433. <plugins>
  434. <plugin>
  435. <groupId>com.mycila</groupId>
  436. <artifactId>license-maven-plugin</artifactId>
  437. <version>${maven-license-plugin.version}</version>
  438. <configuration>
  439. <header>src/main/licenseHeader.txt</header>
  440. <quiet>false</quiet>
  441. <failIfMissing>true</failIfMissing>
  442. <aggregate>true</aggregate>
  443. <includes>
  444. <include>src/**/*.java</include>
  445. <include>src/**/*.groovy</include>
  446. </includes>
  447. <useDefaultExcludes>true</useDefaultExcludes>
  448. <useDefaultMapping>true</useDefaultMapping>
  449. <properties>
  450. <year>1999</year>
  451. </properties>
  452. <headerDefinitions>
  453. <headerDefinition>src/main/javadocHeaders.xml</headerDefinition>
  454. </headerDefinitions>
  455. </configuration>
  456. </plugin>
  457. </plugins>
  458. </build>
  459. </profile>
  460. <profile>
  461. <id>javadocjar</id>
  462. <build>
  463. <plugins>
  464. <plugin>
  465. <groupId>org.apache.maven.plugins</groupId>
  466. <artifactId>maven-javadoc-plugin</artifactId>
  467. <version>${maven-javadoc-plugin.version}</version>
  468. <executions>
  469. <execution>
  470. <id>attach-javadocs</id>
  471. <goals>
  472. <goal>jar</goal>
  473. <goal>test-jar</goal>
  474. </goals>
  475. </execution>
  476. </executions>
  477. <configuration>
  478. <additionalparam>-Xdoclint:none</additionalparam>
  479. <doclint>none</doclint>
  480. </configuration>
  481. </plugin>
  482. </plugins>
  483. </build>
  484. </profile>
  485. <profile>
  486. <id>sign-artifacts</id>
  487. <build>
  488. <plugins>
  489. <plugin>
  490. <groupId>org.apache.maven.plugins</groupId>
  491. <artifactId>maven-gpg-plugin</artifactId>
  492. <version>1.6</version>
  493. <executions>
  494. <execution>
  495. <id>sign-artifacts</id>
  496. <phase>verify</phase>
  497. <goals>
  498. <goal>sign</goal>
  499. </goals>
  500. </execution>
  501. </executions>
  502. </plugin>
  503. </plugins>
  504. </build>
  505. </profile>
  506. <profile>
  507. <id>cobertura</id>
  508. <build>
  509. <plugins>
  510. <plugin>
  511. <groupId>org.apache.maven.plugins</groupId>
  512. <artifactId>maven-site-plugin</artifactId>
  513. <configuration>
  514. <reportPlugins>
  515. <plugin>
  516. <groupId>org.codehaus.mojo</groupId>
  517. <artifactId>cobertura-maven-plugin</artifactId>
  518. <version>${cobertura.maven.plugin.version}</version>
  519. <configuration>
  520. <formats>
  521. <format>html</format>
  522. </formats>
  523. <aggregate>true</aggregate>
  524. </configuration>
  525. </plugin>
  526. </reportPlugins>
  527. </configuration>
  528. </plugin>
  529. </plugins>
  530. </build>
  531. </profile>
  532. </profiles>
  533. </project>