Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump documented version references #56

Closed
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
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
buildscript {
dependencies {
classpath 'io.spring.gradle:spring-build-conventions:0.0.37'
classpath 'io.spring.nohttp:nohttp-gradle:0.0.5.RELEASE'
classpath 'io.spring.nohttp:nohttp-gradle:0.0.10'
}
repositories {
maven { url 'https://plugins.gradle.org/m2/' }
Expand Down
8 changes: 4 additions & 4 deletions nohttp-cli/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ For example:

[source,bash]
----
export NOHTTP='~/Downloads/nohttp-cli-0.0.1.BUILD-SNAPSHOT.jar'
export NOHTTP='~/Downloads/nohttp-cli-0.0.10.jar'
----

== Compiling
Expand All @@ -28,17 +28,17 @@ To use this app first create the jar
./gradlew :nohttp-cli:assemble
----

The jar will now available at `nohttp-cli/build/libs/nohttp-cli-0.0.1.BUILD-SNAPSHOT.jar`.
The jar will now available at `nohttp-cli/build/libs/nohttp-cli-0.0.11-SNAPSHOT`.

You can then export the full path to a variable.

[source,bash]
----
export NOHTTP=$(pwd)/nohttp-cli/build/libs/nohttp-cli-0.0.1.BUILD-SNAPSHOT.jar
export NOHTTP=$(pwd)/nohttp-cli/build/libs/nohttp-cli-0.0.11-SNAPSHOT.jar
----

The guide assumes that the jar is now available in the variable `$NOHTTP`.
If that is not true, you can substitute `$NOHTTP` for the absolute path of `nohttp-cli-0.0.1.BUILD-SNAPSHOT.jar`.
If that is not true, you can substitute `$NOHTTP` for the absolute path of `nohttp-cli-0.0.11-SNAPSHOT.jar`.

== Running

Expand Down
2 changes: 1 addition & 1 deletion nohttp-gradle/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ The https://github.com/spring-io/nohttp/blob/main/nohttp-gradle/src/main/java/io
nohttp {
allowlistFile = project.file('src/nohttp/allowlist.lines') <1>
source.exclude "**/test-output/**" <2>
toolVersion = '0.0.1.BUILD-SNAPSHOT' <3>
toolVersion = '0.0.10' <3>
}
----

Expand Down
8 changes: 4 additions & 4 deletions samples/nohttp-maven-sample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,17 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.1.1</version>
<version>3.1.2</version>
<dependencies>
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>8.33</version>
<version>10.3.2</version>
</dependency>
<dependency>
<groupId>io.spring.nohttp</groupId>
<artifactId>nohttp-checkstyle</artifactId>
<version>0.0.4.RELEASE</version>
<version>0.0.10</version>
</dependency>
</dependencies>
<configuration>
Expand All @@ -69,4 +69,4 @@
<url>https://repo.spring.io/libs-snapshot</url>
</pluginRepository>
</pluginRepositories>
</project>
</project>