logback-parent-1.2.3.pom 17 KB

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