Skip to content

Commit 5712bf7

Browse files
committed
Prepare for release and update pom.xml
1 parent 3a1f37a commit 5712bf7

File tree

2 files changed

+32
-40
lines changed

2 files changed

+32
-40
lines changed

pom.xml

Lines changed: 31 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>net.ravendb</groupId>
66
<artifactId>ravendb-embedded</artifactId>
7-
<version>6.0.1</version>
7+
<version>6.0.2</version>
88

99
<name>RavenDB Embedded</name>
1010
<description>RavenDB package for running RavenDB in embedded mode</description>
@@ -15,7 +15,7 @@
1515
<connection>scm:git:https://github.com/ravendb/ravendb-jvm-embedded.git</connection>
1616
<developerConnection>scm:git:[email protected]:ravendb/ravendb-jvm-embedded.git</developerConnection>
1717
<url>https://github.com/ravendb/ravendb-jvm-embedded.git</url>
18-
<tag>v6.0.1</tag>
18+
<tag>v6.0.2</tag>
1919
</scm>
2020

2121
<licenses>
@@ -27,9 +27,9 @@
2727

2828
<developers>
2929
<developer>
30-
<email>marcin@ravendb.net</email>
31-
<id>marcin@ravendb.net</id>
32-
<name>Marcin Lewandowski</name>
30+
<email>liel.nagar@ravendb.net</email>
31+
<id>liel.nagar@ravendb.net</id>
32+
<name>Liel Nagar</name>
3333
<organizationUrl>http://ravendb.net</organizationUrl>
3434
<roles>
3535
<role>developer</role>
@@ -39,8 +39,8 @@
3939
</developers>
4040

4141
<properties>
42-
<server.version>6.0.100</server.version>
43-
<client.version>6.0.1</client.version>
42+
<server.version>6.0.110</server.version>
43+
<client.version>6.0.2</client.version>
4444

4545
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4646
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
@@ -82,13 +82,6 @@
8282
</dependency>
8383
</dependencies>
8484

85-
<distributionManagement>
86-
<repository>
87-
<id>ossrh</id>
88-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
89-
</repository>
90-
</distributionManagement>
91-
9285
<build>
9386
<resources>
9487
<resource>
@@ -128,7 +121,7 @@
128121
<execution>
129122
<id>attach-sources</id>
130123
<goals>
131-
<goal>jar</goal>
124+
<goal>jar-no-fork</goal>
132125
</goals>
133126
</execution>
134127
</executions>
@@ -208,6 +201,20 @@
208201
</execution>
209202
</executions>
210203
</plugin>
204+
<plugin>
205+
<groupId>org.apache.maven.plugins</groupId>
206+
<artifactId>maven-gpg-plugin</artifactId>
207+
<version>3.1.0</version>
208+
<executions>
209+
<execution>
210+
<id>sign-artifacts</id>
211+
<phase>verify</phase>
212+
<goals>
213+
<goal>sign</goal>
214+
</goals>
215+
</execution>
216+
</executions>
217+
</plugin>
211218
<plugin>
212219
<groupId>org.codehaus.mojo</groupId>
213220
<artifactId>versions-maven-plugin</artifactId>
@@ -217,30 +224,15 @@
217224
<artifactId>maven-surefire-plugin</artifactId>
218225
<version>3.2.5</version>
219226
</plugin>
227+
<plugin>
228+
<groupId>org.sonatype.central</groupId>
229+
<artifactId>central-publishing-maven-plugin</artifactId>
230+
<version>0.7.0</version>
231+
<extensions>true</extensions>
232+
<configuration>
233+
<publishingServerId>central</publishingServerId>
234+
</configuration>
235+
</plugin>
220236
</plugins>
221237
</build>
222-
223-
<profiles>
224-
<profile>
225-
<id>release</id>
226-
<build>
227-
<plugins>
228-
<plugin>
229-
<groupId>org.apache.maven.plugins</groupId>
230-
<artifactId>maven-gpg-plugin</artifactId>
231-
<version>3.1.0</version>
232-
<executions>
233-
<execution>
234-
<id>sign-artifacts</id>
235-
<phase>verify</phase>
236-
<goals>
237-
<goal>sign</goal>
238-
</goals>
239-
</execution>
240-
</executions>
241-
</plugin>
242-
</plugins>
243-
</build>
244-
</profile>
245-
</profiles>
246238
</project>

src/main/java/net/ravendb/embedded/ServerOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public class ServerOptions {
2424
private static final String BASE_DIRECTORY = Paths.get("").toAbsolutePath().toString();
2525
static String DEFAULT_SERVER_LOCATION = Paths.get(BASE_DIRECTORY, "RavenDBServer").toString();
2626

27-
private String frameworkVersion = "8.0.2+";
27+
private String frameworkVersion = "8.0.16+";
2828

2929
private String logsPath = Paths.get(BASE_DIRECTORY, "RavenDB", "Logs").toString();
3030
private String dataDirectory = Paths.get(BASE_DIRECTORY, "RavenDB").toString();

0 commit comments

Comments
 (0)