Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
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
1 change: 0 additions & 1 deletion org.restlet.gwt/org.restlet.gwt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${lib-junit-version}</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
2 changes: 0 additions & 2 deletions org.restlet.java/org.restlet.test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -170,12 +170,10 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${lib-junit-version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${lib-junit-version}</version>
<scope>compile</scope>
</dependency>
</dependencies>
Expand Down
6 changes: 5 additions & 1 deletion org.restlet.java/org.restlet/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${lib-junit-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,7 @@ public void setHostRef(Reference hostRef) {
}

/**
* Sets the host reference using an URI string. Note that when used with HTTP
* Sets the host reference using a URI string. Note that when used with HTTP
* connectors, this property maps to the "Host" header.
*
* @param hostUri The host URI.
Expand Down Expand Up @@ -866,7 +866,7 @@ public void setReferrerRef(Reference referrerRef) {
}

/**
* Sets the referrer reference if available using an URI string. Note that when
* Sets the referrer reference if available using a URI string. Note that when
* used with HTTP connectors, this property maps to the "Referer" header.
*
* @param referrerUri The referrer URI.
Expand All @@ -890,7 +890,7 @@ public void setResourceRef(Reference resourceRef) {
}

/**
* Sets the target resource reference using an URI string. Note that the URI can
* Sets the target resource reference using a URI string. Note that the URI can
* be either absolute or relative to the context's base reference.
*
* @param resourceUri The resource URI.
Expand Down
Loading