ehcache-parent-2.5.pom 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>net.sf.ehcache</groupId>
  5. <artifactId>ehcache-parent</artifactId>
  6. <packaging>pom</packaging>
  7. <version>2.5</version>
  8. <name>Ehcache Parent</name>
  9. <description>Ehcache is a widely used, pure Java, in-process, distributed cache</description>
  10. <url>http://ehcache.org</url>
  11. <inceptionYear>2003</inceptionYear>
  12. <organization>
  13. <name>Terracotta, Inc.</name>
  14. <url>http://www.terracotta.org</url>
  15. </organization>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <maven-forge-plugin.version>1.0.9</maven-forge-plugin.version>
  19. <skipDeploy>false</skipDeploy>
  20. <skipJavadoc>false</skipJavadoc>
  21. <checkstyle-groupId>org.terracotta.checkstyle</checkstyle-groupId>
  22. <checkstyle-artifactId>terracotta-checkstyle</checkstyle-artifactId>
  23. <checkstyle-version>1.0</checkstyle-version>
  24. <checkstyle-suppressions-file>${basedir}/checkstyle/suppressions.xml</checkstyle-suppressions-file>
  25. <checkstyle-config-file>checkstyle.xml</checkstyle-config-file>
  26. <checkstyle-header-file>header.txt</checkstyle-header-file>
  27. <terracotta-snapshots-url>http://nexus.terracotta.lan:8080/content/repositories/terracotta-snapshots</terracotta-snapshots-url>
  28. <terracotta-staging-url>http://nexus.terracotta.lan:8080/content/repositories/terracotta-staging</terracotta-staging-url>
  29. <terracotta-releases-url>http://nexus.terracotta.lan:8080/content/repositories/terracotta-releases</terracotta-releases-url>
  30. </properties>
  31. <build>
  32. <pluginManagement>
  33. <plugins>
  34. <plugin>
  35. <groupId>org.apache.maven.plugins</groupId>
  36. <artifactId>maven-javadoc-plugin</artifactId>
  37. <version>2.8.1</version>
  38. <configuration>
  39. <skip>${skipJavadoc}</skip>
  40. </configuration>
  41. <executions>
  42. <execution>
  43. <id>attach-javadocs</id>
  44. <goals>
  45. <goal>jar</goal>
  46. </goals>
  47. </execution>
  48. </executions>
  49. </plugin>
  50. <plugin>
  51. <groupId>org.apache.maven.plugins</groupId>
  52. <artifactId>maven-source-plugin</artifactId>
  53. <version>2.1.2</version>
  54. <executions>
  55. <execution>
  56. <id>attach-sources</id>
  57. <phase>package</phase>
  58. <goals>
  59. <goal>jar</goal>
  60. </goals>
  61. </execution>
  62. </executions>
  63. </plugin>
  64. <plugin>
  65. <groupId>org.codehaus.mojo</groupId>
  66. <artifactId>findbugs-maven-plugin</artifactId>
  67. <version>2.4.0</version>
  68. <configuration>
  69. <findbugsXmlOutput>true</findbugsXmlOutput>
  70. <findbugsXmlWithMessages>true</findbugsXmlWithMessages>
  71. <xmlOutput>true</xmlOutput>
  72. </configuration>
  73. </plugin>
  74. <plugin>
  75. <groupId>org.apache.maven.plugins</groupId>
  76. <artifactId>maven-deploy-plugin</artifactId>
  77. <version>2.4</version>
  78. <configuration>
  79. <skip>${skipDeploy}</skip>
  80. </configuration>
  81. </plugin>
  82. <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
  83. <plugin>
  84. <groupId>org.eclipse.m2e</groupId>
  85. <artifactId>lifecycle-mapping</artifactId>
  86. <version>1.0.0</version>
  87. <configuration>
  88. <lifecycleMappingMetadata>
  89. <pluginExecutions>
  90. <pluginExecution>
  91. <pluginExecutionFilter>
  92. <groupId>org.codehaus.mojo</groupId>
  93. <artifactId>xml-maven-plugin</artifactId>
  94. <versionRange>[1.0,)</versionRange>
  95. <goals>
  96. <goal>transform</goal>
  97. </goals>
  98. </pluginExecutionFilter>
  99. <action>
  100. <ignore />
  101. </action>
  102. </pluginExecution>
  103. <pluginExecution>
  104. <pluginExecutionFilter>
  105. <groupId>org.apache.maven.plugins</groupId>
  106. <artifactId>maven-dependency-plugin</artifactId>
  107. <versionRange>[1.0,)</versionRange>
  108. <goals>
  109. <goal>copy</goal>
  110. <goal>copy-dependencies</goal>
  111. <goal>unpack-dependencies</goal>
  112. </goals>
  113. </pluginExecutionFilter>
  114. <action>
  115. <ignore />
  116. </action>
  117. </pluginExecution>
  118. <pluginExecution>
  119. <pluginExecutionFilter>
  120. <groupId>org.apache.maven.plugins</groupId>
  121. <artifactId>maven-antrun-plugin</artifactId>
  122. <versionRange>[1.3,)</versionRange>
  123. <goals>
  124. <goal>run</goal>
  125. </goals>
  126. </pluginExecutionFilter>
  127. <action>
  128. <ignore />
  129. </action>
  130. </pluginExecution>
  131. <pluginExecution>
  132. <pluginExecutionFilter>
  133. <groupId>org.terracotta</groupId>
  134. <artifactId>maven-forge-plugin</artifactId>
  135. <versionRange>[1.0.4,)</versionRange>
  136. <goals>
  137. <goal>manifest</goal>
  138. <goal>buildinfo</goal>
  139. <goal>sag-finder</goal>
  140. <goal>setl2classpath</goal>
  141. </goals>
  142. </pluginExecutionFilter>
  143. <action>
  144. <ignore />
  145. </action>
  146. </pluginExecution>
  147. <pluginExecution>
  148. <pluginExecutionFilter>
  149. <groupId>org.codehaus.gmaven</groupId>
  150. <artifactId>gmaven-plugin</artifactId>
  151. <versionRange>[1.3,)</versionRange>
  152. <goals>
  153. <goal>execute</goal>
  154. </goals>
  155. </pluginExecutionFilter>
  156. <action>
  157. <ignore />
  158. </action>
  159. </pluginExecution>
  160. <pluginExecution>
  161. <pluginExecutionFilter>
  162. <groupId>org.codehaus.mojo</groupId>
  163. <artifactId>rmic-maven-plugin</artifactId>
  164. <versionRange>[1.1,)</versionRange>
  165. <goals>
  166. <goal>rmic</goal>
  167. </goals>
  168. </pluginExecutionFilter>
  169. <action>
  170. <ignore />
  171. </action>
  172. </pluginExecution>
  173. <pluginExecution>
  174. <pluginExecutionFilter>
  175. <groupId>org.apache.maven.plugins</groupId>
  176. <artifactId>maven-checkstyle-plugin</artifactId>
  177. <versionRange>[2.7,)</versionRange>
  178. <goals>
  179. <goal>checkstyle</goal>
  180. </goals>
  181. </pluginExecutionFilter>
  182. <action>
  183. <ignore />
  184. </action>
  185. </pluginExecution>
  186. </pluginExecutions>
  187. </lifecycleMappingMetadata>
  188. </configuration>
  189. </plugin>
  190. </plugins>
  191. </pluginManagement>
  192. <plugins>
  193. <plugin>
  194. <groupId>org.apache.maven.plugins</groupId>
  195. <artifactId>maven-javadoc-plugin</artifactId>
  196. </plugin>
  197. <plugin>
  198. <groupId>org.apache.maven.plugins</groupId>
  199. <artifactId>maven-source-plugin</artifactId>
  200. </plugin>
  201. <plugin>
  202. <groupId>org.apache.maven.plugins</groupId>
  203. <artifactId>maven-compiler-plugin</artifactId>
  204. <version>2.3.2</version>
  205. <configuration>
  206. <source>1.6</source>
  207. <target>1.6</target>
  208. </configuration>
  209. </plugin>
  210. <plugin>
  211. <groupId>org.apache.maven.plugins</groupId>
  212. <artifactId>maven-deploy-plugin</artifactId>
  213. </plugin>
  214. <plugin>
  215. <groupId>org.terracotta</groupId>
  216. <artifactId>maven-forge-plugin</artifactId>
  217. <version>${maven-forge-plugin.version}</version>
  218. <dependencies>
  219. <dependency>
  220. <groupId>com.sag</groupId>
  221. <artifactId>finder</artifactId>
  222. <version>1.0.0</version>
  223. </dependency>
  224. </dependencies>
  225. <executions>
  226. <execution>
  227. <id>run-sag-finder</id>
  228. <phase>compile</phase>
  229. <goals>
  230. <goal>sag-finder</goal>
  231. </goals>
  232. <configuration>
  233. <onlyRunWhenSagDepsIsTrue>true</onlyRunWhenSagDepsIsTrue>
  234. <excludeGroupIds>gf-3122</excludeGroupIds>
  235. <excludeArtifactIds>jackson-xc</excludeArtifactIds>
  236. </configuration>
  237. </execution>
  238. </executions>
  239. </plugin>
  240. </plugins>
  241. </build>
  242. <profiles>
  243. <profile>
  244. <!-- Profile to sign artifacts with a PGP key (using GPG). -->
  245. <id>sign-artifacts</id>
  246. <activation>
  247. <property>
  248. <name>performRelease</name>
  249. <value>true</value>
  250. </property>
  251. </activation>
  252. <build>
  253. <plugins>
  254. <plugin>
  255. <groupId>org.apache.maven.plugins</groupId>
  256. <artifactId>maven-gpg-plugin</artifactId>
  257. <version>1.4</version>
  258. <executions>
  259. <execution>
  260. <id>sign-artifacts</id>
  261. <phase>verify</phase>
  262. <goals>
  263. <goal>sign</goal>
  264. </goals>
  265. <configuration>
  266. <keyname>Terracotta Release Engineer</keyname>
  267. </configuration>
  268. </execution>
  269. </executions>
  270. </plugin>
  271. </plugins>
  272. </build>
  273. </profile>
  274. <profile>
  275. <id>deploy-sonatype</id>
  276. <distributionManagement>
  277. <repository>
  278. <id>sourceforge-releases</id>
  279. <url>http://oss.sonatype.org/service/local/staging/deploy/maven2</url>
  280. </repository>
  281. </distributionManagement>
  282. </profile>
  283. <profile>
  284. <id>release</id>
  285. <distributionManagement>
  286. <repository>
  287. <id>terracotta-releases</id>
  288. <name>Terracotta Releases Repository</name>
  289. <url>${terracotta-releases-url}</url>
  290. </repository>
  291. </distributionManagement>
  292. </profile>
  293. </profiles>
  294. <distributionManagement>
  295. <repository>
  296. <id>terracotta-staging</id>
  297. <name>Terracotta Staging Repository</name>
  298. <url>${terracotta-staging-url}</url>
  299. </repository>
  300. <snapshotRepository>
  301. <id>terracotta-snapshots</id>
  302. <uniqueVersion>false</uniqueVersion>
  303. <name>Terracotta Snapshots Repository</name>
  304. <url>${terracotta-snapshots-url}</url>
  305. </snapshotRepository>
  306. </distributionManagement>
  307. <repositories>
  308. <repository>
  309. <id>terracotta-snapshots</id>
  310. <url>http://www.terracotta.org/download/reflector/snapshots</url>
  311. </repository>
  312. <repository>
  313. <id>terracotta-releases</id>
  314. <url>http://www.terracotta.org/download/reflector/releases</url>
  315. </repository>
  316. </repositories>
  317. <pluginRepositories>
  318. <pluginRepository>
  319. <id>terracotta-snapshots</id>
  320. <url>http://www.terracotta.org/download/reflector/snapshots</url>
  321. </pluginRepository>
  322. <pluginRepository>
  323. <id>terracotta-releases</id>
  324. <url>http://www.terracotta.org/download/reflector/releases</url>
  325. </pluginRepository>
  326. </pluginRepositories>
  327. <developers>
  328. <developer>
  329. <id>gregluck</id>
  330. <name>Greg Luck</name>
  331. <roles>
  332. <role>Maintainer</role>
  333. <role>Developer</role>
  334. </roles>
  335. <timezone>+10</timezone>
  336. <properties>
  337. <skype>gregrluck</skype>
  338. <yahoo>gregrluck</yahoo>
  339. </properties>
  340. </developer>
  341. <developer>
  342. <id>ssuravarapu</id>
  343. <name>Surya Suravarapu</name>
  344. <url />
  345. <roles>
  346. <role>Developer</role>
  347. </roles>
  348. <timezone>-5</timezone>
  349. </developer>
  350. <developer>
  351. <id>oneovthafew</id>
  352. <name>Gavin King</name>
  353. <roles>
  354. <role>Developer</role>
  355. </roles>
  356. <timezone>+10</timezone>
  357. </developer>
  358. <developer>
  359. <name>Mauro Talevi</name>
  360. <email />
  361. <url />
  362. <organization />
  363. <organizationUrl />
  364. <roles>
  365. <role>Maven Guru</role>
  366. </roles>
  367. <timezone />
  368. </developer>
  369. </developers>
  370. <contributors>
  371. <contributor>
  372. <name>Adam Murdoch</name>
  373. <email />
  374. <url />
  375. <organization />
  376. <organizationUrl />
  377. <roles>
  378. <role>Former Developer</role>
  379. </roles>
  380. <timezone>+10</timezone>
  381. </contributor>
  382. <contributor>
  383. <name>Ben Houston</name>
  384. <email />
  385. <url />
  386. <organization />
  387. <organizationUrl />
  388. <roles />
  389. <timezone />
  390. <properties />
  391. </contributor>
  392. <contributor>
  393. <name>Claus Ibsen</name>
  394. <email />
  395. <url />
  396. <organization />
  397. <organizationUrl />
  398. <roles />
  399. <timezone />
  400. <properties>
  401. <contribution>Patches</contribution>
  402. </properties>
  403. </contributor>
  404. <contributor>
  405. <name>Jody Brownell</name>
  406. <email />
  407. <url />
  408. <organization />
  409. <organizationUrl />
  410. <roles />
  411. <timezone />
  412. <properties>
  413. <contribution>Patches</contribution>
  414. </properties>
  415. </contributor>
  416. </contributors>
  417. <licenses>
  418. <license>
  419. <name>The Apache Software License, Version 2.0</name>
  420. <url>http://www.ehcache.org/about/license</url>
  421. <distribution>repo</distribution>
  422. <comments>The license is the standard wording from the Apache license.
  423. Terracotta, Inc. is the copyright owner.
  424. </comments>
  425. </license>
  426. </licenses>
  427. <issueManagement>
  428. <system>Terracotta's JIRA</system>
  429. <url>https://jira.terracotta.org/jira/browse/EHC</url>
  430. </issueManagement>
  431. <mailingLists>
  432. <mailingList>
  433. <name>Ehcache Mailing List</name>
  434. <subscribe>http://lists.terracotta.org/mailman/listinfo/ehcache-list</subscribe>
  435. <unsubscribe>http://lists.terracotta.org/mailman/listinfo/ehcache-list</unsubscribe>
  436. <post>ehcache-list@lists.terracotta.org</post>
  437. <archive>http://lists.terracotta.org/pipermail/ehcache-list/</archive>
  438. </mailingList>
  439. <mailingList>
  440. <name>Old SourceForge Mailing List - closed due to spam attacks</name>
  441. <subscribe>http://lists.sourceforge.net/lists/listinfo/ehcache-list</subscribe>
  442. <unsubscribe>http://lists.sourceforge.net/lists/listinfo/ehcache-list</unsubscribe>
  443. <post>ehcache-list@lists.sourceforge.net</post>
  444. <archive>http://sourceforge.net/mailarchive/forum.php?forum=ehcache-list</archive>
  445. </mailingList>
  446. </mailingLists>
  447. <scm>
  448. <connection>scm:svn:http://svn.terracotta.org/svn/ehcache/tags/ehcache-parent-2.5</connection>
  449. <developerConnection>scm:svn:https://svn.terracotta.org/repo/ehcache/tags/ehcache-parent-2.5</developerConnection>
  450. <url>http://svn.terracotta.org/svn/ehcache/tags/ehcache-parent-2.5</url>
  451. </scm>
  452. </project>