|
7 | 7 | <groupId>io.github.fastfilter</groupId> |
8 | 8 | <artifactId>fastfilter_java</artifactId> |
9 | 9 | <packaging>pom</packaging> |
10 | | - <version>1.0.1-SNAPSHOT</version> |
| 10 | + <version>1.0.2</version> |
11 | 11 | <modules> |
12 | 12 | <module>fastfilter</module> |
13 | 13 | <module>jmh</module> |
|
22 | 22 | <maven.surefire.version>2.19.1</maven.surefire.version> |
23 | 23 | </properties> |
24 | 24 |
|
| 25 | + <name>FastFilter</name> |
| 26 | + <description>Fast Approximate Membership Filters in Java</description> |
| 27 | + <url>https://github.com/FastFilter/fastfilter_java</url> |
| 28 | + <licenses> |
| 29 | + <license> |
| 30 | + <name>The Apache License, Version 2.0</name> |
| 31 | + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 32 | + </license> |
| 33 | + </licenses> |
| 34 | + <developers> |
| 35 | + <developer> |
| 36 | + <name>Thomas Mueller</name> |
| 37 | + <organizationUrl>https://github.com/thomasmueller</organizationUrl> |
| 38 | + </developer> |
| 39 | + <developer> |
| 40 | + <name>Daniel Lemire</name> |
| 41 | + <organizationUrl>https://github.com/lemire</organizationUrl> |
| 42 | + </developer> |
| 43 | + <developer> |
| 44 | + <name>Richard Startin</name> |
| 45 | + <organizationUrl>https://github.com/richardstartin</organizationUrl> |
| 46 | + </developer> |
| 47 | + </developers> |
| 48 | + <scm> |
| 49 | + <connection>scm:git:git://git@github.com:FastFilter/fastfilter_java.git</connection> |
| 50 | + <developerConnection>scm:git:ssh://git@github.com:FastFilter/fastfilter_java.git</developerConnection> |
| 51 | + <url>https://github.com/FastFilter/fastfilter_java/tree/master</url> |
| 52 | + </scm> |
| 53 | + |
| 54 | + <distributionManagement> |
| 55 | + <snapshotRepository> |
| 56 | + <id>ossrh</id> |
| 57 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
| 58 | + </snapshotRepository> |
| 59 | + <repository> |
| 60 | + <id>ossrh</id> |
| 61 | + <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 62 | + </repository> |
| 63 | + </distributionManagement> |
| 64 | + |
| 65 | + <profiles> |
| 66 | + <profile> |
| 67 | + <id>release-sign-artifacts</id> |
| 68 | + <activation> |
| 69 | + <property> |
| 70 | + <name>performRelease</name> |
| 71 | + <value>true</value> |
| 72 | + </property> |
| 73 | + </activation> |
| 74 | + <build> |
| 75 | + <plugins> |
| 76 | + <plugin> |
| 77 | + <groupId>org.apache.maven.plugins</groupId> |
| 78 | + <artifactId>maven-source-plugin</artifactId> |
| 79 | + <version>2.2.1</version> |
| 80 | + <executions> |
| 81 | + <execution> |
| 82 | + <id>attach-sources</id> |
| 83 | + <goals> |
| 84 | + <goal>jar-no-fork</goal> |
| 85 | + </goals> |
| 86 | + </execution> |
| 87 | + </executions> |
| 88 | + </plugin> |
| 89 | + <plugin> |
| 90 | + <groupId>org.apache.maven.plugins</groupId> |
| 91 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 92 | + <version>2.9.1</version> |
| 93 | + <executions> |
| 94 | + <execution> |
| 95 | + <id>attach-javadocs</id> |
| 96 | + <goals> |
| 97 | + <goal>jar</goal> |
| 98 | + </goals> |
| 99 | + </execution> |
| 100 | + </executions> |
| 101 | + </plugin> |
| 102 | + <plugin> |
| 103 | + <groupId>org.apache.maven.plugins</groupId> |
| 104 | + <artifactId>maven-gpg-plugin</artifactId> |
| 105 | + <version>1.5</version> |
| 106 | + <executions> |
| 107 | + <execution> |
| 108 | + <id>sign-artifacts</id> |
| 109 | + <phase>verify</phase> |
| 110 | + <goals> |
| 111 | + <goal>sign</goal> |
| 112 | + </goals> |
| 113 | + </execution> |
| 114 | + </executions> |
| 115 | + </plugin> |
| 116 | + </plugins> |
| 117 | + </build> |
| 118 | + </profile> |
| 119 | + </profiles> |
| 120 | + |
25 | 121 | <dependencyManagement> |
26 | 122 | <dependencies> |
27 | 123 | <dependency> |
|
0 commit comments