Release Spring Vault 3.0.3.

Closes gh-799
This commit is contained in:
Mark Paluch
2023-06-19 14:58:22 +02:00
parent d05f43fb8b
commit 64010bf4de
3 changed files with 13 additions and 16 deletions

15
pom.xml
View File

@@ -1,12 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.springframework.vault</groupId>
<artifactId>spring-vault-parent</artifactId>
<version>3.1.0-SNAPSHOT</version>
<version>3.0.3</version>
<name>Spring Vault</name>
<description>Parent project for Spring Vault</description>
@@ -55,7 +53,7 @@
<doc.resources>${project.build.directory}/doc-resources</doc.resources>
<!-- To be overridden by individual modules -->
<java-module-name/>
<java-module-name />
</properties>
<inceptionYear>2016</inceptionYear>
@@ -71,7 +69,7 @@
<developerConnection>
scm:git:ssh://git@github.com/spring-projects/spring-vault.git
</developerConnection>
<tag>HEAD</tag>
<tag>3.0.3</tag>
</scm>
<issueManagement>
@@ -795,9 +793,8 @@
</goals>
<configuration>
<rules>
<requireReleaseDeps/>
<NoSnapshotDependenciesInDependencyManagementRule
implementation="de.smartics.maven.enforcer.rule.NoSnapshotsInDependencyManagementRule">
<requireReleaseDeps />
<NoSnapshotDependenciesInDependencyManagementRule implementation="de.smartics.maven.enforcer.rule.NoSnapshotsInDependencyManagementRule">
<onlyWhenRelease>true</onlyWhenRelease>
</NoSnapshotDependenciesInDependencyManagementRule>
</rules>

View File

@@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.vault</groupId>
<artifactId>spring-vault-parent</artifactId>
<version>3.1.0-SNAPSHOT</version>
<version>3.0.3</version>
</parent>
<artifactId>spring-vault-core</artifactId>

View File

@@ -13,7 +13,7 @@
<parent>
<groupId>org.springframework.vault</groupId>
<artifactId>spring-vault-parent</artifactId>
<version>3.1.0-SNAPSHOT</version>
<version>3.0.3</version>
<relativePath>../pom.xml</relativePath>
</parent>
@@ -200,11 +200,11 @@
<!-- Copy files for the single-file HTML version -->
<copy failonerror="false" todir="${project.root}/target/site/reference/html">
<fileset dir="${generated-docs.directory}">
<include name="img/**"/>
<include name="images/**"/>
<include name="css/**"/>
<include name="js/**"/>
<include name="**/*.html"/>
<include name="img/**" />
<include name="images/**" />
<include name="css/**" />
<include name="js/**" />
<include name="**/*.html" />
</fileset>
</copy>