pom.xml 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  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-stream</artifactId>
  5. <version>4.0.7</version>
  6. <packaging>jar</packaging>
  7. <name>twitter4j-stream</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.twitter4j</groupId>
  98. <artifactId>twitter4j-core</artifactId>
  99. <version>4.0.7</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.twitter4j</groupId>
  103. <artifactId>twitter4j-async</artifactId>
  104. <version>4.0.7</version>
  105. <scope>test</scope>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.junit.jupiter</groupId>
  109. <artifactId>junit-jupiter-api</artifactId>
  110. <version>5.2.0</version>
  111. <scope>test</scope>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.springframework</groupId>
  115. <artifactId>spring</artifactId>
  116. <version>2.5.6</version>
  117. <scope>test</scope>
  118. </dependency>
  119. </dependencies>
  120. <build>
  121. <defaultGoal>install</defaultGoal>
  122. <plugins>
  123. <plugin>
  124. <groupId>org.apache.maven.plugins</groupId>
  125. <artifactId>maven-release-plugin</artifactId>
  126. <version>2.1</version>
  127. </plugin>
  128. <plugin>
  129. <groupId>org.apache.maven.plugins</groupId>
  130. <artifactId>maven-compiler-plugin</artifactId>
  131. <configuration>
  132. <encoding>UTF-8</encoding>
  133. <source>6</source>
  134. <target>6</target>
  135. </configuration>
  136. <version>2.5.1</version>
  137. </plugin>
  138. <plugin>
  139. <groupId>org.apache.maven.plugins</groupId>
  140. <artifactId>maven-jar-plugin</artifactId>
  141. <configuration>
  142. <archive>
  143. <manifestFile>src/main/resources/META-INF/MANIFEST.MF
  144. </manifestFile>
  145. <manifest>
  146. <addDefaultSpecificationEntries>true
  147. </addDefaultSpecificationEntries>
  148. <addDefaultImplementationEntries>true
  149. </addDefaultImplementationEntries>
  150. </manifest>
  151. </archive>
  152. </configuration>
  153. <version>2.4</version>
  154. </plugin>
  155. <plugin>
  156. <groupId>org.apache.maven.plugins</groupId>
  157. <artifactId>maven-source-plugin</artifactId>
  158. <executions>
  159. <execution>
  160. <goals>
  161. <goal>jar</goal>
  162. </goals>
  163. </execution>
  164. </executions>
  165. <version>2.1.2</version>
  166. </plugin>
  167. <plugin>
  168. <artifactId>maven-javadoc-plugin</artifactId>
  169. <executions>
  170. <execution>
  171. <id>javadoc-jar</id>
  172. <phase>package</phase>
  173. <goals>
  174. <goal>jar</goal>
  175. </goals>
  176. <configuration>
  177. <excludePackageNames>
  178. </excludePackageNames>
  179. <failOnError>false</failOnError>
  180. </configuration>
  181. </execution>
  182. </executions>
  183. <configuration>
  184. <charset>UTF-8</charset>
  185. <show>public</show>
  186. </configuration>
  187. <version>2.7</version>
  188. </plugin>
  189. <plugin>
  190. <groupId>org.apache.maven.plugins</groupId>
  191. <artifactId>maven-resources-plugin</artifactId>
  192. <configuration>
  193. <encoding>UTF-8</encoding>
  194. </configuration>
  195. <version>2.4.3</version>
  196. </plugin>
  197. <plugin>
  198. <artifactId>maven-surefire-plugin</artifactId>
  199. <version>2.19.1</version>
  200. <dependencies>
  201. <dependency>
  202. <groupId>org.junit.platform</groupId>
  203. <artifactId>junit-platform-surefire-provider</artifactId>
  204. <version>1.0.1</version>
  205. </dependency>
  206. <dependency>
  207. <groupId>org.junit.jupiter</groupId>
  208. <artifactId>junit-jupiter-engine</artifactId>
  209. <version>5.2.0</version>
  210. </dependency>
  211. </dependencies>
  212. </plugin>
  213. </plugins>
  214. </build>
  215. <properties>
  216. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  217. <project.reporting.outputEncoding>UTF-8
  218. </project.reporting.outputEncoding>
  219. </properties>
  220. </project>