|
4 | 4 |
|
5 | 5 | <groupId>com.zendesk</groupId> |
6 | 6 | <artifactId>mysql-binlog-connector-java</artifactId> |
7 | | - <version>0.25.2</version> |
| 7 | + <version>0.26.1</version> |
8 | 8 |
|
9 | 9 | <name>mysql-binlog-connector-java</name> |
10 | 10 | <description>MySQL Binary Log connector</description> |
|
33 | 33 | <name>Ben Osheroff</name> |
34 | 34 | </developer> |
35 | 35 | </developers> |
36 | | - <distributionManagement> |
37 | | - <repository> |
38 | | - <id>maven-central</id> |
39 | | - <name>Sonatype Nexus Staging</name> |
40 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> |
41 | | - </repository> |
42 | | - </distributionManagement> |
43 | | - |
44 | 36 | <properties> |
45 | 37 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
46 | 38 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
|
85 | 77 | <version>2.9.10.3</version> |
86 | 78 | <scope>test</scope> |
87 | 79 | </dependency> |
| 80 | + <dependency> |
| 81 | + <groupId>com.github.luben</groupId> |
| 82 | + <artifactId>zstd-jni</artifactId> |
| 83 | + <version>1.5.0-2</version> |
| 84 | + <scope>compile</scope> |
| 85 | + </dependency> |
88 | 86 | </dependencies> |
89 | | - |
90 | | - <reporting> |
91 | | - <plugins> |
92 | | - <plugin> |
93 | | - <!-- added to suppress "[WARNING] Unable to locate Source XRef to link to - DISABLED" --> |
94 | | - <groupId>org.apache.maven.plugins</groupId> |
95 | | - <artifactId>maven-jxr-plugin</artifactId> |
96 | | - <version>2.3</version> |
97 | | - </plugin> |
98 | | - </plugins> |
99 | | - </reporting> |
100 | | - |
101 | 87 | <build> |
102 | 88 | <plugins> |
| 89 | + <plugin> |
| 90 | + <groupId>org.sonatype.plugins</groupId> |
| 91 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 92 | + <version>1.6.6</version> |
| 93 | + <extensions>true</extensions> |
| 94 | + <configuration> |
| 95 | + <serverId>central</serverId> |
| 96 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 97 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 98 | + <stagingProgressTimeoutMinutes>10</stagingProgressTimeoutMinutes> |
| 99 | + <keepStagingRepositoryOnCloseRuleFailure>true</keepStagingRepositoryOnCloseRuleFailure> |
| 100 | + </configuration> |
| 101 | + </plugin> |
103 | 102 | <plugin> |
104 | 103 | <groupId>org.apache.maven.plugins</groupId> |
105 | 104 | <artifactId>maven-compiler-plugin</artifactId> |
|
121 | 120 | </archive> |
122 | 121 | </configuration> |
123 | 122 | </plugin> |
124 | | - <plugin> |
125 | | - <groupId>org.apache.maven.plugins</groupId> |
126 | | - <artifactId>maven-deploy-plugin</artifactId> |
127 | | - <version>2.8.2</version> |
128 | | - <configuration> |
129 | | - <skip>true</skip> |
130 | | - </configuration> |
131 | | - </plugin> |
132 | 123 | <plugin> |
133 | 124 | <groupId>org.apache.maven.plugins</groupId> |
134 | 125 | <artifactId>maven-surefire-plugin</artifactId> |
|
158 | 149 | </executions> |
159 | 150 | </plugin> |
160 | 151 | <plugin> |
161 | | - <groupId>com.github.shyiko.usage-maven-plugin</groupId> |
162 | | - <artifactId>usage-maven-plugin</artifactId> |
163 | | - <version>1.0.0</version> |
164 | | - <configuration> |
165 | | - <usage> |
166 | | - # build everything (append "-DskipTests=true" if you wish to skip tests) |
167 | | - ./mvnw clean package |
168 | | - |
169 | | - # run unit + integration tests |
170 | | - ./mvnw -P coverage clean verify |
171 | | - # use -Dvagrant.integration.box= to switch between MySQL sandboxes |
172 | | - |
173 | | - # publish a new version |
174 | | - ./mvnw versions:set -DnewVersion=<version> |
175 | | - ./mvnw -Ddeploy=maven-central |
176 | | - git tag <version> && git push origin <version> |
177 | | - </usage> |
178 | | - </configuration> |
| 152 | + <groupId>org.apache.maven.plugins</groupId> |
| 153 | + <artifactId>maven-source-plugin</artifactId> |
| 154 | + <version>3.2.1</version> |
| 155 | + <executions> |
| 156 | + <execution> |
| 157 | + <id>attach-sources</id> |
| 158 | + <phase>verify</phase> |
| 159 | + <goals> |
| 160 | + <goal>jar-no-fork</goal> |
| 161 | + </goals> |
| 162 | + </execution> |
| 163 | + </executions> |
| 164 | + </plugin> |
| 165 | + <plugin> |
| 166 | + <groupId>org.apache.maven.plugins</groupId> |
| 167 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 168 | + <version>3.2.0</version> |
| 169 | + <executions> |
| 170 | + <execution> |
| 171 | + <id>attach-javadocs</id> |
| 172 | + <goals> |
| 173 | + <goal>jar</goal> |
| 174 | + </goals> |
| 175 | + </execution> |
| 176 | + </executions> |
| 177 | + </plugin> |
| 178 | + <plugin> |
| 179 | + <groupId>org.apache.maven.plugins</groupId> |
| 180 | + <artifactId>maven-gpg-plugin</artifactId> |
| 181 | + <version>1.6</version> |
| 182 | + <executions> |
| 183 | + <execution> |
| 184 | + <id>sign-artifacts</id> |
| 185 | + <phase>verify</phase> |
| 186 | + <goals> |
| 187 | + <goal>sign</goal> |
| 188 | + </goals> |
| 189 | + </execution> |
| 190 | + </executions> |
179 | 191 | </plugin> |
180 | 192 | </plugins> |
181 | | - <extensions> |
182 | | - <extension> |
183 | | - <groupId>com.github.shyiko.usage-maven-plugin</groupId> |
184 | | - <artifactId>usage-maven-plugin</artifactId> |
185 | | - <version>1.0.0</version> |
186 | | - </extension> |
187 | | - </extensions> |
188 | 193 | </build> |
189 | | - |
190 | 194 | <profiles> |
191 | 195 | <profile> |
192 | 196 | <id>mysql-8-compat</id> |
|
199 | 203 | </dependency> |
200 | 204 | </dependencies> |
201 | 205 | </profile> |
202 | | - <profile> |
203 | | - <id>deploy-to-maven-central</id> |
204 | | - <activation> |
205 | | - <property> |
206 | | - <name>deploy</name> |
207 | | - <value>maven-central</value> |
208 | | - </property> |
209 | | - </activation> |
210 | | - <build> |
211 | | - <defaultGoal>clean deploy</defaultGoal> |
212 | | - <plugins> |
213 | | - <plugin> |
214 | | - <groupId>org.apache.maven.plugins</groupId> |
215 | | - <artifactId>maven-source-plugin</artifactId> |
216 | | - <version>3.2.1</version> |
217 | | - <executions> |
218 | | - <execution> |
219 | | - <id>attach-sources</id> |
220 | | - <phase>verify</phase> |
221 | | - <goals> |
222 | | - <goal>jar-no-fork</goal> |
223 | | - </goals> |
224 | | - </execution> |
225 | | - </executions> |
226 | | - </plugin> |
227 | | - <plugin> |
228 | | - <groupId>org.apache.maven.plugins</groupId> |
229 | | - <artifactId>maven-javadoc-plugin</artifactId> |
230 | | - <version>3.2.0</version> |
231 | | - <executions> |
232 | | - <execution> |
233 | | - <id>attach-javadocs</id> |
234 | | - <goals> |
235 | | - <goal>jar</goal> |
236 | | - </goals> |
237 | | - </execution> |
238 | | - </executions> |
239 | | - </plugin> |
240 | | - <plugin> |
241 | | - <groupId>org.apache.maven.plugins</groupId> |
242 | | - <artifactId>maven-gpg-plugin</artifactId> |
243 | | - <version>1.6</version> |
244 | | - <executions> |
245 | | - <execution> |
246 | | - <id>sign-artifacts</id> |
247 | | - <phase>verify</phase> |
248 | | - <goals> |
249 | | - <goal>sign</goal> |
250 | | - </goals> |
251 | | - </execution> |
252 | | - </executions> |
253 | | - </plugin> |
254 | | - <plugin> |
255 | | - <groupId>org.sonatype.plugins</groupId> |
256 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
257 | | - <version>1.6.8</version> |
258 | | - <extensions>true</extensions> |
259 | | - <configuration> |
260 | | - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
261 | | - <serverId>maven-central</serverId> |
262 | | - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
263 | | - </configuration> |
264 | | - </plugin> |
265 | | - </plugins> |
266 | | - </build> |
267 | | - </profile> |
268 | 206 | </profiles> |
269 | 207 |
|
270 | 208 | </project> |
0 commit comments