Skip to content

Commit 6a76ca6

Browse files
committed
Version 1.0 release; prepare for next version
1 parent 36e1d38 commit 6a76ca6

File tree

3 files changed

+61
-51
lines changed

3 files changed

+61
-51
lines changed

fastfilter/pom.xml

Lines changed: 59 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
<parent>
66
<groupId>io.github.fastfilter</groupId>
77
<artifactId>fastfilter_java</artifactId>
8-
<version>1.0-SNAPSHOT</version>
8+
<version>1.0.1-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

1212
<artifactId>fastfilter</artifactId>
1313
<packaging>jar</packaging>
14-
14+
1515
<name>FastFilter</name>
1616
<description>Fast Approximate Membership Filters in Java</description>
1717
<url>https://github.com/FastFilter/fastfilter_java</url>
@@ -41,6 +41,17 @@
4141
<url>https://github.com/FastFilter/fastfilter_java/tree/master</url>
4242
</scm>
4343

44+
<distributionManagement>
45+
<snapshotRepository>
46+
<id>ossrh</id>
47+
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
48+
</snapshotRepository>
49+
<repository>
50+
<id>ossrh</id>
51+
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
52+
</repository>
53+
</distributionManagement>
54+
4455
<dependencies>
4556
<dependency>
4657
<groupId>junit</groupId>
@@ -92,7 +103,7 @@
92103
</plugin>
93104
</plugins>
94105
</build>
95-
106+
96107
<profiles>
97108
<profile>
98109
<id>release-sign-artifacts</id>
@@ -102,51 +113,51 @@
102113
<value>true</value>
103114
</property>
104115
</activation>
105-
<build>
106-
<plugins>
107-
<plugin>
108-
<groupId>org.apache.maven.plugins</groupId>
109-
<artifactId>maven-source-plugin</artifactId>
110-
<version>2.2.1</version>
111-
<executions>
112-
<execution>
113-
<id>attach-sources</id>
114-
<goals>
115-
<goal>jar-no-fork</goal>
116-
</goals>
117-
</execution>
118-
</executions>
119-
</plugin>
120-
<plugin>
121-
<groupId>org.apache.maven.plugins</groupId>
122-
<artifactId>maven-javadoc-plugin</artifactId>
123-
<version>2.9.1</version>
124-
<executions>
125-
<execution>
126-
<id>attach-javadocs</id>
127-
<goals>
128-
<goal>jar</goal>
129-
</goals>
130-
</execution>
131-
</executions>
132-
</plugin>
133-
<plugin>
134-
<groupId>org.apache.maven.plugins</groupId>
135-
<artifactId>maven-gpg-plugin</artifactId>
136-
<version>1.5</version>
137-
<executions>
138-
<execution>
139-
<id>sign-artifacts</id>
140-
<phase>verify</phase>
141-
<goals>
142-
<goal>sign</goal>
143-
</goals>
144-
</execution>
145-
</executions>
146-
</plugin>
147-
</plugins>
148-
</build>
116+
<build>
117+
<plugins>
118+
<plugin>
119+
<groupId>org.apache.maven.plugins</groupId>
120+
<artifactId>maven-source-plugin</artifactId>
121+
<version>2.2.1</version>
122+
<executions>
123+
<execution>
124+
<id>attach-sources</id>
125+
<goals>
126+
<goal>jar-no-fork</goal>
127+
</goals>
128+
</execution>
129+
</executions>
130+
</plugin>
131+
<plugin>
132+
<groupId>org.apache.maven.plugins</groupId>
133+
<artifactId>maven-javadoc-plugin</artifactId>
134+
<version>2.9.1</version>
135+
<executions>
136+
<execution>
137+
<id>attach-javadocs</id>
138+
<goals>
139+
<goal>jar</goal>
140+
</goals>
141+
</execution>
142+
</executions>
143+
</plugin>
144+
<plugin>
145+
<groupId>org.apache.maven.plugins</groupId>
146+
<artifactId>maven-gpg-plugin</artifactId>
147+
<version>1.5</version>
148+
<executions>
149+
<execution>
150+
<id>sign-artifacts</id>
151+
<phase>verify</phase>
152+
<goals>
153+
<goal>sign</goal>
154+
</goals>
155+
</execution>
156+
</executions>
157+
</plugin>
158+
</plugins>
159+
</build>
149160
</profile>
150-
</profiles>
161+
</profiles>
151162

152163
</project>

jmh/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.github.fastfilter</groupId>
77
<artifactId>fastfilter_java</artifactId>
8-
<version>1.0-SNAPSHOT</version>
8+
<version>1.0.1-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,12 @@
77
<groupId>io.github.fastfilter</groupId>
88
<artifactId>fastfilter_java</artifactId>
99
<packaging>pom</packaging>
10-
<version>1.0-SNAPSHOT</version>
10+
<version>1.0.1-SNAPSHOT</version>
1111
<modules>
1212
<module>fastfilter</module>
1313
<module>jmh</module>
1414
</modules>
1515

16-
1716
<properties>
1817
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1918
<junit.version>4.13.1</junit.version>

0 commit comments

Comments
 (0)