pom.xml 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  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-async</artifactId>
  5. <version>4.0.7</version>
  6. <packaging>jar</packaging>
  7. <name>twitter4j-async</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.junit.jupiter</groupId>
  103. <artifactId>junit-jupiter-api</artifactId>
  104. <version>5.2.0</version>
  105. <scope>test</scope>
  106. </dependency>
  107. </dependencies>
  108. <build>
  109. <defaultGoal>install</defaultGoal>
  110. <plugins>
  111. <plugin>
  112. <groupId>org.apache.maven.plugins</groupId>
  113. <artifactId>maven-release-plugin</artifactId>
  114. <version>2.3.2</version>
  115. </plugin>
  116. <plugin>
  117. <groupId>org.apache.maven.plugins</groupId>
  118. <artifactId>maven-compiler-plugin</artifactId>
  119. <configuration>
  120. <encoding>UTF-8</encoding>
  121. <source>6</source>
  122. <target>6</target>
  123. </configuration>
  124. <version>2.5.1</version>
  125. </plugin>
  126. <plugin>
  127. <groupId>org.apache.maven.plugins</groupId>
  128. <artifactId>maven-jar-plugin</artifactId>
  129. <configuration>
  130. <archive>
  131. <manifestFile>src/main/resources/META-INF/MANIFEST.MF
  132. </manifestFile>
  133. <manifest>
  134. <addDefaultSpecificationEntries>true
  135. </addDefaultSpecificationEntries>
  136. <addDefaultImplementationEntries>true
  137. </addDefaultImplementationEntries>
  138. </manifest>
  139. </archive>
  140. </configuration>
  141. <version>2.4</version>
  142. </plugin>
  143. <plugin>
  144. <groupId>org.apache.maven.plugins</groupId>
  145. <artifactId>maven-source-plugin</artifactId>
  146. <executions>
  147. <execution>
  148. <goals>
  149. <goal>jar</goal>
  150. </goals>
  151. </execution>
  152. </executions>
  153. <version>2.1.2</version>
  154. </plugin>
  155. <plugin>
  156. <artifactId>maven-javadoc-plugin</artifactId>
  157. <executions>
  158. <execution>
  159. <id>javadoc-jar</id>
  160. <phase>package</phase>
  161. <goals>
  162. <goal>jar</goal>
  163. </goals>
  164. <configuration>
  165. <excludePackageNames>
  166. </excludePackageNames>
  167. <failOnError>false</failOnError>
  168. </configuration>
  169. </execution>
  170. </executions>
  171. <configuration>
  172. <charset>UTF-8</charset>
  173. <show>public</show>
  174. </configuration>
  175. <version>2.10.3</version>
  176. </plugin>
  177. <plugin>
  178. <groupId>org.apache.maven.plugins</groupId>
  179. <artifactId>maven-resources-plugin</artifactId>
  180. <configuration>
  181. <encoding>UTF-8</encoding>
  182. </configuration>
  183. <version>2.5</version>
  184. </plugin>
  185. </plugins>
  186. </build>
  187. <properties>
  188. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  189. <project.reporting.outputEncoding>UTF-8
  190. </project.reporting.outputEncoding>
  191. </properties>
  192. </project>