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

Release hotfix 1.1.7 #28

Merged
merged 4 commits into from
May 3, 2024
Merged
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ You need to setup an execution phase and configuration.
<plugin>
<groupId>com.homeofthewizard</groupId>
<artifactId>vault-maven-plugin</artifactId>
<version>1.1.4</version>
<version>1.1.7</version>
<executions>
...
<configuration>
Expand Down
14 changes: 7 additions & 7 deletions docs/usage.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ To include the vault-maven-plugin in your project and use it, add the following
<plugin>
<groupId>com.homeofthewizard</groupId>
<artifactId>vault-maven-plugin</artifactId>
<version>1.1.4</version>
<version>1.1.7</version>
</plugin>
</plugins>
</build>
Expand All @@ -34,7 +34,7 @@ In particular, this configuration will set the value of the `${project.password}
<plugin>
<groupId>com.homeofthewizard</groupId>
<artifactId>vault-maven-plugin</artifactId>
<version>1.1.4</version>
<version>1.1.7</version>
<executions>
<execution>
<id>pull</id>
Expand Down Expand Up @@ -89,7 +89,7 @@ In particular, this configuration will set the value of the `${project.password}
<plugin>
<groupId>com.homeofthewizard</groupId>
<artifactId>vault-maven-plugin</artifactId>
<version>1.1.4</version>
<version>1.1.7</version>
<executions>
<execution>
<id>push</id>
Expand Down Expand Up @@ -138,7 +138,7 @@ Using a prefetched token works fine (provided in the `<token>` tag),
<plugin>
<groupId>com.homeofthewizard</groupId>
<artifactId>vault-maven-plugin</artifactId>
<version>1.1.4</version>
<version>1.1.7</version>
<executions>
<execution>
<id>pull</id>
Expand Down Expand Up @@ -183,7 +183,7 @@ Use `<githubToken>` under the `<authentication>` tag, as in the following exampl
<plugin>
<groupId>com.homeofthewizard</groupId>
<artifactId>vault-maven-plugin</artifactId>
<version>1.1.4</version>
<version>1.1.7</version>
<executions>
<execution>
<id>pull</id>
Expand Down Expand Up @@ -234,7 +234,7 @@ Use `<appRole>` under the `<authentication>` tag, as in the following example.
<plugin>
<groupId>com.homeofthewizard</groupId>
<artifactId>vault-maven-plugin</artifactId>
<version>1.1.4</version>
<version>1.1.7</version>
<executions>
<execution>
<id>pull</id>
Expand Down Expand Up @@ -291,7 +291,7 @@ By giving the corresponding value to the `<outputMethod>` configuration:
<plugin>
<groupId>com.homeofthewizard</groupId>
<artifactId>vault-maven-plugin</artifactId>
<version>1.1.4</version>
<version>1.1.7</version>
<executions>
<execution>
<id>pull</id>
Expand Down
6 changes: 3 additions & 3 deletions docs/use-cases/appTypes.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ You just add the following to fetch the secrets and inject them as properties in
<plugin>
<groupId>com.homeofthewizard</groupId>
<artifactId>vault-maven-plugin</artifactId>
<version>1.1.4</version>
<version>1.1.7</version>
<executions>
<execution>
<id>pull</id>
Expand Down Expand Up @@ -127,7 +127,7 @@ You can define the following in your pom.xml to fetch the credential for `APPLIC
<plugin>
<groupId>com.homeofthewizard</groupId>
<artifactId>vault-maven-plugin</artifactId>
<version>1.1.4</version>
<version>1.1.7</version>
<executions>
<execution>
<id>pull</id>
Expand Down Expand Up @@ -224,7 +224,7 @@ By adding the followings to your pom.xml like so:
<plugin>
<groupId>com.homeofthewizard</groupId>
<artifactId>vault-maven-plugin</artifactId>
<version>1.1.4</version>
<version>1.1.7</version>
<executions>
<execution>
<id>pull</id>
Expand Down
16 changes: 14 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,14 @@
<version.plugin.annotations>3.6.2</version.plugin.annotations>
<version.plugin.testing>4.0.0-alpha-1</version.plugin.testing>
<version.plugin.plugin>3.6.2</version.plugin.plugin>
<version.source.plugin>3.0.1</version.source.plugin>
<version.source.plugin>3.2.1</version.source.plugin>
<version.surefire.plugin>2.22.0</version.surefire.plugin>
<version.failsafe.plugin>${version.surefire.plugin}</version.failsafe.plugin>
<version.docker.plugin>0.38.0</version.docker.plugin>
<version.vault>latest</version.vault>
<version.mockito-core>5.2.0</version.mockito-core>
<version.nexus-staging-maven-plugin>1.6.13</version.nexus-staging-maven-plugin>
<version.maven-release-plugin>2.5.3</version.maven-release-plugin>
<version.maven-release-plugin>3.0.1</version.maven-release-plugin>
<version.junit-jupiter>5.9.2</version.junit-jupiter>
<version.jackson-databind>2.15.2</version.jackson-databind>
<version.vault-java-driver>6.1.0</version.vault-java-driver>
Expand Down Expand Up @@ -163,6 +163,18 @@
</dependencies>

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${version.javadoc.plugin}</version>
<configuration>
<notimestamp>true</notimestamp>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>io.fabric8</groupId>
Expand Down
Loading