You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 8.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.uchicom</groupId>
  6. <artifactId>iciql</artifactId>
  7. <version>2.2.1.1</version>
  8. <name>Iciql</name>
  9. <description>a model-based database access wrapper for JDBC</description>
  10. <url>http://iciql.com</url>
  11. <inceptionYear>2011</inceptionYear>
  12. <licenses>
  13. <license>
  14. <name>The Apache Software License, Version 2.0</name>
  15. <url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
  16. </license>
  17. </licenses>
  18. <scm>
  19. <connection>scm:git:git@github.com:uchicom/iciql.git</connection>
  20. <developerConnection>scm:git:git@github.com:uchicom/iciql.git</developerConnection>
  21. <url>https://github.com/uchicom/iciql</url>
  22. <tag>java1.8</tag>
  23. </scm>
  24. <developers>
  25. <developer>
  26. <name>James Moger</name>
  27. <email>james.moger@gmail.com</email>
  28. <organization>gitblit.com</organization>
  29. <organizationUrl>https://github.com/gitblit</organizationUrl>
  30. </developer>
  31. <developer>
  32. <name>Shigeki Uchiyama</name>
  33. <email>info@uchicom.com</email>
  34. <organization>uchicom</organization>
  35. <organizationUrl>https://labs.uchicom.com</organizationUrl>
  36. </developer>
  37. </developers>
  38. <distributionManagement>
  39. <snapshotRepository>
  40. <id>ossrh</id>
  41. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  42. </snapshotRepository>
  43. <repository>
  44. <id>ossrh</id>
  45. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  46. </repository>
  47. </distributionManagement>
  48. <dependencies>
  49. <!-- provided dependencies -->
  50. <dependency>
  51. <groupId>com.beust</groupId>
  52. <artifactId>jcommander</artifactId>
  53. <version>1.17</version>
  54. <type>jar</type>
  55. <scope>provided</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.h2database</groupId>
  59. <artifactId>h2</artifactId>
  60. <version>1.4.193</version>
  61. <type>jar</type>
  62. <scope>provided</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.hsqldb</groupId>
  66. <artifactId>hsqldb</artifactId>
  67. <version>2.3.4</version>
  68. <type>jar</type>
  69. <scope>provided</scope>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.apache.derby</groupId>
  73. <artifactId>derby</artifactId>
  74. <version>10.13.1.1</version>
  75. <type>jar</type>
  76. <scope>provided</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.apache.derby</groupId>
  80. <artifactId>derbyclient</artifactId>
  81. <version>10.13.1.1</version>
  82. <type>jar</type>
  83. <scope>provided</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.apache.derby</groupId>
  87. <artifactId>derbynet</artifactId>
  88. <version>10.13.1.1</version>
  89. <type>jar</type>
  90. <scope>provided</scope>
  91. </dependency>
  92. <dependency>
  93. <groupId>mysql</groupId>
  94. <artifactId>mysql-connector-java</artifactId>
  95. <version>8.0.16</version>
  96. <type>jar</type>
  97. <scope>provided</scope>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.postgresql</groupId>
  101. <artifactId>postgresql</artifactId>
  102. <version>9.4.1212</version>
  103. <type>jar</type>
  104. <scope>provided</scope>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.xerial</groupId>
  108. <artifactId>sqlite-jdbc</artifactId>
  109. <version>3.16.1</version>
  110. <type>jar</type>
  111. <scope>provided</scope>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.slf4j</groupId>
  115. <artifactId>slf4j-api</artifactId>
  116. <version>1.7.20</version>
  117. <type>jar</type>
  118. <scope>provided</scope>
  119. </dependency>
  120. <dependency>
  121. <groupId>commons-pool</groupId>
  122. <artifactId>commons-pool</artifactId>
  123. <version>1.5.6</version>
  124. <type>jar</type>
  125. <scope>provided</scope>
  126. </dependency>
  127. <dependency>
  128. <groupId>commons-dbcp</groupId>
  129. <artifactId>commons-dbcp</artifactId>
  130. <version>1.4</version>
  131. <type>jar</type>
  132. <scope>provided</scope>
  133. </dependency>
  134. <dependency>
  135. <groupId>com.google.code.gson</groupId>
  136. <artifactId>gson</artifactId>
  137. <version>2.3</version>
  138. <type>jar</type>
  139. <scope>provided</scope>
  140. </dependency>
  141. <dependency>
  142. <groupId>com.thoughtworks.xstream</groupId>
  143. <artifactId>xstream</artifactId>
  144. <version>1.4.16</version>
  145. <type>jar</type>
  146. <scope>provided</scope>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.yaml</groupId>
  150. <artifactId>snakeyaml</artifactId>
  151. <version>1.17</version>
  152. <type>jar</type>
  153. <scope>provided</scope>
  154. </dependency>
  155. <!-- test dependencies -->
  156. <dependency>
  157. <groupId>junit</groupId>
  158. <artifactId>junit</artifactId>
  159. <version>4.13.1</version>
  160. <type>jar</type>
  161. <scope>test</scope>
  162. </dependency>
  163. </dependencies>
  164. <build>
  165. <plugins>
  166. <plugin>
  167. <groupId>org.apache.maven.plugins</groupId>
  168. <artifactId>maven-compiler-plugin</artifactId>
  169. <version>3.1</version>
  170. <configuration>
  171. <source>1.8</source>
  172. <target>1.8</target>
  173. </configuration>
  174. </plugin>
  175. <plugin>
  176. <groupId>org.apache.maven.plugins</groupId>
  177. <artifactId>maven-surefire-plugin</artifactId>
  178. <version>2.19.1</version>
  179. <configuration>
  180. <includes>
  181. <include>com/iciql/test/IciqlSuite.java</include>
  182. </includes>
  183. </configuration>
  184. </plugin>
  185. <plugin>
  186. <groupId>org.codehaus.mojo</groupId>
  187. <artifactId>exec-maven-plugin</artifactId>
  188. <version>1.4.0</version>
  189. <configuration>
  190. <executable>java</executable>
  191. <classpathScope>test</classpathScope>
  192. <arguments>
  193. <argument>-classpath</argument>
  194. <classpath />
  195. <argument>com.iciql.test.IciqlSuite</argument>
  196. </arguments>
  197. </configuration>
  198. </plugin>
  199. <plugin>
  200. <groupId>org.apache.maven.plugins</groupId>
  201. <artifactId>maven-jar-plugin</artifactId>
  202. <version>2.6</version>
  203. <configuration>
  204. <archive>
  205. <manifestEntries>
  206. <implementation-version>${project.version}</implementation-version>
  207. <build-date>${maven.build.timestamp}</build-date>
  208. </manifestEntries>
  209. </archive>
  210. </configuration>
  211. </plugin>
  212. <!-- Release plugin -->
  213. <plugin>
  214. <groupId>org.apache.maven.plugins</groupId>
  215. <artifactId>maven-release-plugin</artifactId>
  216. <version>2.5.3</version>
  217. <configuration>
  218. <!-- install next final version in local repo, so that tests on archetypes
  219. work -->
  220. <preparationGoals>clean install</preparationGoals>
  221. <autoVersionSubmodules>true</autoVersionSubmodules>
  222. <goals>deploy</goals>
  223. <tagNameFormat>release-@{project.version}</tagNameFormat>
  224. <useReleaseProfile>false</useReleaseProfile>
  225. <releaseProfiles>release</releaseProfiles>
  226. </configuration>
  227. </plugin>
  228. </plugins>
  229. </build>
  230. <profiles>
  231. <profile>
  232. <id>release</id>
  233. <build>
  234. <plugins>
  235. <plugin>
  236. <groupId>org.sonatype.plugins</groupId>
  237. <artifactId>nexus-staging-maven-plugin</artifactId>
  238. <version>1.6.7</version>
  239. <extensions>true</extensions>
  240. <configuration>
  241. <serverId>ossrh</serverId>
  242. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  243. <autoReleaseAfterClose>true</autoReleaseAfterClose>
  244. </configuration>
  245. </plugin>
  246. <!-- Java Source plugin -->
  247. <plugin>
  248. <groupId>org.apache.maven.plugins</groupId>
  249. <artifactId>maven-source-plugin</artifactId>
  250. <executions>
  251. <execution>
  252. <id>attach-sources</id>
  253. <goals>
  254. <goal>jar</goal>
  255. </goals>
  256. </execution>
  257. </executions>
  258. </plugin>
  259. <!-- JavaDoc plugin -->
  260. <plugin>
  261. <groupId>org.apache.maven.plugins</groupId>
  262. <artifactId>maven-javadoc-plugin</artifactId>
  263. <executions>
  264. <execution>
  265. <id>attach-javadocs</id>
  266. <goals>
  267. <goal>jar</goal>
  268. </goals>
  269. <configuration>
  270. <additionalJOption>-Xdoclint:none</additionalJOption>
  271. </configuration>
  272. </execution>
  273. </executions>
  274. </plugin>
  275. <!-- GPG plugin to sign the artifacts -->
  276. <plugin>
  277. <groupId>org.apache.maven.plugins</groupId>
  278. <artifactId>maven-gpg-plugin</artifactId>
  279. <version>1.5</version>
  280. <executions>
  281. <execution>
  282. <id>sign-artifacts</id>
  283. <phase>verify</phase>
  284. <goals>
  285. <goal>sign</goal>
  286. </goals>
  287. </execution>
  288. </executions>
  289. </plugin>
  290. </plugins>
  291. </build>
  292. </profile>
  293. </profiles>
  294. </project>