Bump version.

main
Paulo Gustavo Veiga 2024-03-24 10:18:19 -07:00
parent c287d47c84
commit 3273d74501
2 changed files with 2 additions and 3 deletions

View File

@ -9,13 +9,13 @@
<groupId>org.wisemapping</groupId> <groupId>org.wisemapping</groupId>
<artifactId>wise-api</artifactId> <artifactId>wise-api</artifactId>
<version>5.1.0-SNAPSHOT</version> <version>6.0.0-SNAPSHOT</version>
<name>WiseMapping API</name> <name>WiseMapping API</name>
<url>https://www.wisemapping.org</url> <url>https://www.wisemapping.org</url>
<properties> <properties>
<com.wisemapping.version>5.1.0-SNAPSHOT</com.wisemapping.version> <com.wisemapping.version>6.0.0-SNAPSHOT</com.wisemapping.version>
<maven.compiler.source>21</maven.compiler.source> <maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target> <maven.compiler.target>21</maven.compiler.target>
</properties> </properties>

View File

@ -14,7 +14,6 @@ public class Application {
new SpringApplicationBuilder() new SpringApplicationBuilder()
.parent(CommonConfig.class).web(WebApplicationType.NONE) .parent(CommonConfig.class).web(WebApplicationType.NONE)
.child(RestAppConfig.class, WebConfig.class).web(WebApplicationType.SERVLET) .child(RestAppConfig.class, WebConfig.class).web(WebApplicationType.SERVLET)
// .sibling(MvcAppConfig.class).web(WebApplicationType.SERVLET)
.run(args); .run(args);
} }