Skip to content

Commit

Permalink
Merge branch 'release/1.0.0-RC7'
Browse files Browse the repository at this point in the history
  • Loading branch information
vegegoku committed May 29, 2022
2 parents 0b9ffa5 + 0c849d8 commit a3acb24
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 11 deletions.
2 changes: 1 addition & 1 deletion domino-rest-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>domino-rest</artifactId>
<groupId>org.dominokit</groupId>
<version>1.0.0-RC6</version>
<version>1.0.0-RC7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class DominoRestConfig implements RestConfig {
private static String defaultResourceRootPath = "service";
private static String defaultJsonDateFormat = null;

private static final RequestRouter<ServerRequest> serverRouter =
private static RequestRouter<ServerRequest> serverRouter =
new ServerRouter(
new DefaultRequestAsyncSender(new ServerEventFactory(), new RequestSender<>()));
private static List<DynamicServiceRoot> dynamicServiceRoots = new ArrayList<>();
Expand Down Expand Up @@ -189,6 +189,15 @@ public DominoRestConfig setDefaultResourceRootPath(String rootPath) {
return this;
}

/**
* Sets the server router
*
* @param serverRouter the new router
*/
public void setServerRouter(RequestRouter<ServerRequest> serverRouter) {
DominoRestConfig.serverRouter = serverRouter;
}

/** {@inheritDoc} */
@Override
public RequestRouter<ServerRequest> getServerRouter() {
Expand Down
2 changes: 1 addition & 1 deletion domino-rest-jaxrs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.dominokit</groupId>
<artifactId>domino-rest</artifactId>
<version>1.0.0-RC6</version>
<version>1.0.0-RC7</version>
</parent>

<artifactId>domino-rest-jaxrs</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion domino-rest-jvm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>domino-rest</artifactId>
<groupId>org.dominokit</groupId>
<version>1.0.0-RC6</version>
<version>1.0.0-RC7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion domino-rest-processor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>domino-rest</artifactId>
<groupId>org.dominokit</groupId>
<version>1.0.0-RC6</version>
<version>1.0.0-RC7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion domino-rest-shared/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>domino-rest</artifactId>
<groupId>org.dominokit</groupId>
<version>1.0.0-RC6</version>
<version>1.0.0-RC7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public void startRouting() {
requestContext.getConfig().getServerRouter().routeRequest(this);
}

void setHttpRequest(RestfulRequest httpRequest) {
public void setHttpRequest(RestfulRequest httpRequest) {
this.httpRequest = httpRequest;
}

Expand Down
2 changes: 1 addition & 1 deletion domino-rest-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>domino-rest</artifactId>
<groupId>org.dominokit</groupId>
<version>1.0.0-RC6</version>
<version>1.0.0-RC7</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>org.dominokit</groupId>
<artifactId>domino-rest</artifactId>
<version>1.0.0-RC6</version>
<version>1.0.0-RC7</version>
<packaging>pom</packaging>

<name>domino-rest</name>
Expand Down Expand Up @@ -70,7 +70,7 @@

<properties>
<snapshot.version>HEAD-SNAPSHOT</snapshot.version>
<next.release.version>1.0.0-RC6</next.release.version>
<next.release.version>1.0.0-RC7</next.release.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand All @@ -89,7 +89,7 @@
<maven.gwt.plugin>1.0.0</maven.gwt.plugin>
<gwt.version>2.9.0</gwt.version>
<domino.logger.version>1.0.2</domino.logger.version>
<domino.jackson.version>1.0.0-RC3</domino.jackson.version>
<domino.jackson.version>1.0.0-RC4</domino.jackson.version>
<domino.history.version>1.0.0-RC3</domino.history.version>
<domino.aggregator.version>1.0.2</domino.aggregator.version>
</properties>
Expand Down

0 comments on commit a3acb24

Please sign in to comment.