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 10KB

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