pom.xml 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  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>org.twitter4j</groupId>
  4. <artifactId>twitter4j-core</artifactId>
  5. <version>4.0.7</version>
  6. <packaging>jar</packaging>
  7. <name>twitter4j-core</name>
  8. <description>A Java library for the Twitter API</description>
  9. <url>http://twitter4j.org/</url>
  10. <licenses>
  11. <license>
  12. <name>Apache License 2.0</name>
  13. <url>http://www.apache.org/licenses/LICENSE-2.0</url>
  14. <distribution>repo</distribution>
  15. </license>
  16. </licenses>
  17. <scm>
  18. <url>https://github.com/yusuke/twitter4j</url>
  19. <connection>scm:git:https://github.com/yusuke/twitter4j.git</connection>
  20. <developerConnection>scm:https://github.com/yusuke/twitter4j.git
  21. </developerConnection>
  22. <tag>4.0.7</tag>
  23. </scm>
  24. <developers>
  25. <developer>
  26. <id>yusuke</id>
  27. <name>Yusuke</name>
  28. <email>yusuke@mac.com</email>
  29. <url>http://samuraism.jp/</url>
  30. <roles>
  31. <role>lead</role>
  32. <role>architect</role>
  33. <role>developer</role>
  34. </roles>
  35. <timezone>9</timezone>
  36. </developer>
  37. </developers>
  38. <issueManagement>
  39. <system>YouTrack</system>
  40. <url>http://issue.twitter4j.org/youtrack/issues?q=project%3A+Twitter4J</url>
  41. </issueManagement>
  42. <distributionManagement>
  43. <repository>
  44. <id>sonatype-nexus-staging</id>
  45. <name>Nexus Release Repository</name>
  46. <uniqueVersion>false</uniqueVersion>
  47. <url>file:/Users/yusuke/maven2/
  48. </url>
  49. </repository>
  50. <snapshotRepository>
  51. <id>org.twitter4j</id>
  52. <name>twitter4j.org Repository</name>
  53. <uniqueVersion>false</uniqueVersion>
  54. <url>file:${user.home}/maven2/</url>
  55. </snapshotRepository>
  56. </distributionManagement>
  57. <profiles>
  58. <profile>
  59. <id>release-sign-artifacts</id>
  60. <activation>
  61. <property>
  62. <name>performRelease</name>
  63. <value>true</value>
  64. </property>
  65. </activation>
  66. <build>
  67. <plugins>
  68. <plugin>
  69. <groupId>org.apache.maven.plugins</groupId>
  70. <artifactId>maven-gpg-plugin</artifactId>
  71. <version>1.4</version>
  72. <executions>
  73. <execution>
  74. <id>sign-artifacts</id>
  75. <phase>verify</phase>
  76. <goals>
  77. <goal>sign</goal>
  78. </goals>
  79. </execution>
  80. </executions>
  81. </plugin>
  82. </plugins>
  83. </build>
  84. </profile>
  85. </profiles>
  86. <mailingLists>
  87. <mailingList>
  88. <name>Twitter4J</name>
  89. <subscribe>twitter4j-subscribe@googlegroups.com</subscribe>
  90. <unsubscribe>twitter4j-unsubscribe@googlegroups.com</unsubscribe>
  91. <post>twitter4j@googlegroups.com</post>
  92. <archive>http://groups.google.com/group/twitter4j</archive>
  93. </mailingList>
  94. </mailingLists>
  95. <dependencies>
  96. <dependency>
  97. <groupId>org.junit.jupiter</groupId>
  98. <artifactId>junit-jupiter-api</artifactId>
  99. <version>5.2.0</version>
  100. <scope>test</scope>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.googlecode</groupId>
  104. <artifactId>kryo</artifactId>
  105. <version>1.04</version>
  106. <scope>test</scope>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.slf4j</groupId>
  110. <artifactId>slf4j-api</artifactId>
  111. <version>1.7.12</version>
  112. <scope>provided</scope>
  113. <optional>true</optional>
  114. </dependency>
  115. <dependency>
  116. <groupId>commons-logging</groupId>
  117. <artifactId>commons-logging-api</artifactId>
  118. <version>1.1</version>
  119. <scope>provided</scope>
  120. <optional>true</optional>
  121. </dependency>
  122. <dependency>
  123. <groupId>log4j</groupId>
  124. <artifactId>log4j</artifactId>
  125. <version>1.2.17</version>
  126. <scope>provided</scope>
  127. <optional>true</optional>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.seleniumhq.selenium</groupId>
  131. <artifactId>selenium-htmlunit-driver</artifactId>
  132. <version>LATEST</version>
  133. <scope>test</scope>
  134. </dependency>
  135. </dependencies>
  136. <build>
  137. <defaultGoal>install</defaultGoal>
  138. <plugins>
  139. <plugin>
  140. <groupId>org.apache.maven.plugins</groupId>
  141. <artifactId>maven-release-plugin</artifactId>
  142. <version>2.3.2</version>
  143. </plugin>
  144. <plugin>
  145. <groupId>org.codehaus.mojo</groupId>
  146. <artifactId>build-helper-maven-plugin</artifactId>
  147. <version>1.8</version>
  148. <executions>
  149. <execution>
  150. <id>add-source</id>
  151. <phase>generate-sources</phase>
  152. <goals>
  153. <goal>add-source</goal>
  154. </goals>
  155. <configuration>
  156. <sources>
  157. <source>src/internal-async/java</source>
  158. <source>src/internal-http/java</source>
  159. <source>src/jmx/java</source>
  160. <source>src/internal-json/java</source>
  161. <source>src/internal-logging/java</source>
  162. <source>src/internal-util/java</source>
  163. </sources>
  164. </configuration>
  165. </execution>
  166. </executions>
  167. </plugin>
  168. <plugin>
  169. <groupId>org.apache.maven.plugins</groupId>
  170. <artifactId>maven-compiler-plugin</artifactId>
  171. <configuration>
  172. <encoding>UTF-8</encoding>
  173. <source>6</source>
  174. <target>6</target>
  175. </configuration>
  176. <version>2.5.1</version>
  177. </plugin>
  178. <plugin>
  179. <groupId>org.apache.maven.plugins</groupId>
  180. <artifactId>maven-jar-plugin</artifactId>
  181. <configuration>
  182. <archive>
  183. <manifestFile>src/main/resources/META-INF/MANIFEST.MF
  184. </manifestFile>
  185. <manifest>
  186. <addDefaultSpecificationEntries>true
  187. </addDefaultSpecificationEntries>
  188. <addDefaultImplementationEntries>true
  189. </addDefaultImplementationEntries>
  190. </manifest>
  191. </archive>
  192. </configuration>
  193. <version>2.4</version>
  194. </plugin>
  195. <plugin>
  196. <groupId>org.apache.maven.plugins</groupId>
  197. <artifactId>maven-source-plugin</artifactId>
  198. <executions>
  199. <execution>
  200. <goals>
  201. <goal>jar</goal>
  202. </goals>
  203. </execution>
  204. </executions>
  205. <version>2.1.2</version>
  206. </plugin>
  207. <plugin>
  208. <artifactId>maven-javadoc-plugin</artifactId>
  209. <executions>
  210. <execution>
  211. <id>javadoc-jar</id>
  212. <phase>package</phase>
  213. <goals>
  214. <goal>jar</goal>
  215. </goals>
  216. <configuration>
  217. <failOnError>false</failOnError>
  218. </configuration>
  219. </execution>
  220. </executions>
  221. <configuration>
  222. <charset>UTF-8</charset>
  223. <show>public</show>
  224. </configuration>
  225. <version>2.10.3</version>
  226. </plugin>
  227. <plugin>
  228. <groupId>org.apache.maven.plugins</groupId>
  229. <artifactId>maven-resources-plugin</artifactId>
  230. <configuration>
  231. <encoding>UTF-8</encoding>
  232. </configuration>
  233. <version>2.5</version>
  234. </plugin>
  235. <plugin>
  236. <artifactId>maven-surefire-plugin</artifactId>
  237. <version>2.19.1</version>
  238. <dependencies>
  239. <dependency>
  240. <groupId>org.junit.platform</groupId>
  241. <artifactId>junit-platform-surefire-provider</artifactId>
  242. <version>1.0.1</version>
  243. </dependency>
  244. <dependency>
  245. <groupId>org.junit.jupiter</groupId>
  246. <artifactId>junit-jupiter-engine</artifactId>
  247. <version>5.2.0</version>
  248. </dependency>
  249. </dependencies>
  250. </plugin>
  251. </plugins>
  252. </build>
  253. <properties>
  254. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  255. <project.reporting.outputEncoding>UTF-8
  256. </project.reporting.outputEncoding>
  257. </properties>
  258. </project>