Skip to content

Commit

Permalink
Releasing new version (#174)
Browse files Browse the repository at this point in the history
  • Loading branch information
azagniotov authored Mar 3, 2021
1 parent 7fd7ba9 commit dd01718
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 13 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
#### 7.1.2-SNAPSHOT
#### 7.1.3-SNAPSHOT

#### 7.1.2

* PR [#172](https://github.com/azagniotov/stubby4j/pull/172) - Bug: stubbed RegEx patterns were escaped unnecessarily (https://github.com/azagniotov)

#### 7.1.1

Expand Down
18 changes: 9 additions & 9 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.1.1
## User manual for stubby4j v7.1.2
### Table of contents

* [Quick start example](#quick-start-example)
Expand Down Expand Up @@ -171,20 +171,20 @@ The following are the stubby4j artifacts that are hosted on [Maven Central][mave

#### Gradle
```xml
compile("io.github.azagniotov:stubby4j:7.1.1")
compile("io.github.azagniotov:stubby4j:7.1.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.1.1:no-jetty")
compile("io.github.azagniotov:stubby4j:7.1.2:no-jetty")
```

#### Maven
```xml
<dependency>
<groupId>io.github.azagniotov</groupId>
<artifactId>stubby4j</artifactId>
<version>7.1.1</version>
<version>7.1.2</version>
</dependency>
```
or by adding a `classifier` to the JAR name like `no-dependencies` or `no-jetty`, i.e.:
Expand All @@ -193,7 +193,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.1.1</version>
<version>7.1.2</version>
<classifier>no-dependencies</classifier>
</dependency>
```
Expand All @@ -202,17 +202,17 @@ or by adding a `classifier` to the JAR name like `no-dependencies` or `no-jetty`

Run `./gradlew installLocally` command to:

* Install `stubby4j-7.1.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.1.2-SNAPSHOT/`
* Install `stubby4j-7.1.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.1.3-SNAPSHOT/`

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


Expand Down
2 changes: 1 addition & 1 deletion docker/jdk11/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ WORKDIR $GRADLE_USER_HOME
RUN git clone https://github.com/azagniotov/stubby4j.git && \
cd stubby4j && \
git fetch -f --tags && \
git checkout v7.1.1 && \
git checkout v7.1.2 && \
gradle clean jar

########################################################################################
Expand Down
2 changes: 1 addition & 1 deletion docker/jdk8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ WORKDIR $GRADLE_USER_HOME
RUN git clone https://github.com/azagniotov/stubby4j.git && \
cd stubby4j && \
git fetch -f --tags && \
git checkout v7.1.1 && \
git checkout v7.1.2 && \
gradle clean jar

########################################################################################
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ org.gradle.vfs.watch=true
jettyVersion=9.4.36.v20210114
stubbyProjectName=stubby4j
stubbyProjectGroup=io.github.azagniotov
stubbyProjectVersion=7.1.2-SNAPSHOT
stubbyProjectVersion=7.1.3-SNAPSHOT

0 comments on commit dd01718

Please sign in to comment.