|
7 | 7 | <version>1.2.2-SNAPSHOT</version> |
8 | 8 | <packaging>jar</packaging> |
9 | 9 | <name>bullet-core</name> |
| 10 | + <description> |
| 11 | + This is the core library that powers various components for Bullet - a real-time data query engine. |
| 12 | + </description> |
| 13 | + <url>https://github.com/bullet-db/bullet-core</url> |
10 | 14 |
|
11 | | - <scm> |
12 | | - <developerConnection>scm:git:ssh://git@github.com/bullet-db/bullet-core.git</developerConnection> |
13 | | - <tag>HEAD</tag> |
14 | | - </scm> |
| 15 | + <licenses> |
| 16 | + <license> |
| 17 | + <name>Apache License, Version 2.0</name> |
| 18 | + <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 19 | + </license> |
| 20 | + </licenses> |
15 | 21 |
|
16 | 22 | <distributionManagement> |
| 23 | + <snapshotRepository> |
| 24 | + <id>ossrh</id> |
| 25 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 26 | + </snapshotRepository> |
17 | 27 | <repository> |
18 | | - <id>bintray-bullet-core-repo</id> |
19 | | - <url>https://api.bintray.com/maven/yahoo/maven/bullet-core;publish=1</url> |
| 28 | + <id>ossrh</id> |
| 29 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
20 | 30 | </repository> |
21 | 31 | </distributionManagement> |
22 | 32 |
|
23 | | - <repositories> |
24 | | - <repository> |
25 | | - <snapshots> |
26 | | - <enabled>false</enabled> |
27 | | - </snapshots> |
28 | | - <id>bintray-yahoo-maven</id> |
29 | | - <name>bintray</name> |
30 | | - <url>http://dl.bintray.com/yahoo/maven</url> |
31 | | - </repository> |
32 | | - </repositories> |
| 33 | + <scm> |
| 34 | + <url>https://github.com/bullet-db/bullet-core</url> |
| 35 | + <connection>scm:git:ssh://git@github.com/bullet-db/bullet-core.git</connection> |
| 36 | + <developerConnection>scm:git:ssh://git@github.com/bullet-db/bullet-core.git</developerConnection> |
| 37 | + <tag>HEAD</tag> |
| 38 | + </scm> |
| 39 | + |
| 40 | + <developers> |
| 41 | + <developer> |
| 42 | + <name>Bullet Developers</name> |
| 43 | + <email>bullet-dev@googlegroups.com</email> |
| 44 | + <organization>Yahoo Inc.</organization> |
| 45 | + <organizationUrl>https://github.com/bullet-db</organizationUrl> |
| 46 | + </developer> |
| 47 | + </developers> |
33 | 48 |
|
34 | 49 | <properties> |
35 | 50 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
36 | 51 | <maven.compiler.source>1.8</maven.compiler.source> |
37 | 52 | <maven.compiler.target>1.8</maven.compiler.target> |
38 | | - <bullet.record.version>1.1.0</bullet.record.version> |
| 53 | + <bullet.record.version>1.1.1</bullet.record.version> |
39 | 54 | <sketches.version>0.9.1</sketches.version> |
40 | 55 | </properties> |
41 | 56 |
|
|
246 | 261 | </plugin> |
247 | 262 | </plugins> |
248 | 263 | </build> |
| 264 | + |
| 265 | + <profiles> |
| 266 | + <profile> |
| 267 | + <id>release</id> |
| 268 | + <activation> |
| 269 | + <property> |
| 270 | + <name>release</name> |
| 271 | + </property> |
| 272 | + </activation> |
| 273 | + <build> |
| 274 | + <plugins> |
| 275 | + <plugin> |
| 276 | + <groupId>org.apache.maven.plugins</groupId> |
| 277 | + <artifactId>maven-gpg-plugin</artifactId> |
| 278 | + <version>1.6</version> |
| 279 | + <executions> |
| 280 | + <execution> |
| 281 | + <id>sign-artifacts</id> |
| 282 | + <phase>verify</phase> |
| 283 | + <goals> |
| 284 | + <goal>sign</goal> |
| 285 | + </goals> |
| 286 | + <configuration> |
| 287 | + <gpgArguments> |
| 288 | + <arg>--pinentry-mode</arg> |
| 289 | + <arg>loopback</arg> |
| 290 | + </gpgArguments> |
| 291 | + </configuration> |
| 292 | + </execution> |
| 293 | + </executions> |
| 294 | + </plugin> |
| 295 | + <plugin> |
| 296 | + <groupId>org.sonatype.plugins</groupId> |
| 297 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 298 | + <version>1.6.8</version> |
| 299 | + <extensions>true</extensions> |
| 300 | + <configuration> |
| 301 | + <serverId>ossrh</serverId> |
| 302 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 303 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 304 | + </configuration> |
| 305 | + </plugin> |
| 306 | + </plugins> |
| 307 | + </build> |
| 308 | + </profile> |
| 309 | + </profiles> |
249 | 310 | </project> |
0 commit comments