Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@

<properties>
<stack.version>5.0.0-SNAPSHOT</stack.version>
<std-uritemplate.version>0.0.50</std-uritemplate.version>
<jar.manifest>${project.basedir}/src/main/resources/META-INF/MANIFEST.MF</jar.manifest>
</properties>

Expand Down Expand Up @@ -61,6 +62,11 @@
<artifactId>vertx-docgen</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.github.std-uritemplate</groupId>
<artifactId>std-uritemplate</artifactId>
<version>${std-uritemplate.version}</version>
</dependency>

<!-- Test deps -->
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/vertx/uritemplate/UriTemplate.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public interface UriTemplate {
* @throws IllegalArgumentException when the template
*/
static UriTemplate of(String uri) {
return new UriTemplateImpl.Parser().parseURITemplate(uri);
return new UriTemplateImpl(uri);
}

/**
Expand Down
Loading