選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

374 行
13KB

  1. <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">
  2. <parent>
  3. <groupId>org.sonatype.oss</groupId>
  4. <artifactId>oss-parent</artifactId>
  5. <version>7</version>
  6. </parent>
  7. <modelVersion>4.0.0</modelVersion>
  8. <groupId>tmp.com.vladmihalcea</groupId>
  9. <artifactId>placeholder.hibernate-types-parent</artifactId>
  10. <version>2.21.1</version>
  11. <packaging>pom</packaging>
  12. <name>Hibernate Types</name>
  13. <description>
  14. Hibernate Types adds extra types like JSON, Array, etc.
  15. </description>
  16. <url>https://github.com/vladmihalcea/hibernate-types</url>
  17. <licenses>
  18. <license>
  19. <name>The Apache Software License, Version 2.0</name>
  20. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  21. </license>
  22. </licenses>
  23. <developers>
  24. <developer>
  25. <id>author</id>
  26. <name>Vlad Mihalcea</name>
  27. <email>mih_vlad@yahoo.com</email>
  28. </developer>
  29. </developers>
  30. <scm>
  31. <developerConnection>scm:git:git@github.com:vladmihalcea/hibernate-types.git</developerConnection>
  32. <url>scm:git:git@github.com:vladmihalcea/hibernate-types.git</url>
  33. <connection>scm:git:git@github.com:vladmihalcea/hibernate-types.git</connection>
  34. <tag>hibernate-types-parent-2.21.1</tag>
  35. </scm>
  36. <repositories>
  37. <repository>
  38. <id>Spring</id>
  39. <releases>
  40. <enabled>true</enabled>
  41. </releases>
  42. <url>https://repo.spring.io/milestone</url>
  43. </repository>
  44. </repositories>
  45. <modules>
  46. <module>hibernate-types-60</module>
  47. <module>hibernate-types-55</module>
  48. <module>hibernate-types-52</module>
  49. <module>hibernate-types-5</module>
  50. <module>hibernate-types-43</module>
  51. <module>hibernate-types-4</module>
  52. </modules>
  53. <dependencies>
  54. <dependency>
  55. <groupId>org.slf4j</groupId>
  56. <artifactId>slf4j-api</artifactId>
  57. <version>${slf4j.version}</version>
  58. <scope>provided</scope>
  59. <optional>true</optional>
  60. </dependency>
  61. <dependency>
  62. <groupId>ch.qos.logback</groupId>
  63. <artifactId>logback-classic</artifactId>
  64. <version>${logback.version}</version>
  65. <scope>provided</scope>
  66. <optional>true</optional>
  67. </dependency>
  68. <dependency>
  69. <groupId>junit</groupId>
  70. <artifactId>junit</artifactId>
  71. <version>${junit.version}</version>
  72. <scope>test</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.mockito</groupId>
  76. <artifactId>mockito-core</artifactId>
  77. <version>${mockito.version}</version>
  78. <scope>test</scope>
  79. </dependency>
  80. <dependency>
  81. <groupId>net.ttddyy</groupId>
  82. <artifactId>datasource-proxy</artifactId>
  83. <version>${datasource-proxy.version}</version>
  84. <scope>test</scope>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.hsqldb</groupId>
  88. <artifactId>hsqldb</artifactId>
  89. <version>${hsqldb.version}</version>
  90. <scope>test</scope>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.h2database</groupId>
  94. <artifactId>h2</artifactId>
  95. <version>${h2.version}</version>
  96. <scope>test</scope>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.postgresql</groupId>
  100. <artifactId>postgresql</artifactId>
  101. <version>${postgresql.version}</version>
  102. <scope>provided</scope>
  103. <optional>true</optional>
  104. </dependency>
  105. <dependency>
  106. <groupId>mysql</groupId>
  107. <artifactId>mysql-connector-java</artifactId>
  108. <version>${mysql.version}</version>
  109. <scope>test</scope>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.oracle.database.jdbc</groupId>
  113. <artifactId>ojdbc8</artifactId>
  114. <version>${oracle.version}</version>
  115. <scope>test</scope>
  116. </dependency>
  117. <dependency>
  118. <groupId>com.microsoft.sqlserver</groupId>
  119. <artifactId>mssql-jdbc</artifactId>
  120. <version>${mssql.version}</version>
  121. <scope>test</scope>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.testcontainers</groupId>
  125. <artifactId>mysql</artifactId>
  126. <scope>test</scope>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.testcontainers</groupId>
  130. <artifactId>postgresql</artifactId>
  131. <scope>test</scope>
  132. </dependency>
  133. <dependency>
  134. <groupId>org.testcontainers</groupId>
  135. <artifactId>oracle-xe</artifactId>
  136. <scope>test</scope>
  137. </dependency>
  138. <dependency>
  139. <groupId>org.testcontainers</groupId>
  140. <artifactId>mssqlserver</artifactId>
  141. <scope>test</scope>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.testcontainers</groupId>
  145. <artifactId>testcontainers-bom</artifactId>
  146. <version>${testcontainers.version}</version>
  147. <type>pom</type>
  148. <scope>import</scope>
  149. </dependency>
  150. <dependency>
  151. <groupId>com.vladmihalcea</groupId>
  152. <artifactId>hibernate-types-parent</artifactId>
  153. <version>2.21.1</version>
  154. </dependency>
  155. </dependencies>
  156. <build>
  157. <defaultGoal>test</defaultGoal>
  158. <testResources>
  159. <testResource>
  160. <directory>src/test/resources</directory>
  161. <filtering>true</filtering>
  162. </testResource>
  163. </testResources>
  164. <plugins>
  165. <plugin>
  166. <groupId>org.apache.maven.plugins</groupId>
  167. <artifactId>maven-toolchains-plugin</artifactId>
  168. <version>${maven-toolchains-plugin.version}</version>
  169. <executions>
  170. <execution>
  171. <goals>
  172. <goal>toolchain</goal>
  173. </goals>
  174. </execution>
  175. </executions>
  176. <configuration>
  177. <toolchains>
  178. <jdk>
  179. <version>${jdk-test.version}</version>
  180. </jdk>
  181. </toolchains>
  182. </configuration>
  183. </plugin>
  184. <plugin>
  185. <groupId>org.apache.maven.plugins</groupId>
  186. <artifactId>maven-compiler-plugin</artifactId>
  187. <version>${maven-compiler-plugin.version}</version>
  188. <configuration>
  189. <showDeprecation>true</showDeprecation>
  190. <showWarnings>true</showWarnings>
  191. </configuration>
  192. </plugin>
  193. <plugin>
  194. <groupId>org.apache.maven.plugins</groupId>
  195. <artifactId>maven-surefire-plugin</artifactId>
  196. <version>${maven-surefire-plugin.version}</version>
  197. <configuration>
  198. <excludes>
  199. <exclude>**/*JvmForkTest.java</exclude>
  200. </excludes>
  201. </configuration>
  202. </plugin>
  203. <plugin>
  204. <groupId>org.codehaus.mojo</groupId>
  205. <artifactId>sonar-maven-plugin</artifactId>
  206. <version>${sonar-maven-plugin.version}</version>
  207. </plugin>
  208. <plugin>
  209. <groupId>org.apache.maven.plugins</groupId>
  210. <artifactId>maven-site-plugin</artifactId>
  211. <version>${maven-site-plugin.version}</version>
  212. </plugin>
  213. <plugin>
  214. <groupId>org.apache.maven.plugins</groupId>
  215. <artifactId>maven-project-info-reports-plugin</artifactId>
  216. <version>${maven-project-info-reports-plugin.version}</version>
  217. </plugin>
  218. </plugins>
  219. </build>
  220. <profiles>
  221. <profile>
  222. <id>release</id>
  223. <activation>
  224. <property>
  225. <name>performRelease</name>
  226. <value>true</value>
  227. </property>
  228. </activation>
  229. <properties>
  230. <console.log.level>ERROR</console.log.level>
  231. </properties>
  232. <build>
  233. <plugins>
  234. <plugin>
  235. <groupId>org.apache.maven.plugins</groupId>
  236. <artifactId>maven-source-plugin</artifactId>
  237. <version>${maven-source-plugin.version}</version>
  238. <executions>
  239. <execution>
  240. <id>attach-sources</id>
  241. <goals>
  242. <goal>jar-no-fork</goal>
  243. </goals>
  244. </execution>
  245. </executions>
  246. </plugin>
  247. <plugin>
  248. <inherited>true</inherited>
  249. <groupId>org.apache.maven.plugins</groupId>
  250. <artifactId>maven-javadoc-plugin</artifactId>
  251. <version>${maven-javadoc-plugin.version}</version>
  252. <executions>
  253. <execution>
  254. <id>attach-javadocs</id>
  255. <goals>
  256. <goal>jar</goal>
  257. </goals>
  258. </execution>
  259. </executions>
  260. </plugin>
  261. <plugin>
  262. <groupId>org.apache.maven.plugins</groupId>
  263. <artifactId>maven-gpg-plugin</artifactId>
  264. <version>${maven-gpg-plugin.version}</version>
  265. <configuration>
  266. <keyname>mih_vlad@yahoo.com</keyname>
  267. <passphrase>${gpg.passphrase}</passphrase>
  268. </configuration>
  269. <executions>
  270. <execution>
  271. <id>sign-artifacts</id>
  272. <phase>verify</phase>
  273. <goals>
  274. <goal>sign</goal>
  275. </goals>
  276. </execution>
  277. </executions>
  278. </plugin>
  279. <plugin>
  280. <groupId>org.apache.maven.plugins</groupId>
  281. <artifactId>maven-release-plugin</artifactId>
  282. <version>${maven-release-plugin.version}</version>
  283. <configuration>
  284. <autoVersionSubmodules>true</autoVersionSubmodules>
  285. <useReleaseProfile>false</useReleaseProfile>
  286. <releaseProfiles>release</releaseProfiles>
  287. <goals>deploy</goals>
  288. </configuration>
  289. </plugin>
  290. <plugin>
  291. <groupId>org.apache.maven.plugins</groupId>
  292. <artifactId>maven-deploy-plugin</artifactId>
  293. <version>${maven-deploy-plugin.version}</version>
  294. <configuration>
  295. <retryFailedDeploymentCount>5</retryFailedDeploymentCount>
  296. <deployAtEnd>true</deployAtEnd>
  297. </configuration>
  298. </plugin>
  299. </plugins>
  300. </build>
  301. </profile>
  302. <profile>
  303. <id>test</id>
  304. <properties>
  305. <console.log.level>ERROR</console.log.level>
  306. </properties>
  307. </profile>
  308. <profile>
  309. <id>fork-jvm-test</id>
  310. <properties>
  311. <console.log.level>DEBUG</console.log.level>
  312. </properties>
  313. <build>
  314. <plugins>
  315. <plugin>
  316. <groupId>org.apache.maven.plugins</groupId>
  317. <artifactId>maven-surefire-plugin</artifactId>
  318. <version>${maven-surefire-plugin.version}</version>
  319. <configuration>
  320. <reuseForks>false</reuseForks>
  321. <useSystemClassLoader>false</useSystemClassLoader>
  322. </configuration>
  323. </plugin>
  324. </plugins>
  325. </build>
  326. </profile>
  327. </profiles>
  328. <distributionManagement>
  329. <snapshotRepository>
  330. <id>ossrh</id>
  331. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  332. </snapshotRepository>
  333. <repository>
  334. <id>ossrh</id>
  335. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  336. </repository>
  337. </distributionManagement>
  338. <properties>
  339. <jdk.version>6</jdk.version>
  340. <jdk-test.version>8</jdk-test.version>
  341. <maven.compiler.source>${jdk.version}</maven.compiler.source>
  342. <maven.compiler.target>${jdk.version}</maven.compiler.target>
  343. <maven.compiler.testSource>${jdk-test.version}</maven.compiler.testSource>
  344. <maven.compiler.testTarget>${jdk-test.version}</maven.compiler.testTarget>
  345. <console.log.level>DEBUG</console.log.level>
  346. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  347. <maven-toolchains-plugin.version>1.1</maven-toolchains-plugin.version>
  348. <maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version>
  349. <maven-jar-plugin.version>3.0.2</maven-jar-plugin.version>
  350. <sonar-maven-plugin.version>2.2</sonar-maven-plugin.version>
  351. <coveralls-maven-plugin.version>3.1.0</coveralls-maven-plugin.version>
  352. <jacoco-maven-plugin.version>0.7.5.201505241946</jacoco-maven-plugin.version>
  353. <maven-source-plugin.version>3.2.1</maven-source-plugin.version>
  354. <maven-javadoc-plugin.version>3.2.0</maven-javadoc-plugin.version>
  355. <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
  356. <maven-release-plugin.version>2.5.2</maven-release-plugin.version>
  357. <maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
  358. <maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version>
  359. <maven-site-plugin.version>3.7.1</maven-site-plugin.version>
  360. <maven-project-info-reports-plugin.version>3.0.0</maven-project-info-reports-plugin.version>
  361. <slf4j.version>1.7.25</slf4j.version>
  362. <logback.version>1.2.3</logback.version>
  363. <junit.version>4.13.1</junit.version>
  364. <mockito.version>1.8.5</mockito.version>
  365. <datasource-proxy.version>1.6</datasource-proxy.version>
  366. <testcontainers.version>1.17.3</testcontainers.version>
  367. <hsqldb.version>2.2.8</hsqldb.version>
  368. <h2.version>1.4.200</h2.version>
  369. <postgresql.version>42.4.1</postgresql.version>
  370. <mysql.version>8.0.30</mysql.version>
  371. <oracle.version>21.5.0.0</oracle.version>
  372. <mssql.version>11.2.1.jre8</mssql.version>
  373. </properties>
  374. </project>