Skip to content

Commit

Permalink
v7.3.2 (#271)
Browse files Browse the repository at this point in the history
  • Loading branch information
azagniotov authored Apr 3, 2021
1 parent 75ae8e8 commit 0b273b0
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 12 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.2-SNAPSHOT
## User manual for stubby4j v7.3.3-SNAPSHOT
### 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.1 --rm --no-cache -t stubby4j:latest .
$ docker build --build-arg REVISION=v7.3.2 --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.1")
compile("io.github.azagniotov:stubby4j:7.3.2")
```
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.1:no-jetty")
compile("io.github.azagniotov:stubby4j:7.3.2:no-jetty")
```

#### Maven
```xml
<dependency>
<groupId>io.github.azagniotov</groupId>
<artifactId>stubby4j</artifactId>
<version>7.3.1</version>
<version>7.3.2</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.1</version>
<version>7.3.2</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.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/`
* Install `stubby4j-7.3.3-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.3-SNAPSHOT/`

Now you can include locally installed stubby4j `SNAPSHOT` artifacts in your project:
```xml
compile("io.github.azagniotov:stubby4j:7.3.2-SNAPSHOT")
compile("io.github.azagniotov:stubby4j:7.3.3-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.2-SNAPSHOT:no-jetty")
compile("io.github.azagniotov:stubby4j:7.3.3-SNAPSHOT:no-jetty")
```

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

#### 7.3.2-SNAPSHOT
#### 7.3.3-SNAPSHOT

#### 7.3.2

* PR [#270](https://github.com/azagniotov/stubby4j/pull/270) - Added `additive` proxy strategy behavior that sets additional headers to the request (https://github.com/azagniotov)

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.38.v20210224
stubbyProjectName=stubby4j
stubbyProjectGroup=io.github.azagniotov
stubbyProjectVersion=7.3.2-SNAPSHOT
stubbyProjectVersion=7.3.3-SNAPSHOT

0 comments on commit 0b273b0

Please sign in to comment.