Skip to content

Commit

Permalink
v7.3.1 (#265)
Browse files Browse the repository at this point in the history
  • Loading branch information
azagniotov authored Mar 23, 2021
1 parent 2f9cbce commit 79bfb11
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 13 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Please refer to [Key features](#key-features) for more information
#### Why the word "stubby"?
It is a stub HTTP server after all, hence the "stubby". Fun fact: in Australian slang "stubby" means _beer bottle_

## User manual for stubby4j v7.3.0
## User manual for stubby4j v7.3.1
### Table of contents

* [Key features](#key-features)
Expand Down Expand Up @@ -127,7 +127,7 @@ $ docker build --rm --no-cache -t stubby4j:latest .
or the following command to build from a specific tag, e.g.:

```shell script
$ docker build --build-arg REVISION=v7.3.0 --rm --no-cache -t stubby4j:latest .
$ docker build --build-arg REVISION=v7.3.1 --rm --no-cache -t stubby4j:latest .
```

Refer to https://hub.docker.com/r/azagniotov/stubby4j README `How to use this image` section regarding how to use the built image
Expand Down Expand Up @@ -188,20 +188,20 @@ The following are the stubby4j artifacts that are hosted on [Maven Central][mave

#### Gradle
```xml
compile("io.github.azagniotov:stubby4j:7.3.0")
compile("io.github.azagniotov:stubby4j:7.3.1")
```
or by adding a `classifier` to the JAR name like `no-dependencies` or `no-jetty`, i.e.:

```xml
compile("io.github.azagniotov:stubby4j:7.3.0:no-jetty")
compile("io.github.azagniotov:stubby4j:7.3.1:no-jetty")
```

#### Maven
```xml
<dependency>
<groupId>io.github.azagniotov</groupId>
<artifactId>stubby4j</artifactId>
<version>7.3.0</version>
<version>7.3.1</version>
</dependency>
```
or by adding a `classifier` to the JAR name like `no-dependencies` or `no-jetty`, i.e.:
Expand All @@ -210,7 +210,7 @@ or by adding a `classifier` to the JAR name like `no-dependencies` or `no-jetty`
<dependency>
<groupId>io.github.azagniotov</groupId>
<artifactId>stubby4j</artifactId>
<version>7.3.0</version>
<version>7.3.1</version>
<classifier>no-dependencies</classifier>
</dependency>
```
Expand All @@ -219,17 +219,17 @@ or by adding a `classifier` to the JAR name like `no-dependencies` or `no-jetty`

Run `./gradlew installToMavenLocal` command to:

* Install `stubby4j-7.3.1-SNAPSHOT*.jar` to local `~/.m2/repository`
* All the artifacts will be installed under `~/.m2/repository/{groupId}/{artifactId}/{version}/`, e.g.: `~/.m2/repository/io/github/azagniotov/stubby4j/7.3.1-SNAPSHOT/`
* Install `stubby4j-7.3.2-SNAPSHOT*.jar` to local `~/.m2/repository`
* All the artifacts will be installed under `~/.m2/repository/{groupId}/{artifactId}/{version}/`, e.g.: `~/.m2/repository/io/github/azagniotov/stubby4j/7.3.2-SNAPSHOT/`

Now you can include locally installed stubby4j `SNAPSHOT` artifacts in your project:
```xml
compile("io.github.azagniotov:stubby4j:7.3.1-SNAPSHOT")
compile("io.github.azagniotov:stubby4j:7.3.2-SNAPSHOT")
```
or by adding a `classifier` to the JAR name like `no-dependencie`s or `no-jetty`, i.e.:

```xml
compile("io.github.azagniotov:stubby4j:7.3.1-SNAPSHOT:no-jetty")
compile("io.github.azagniotov:stubby4j:7.3.2-SNAPSHOT:no-jetty")
```

[Back to top](#table-of-contents)
Expand Down
6 changes: 5 additions & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
[Back to the main README.md](../README.md#change-log)

#### 7.3.1-SNAPSHOT
#### 7.3.2-SNAPSHOT

#### 7.3.1

* PR [#264](https://github.com/azagniotov/stubby4j/pull/264) - Multiple proxy configurations support (https://github.com/azagniotov)

#### 7.3.0

Expand Down
2 changes: 1 addition & 1 deletion docs/REQUEST_PROXYING.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ When creating a `proxy-config` definition without an explicit `uuid` property, a

##### Property is `required` when

Defining multiple `proxy-config` objects in your YAML configuration. The `uuid` property must have unique values across all defined `proxy-config` objects. Please keep in mind that you always have defined a `default proxy config` (i.e.: with `uuid: default` or without `uuid` at all).
Defining multiple `proxy-config` objects in your YAML configuration. The `uuid` property must have unique values across all defined `proxy-config` objects. Please note: you must always have defined a `default proxy config` (i.e.: with `uuid: default` or without `uuid` at all) when adding proxy configurations.

#### description (`optional`)

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ xmlUnitVersion=2.8.2
jettyVersion=9.4.36.v20210114
stubbyProjectName=stubby4j
stubbyProjectGroup=io.github.azagniotov
stubbyProjectVersion=7.3.1-SNAPSHOT
stubbyProjectVersion=7.3.2-SNAPSHOT

0 comments on commit 79bfb11

Please sign in to comment.