Skip to content

Commit 64010bf

Browse files
committed
Release Spring Vault 3.0.3.
Closes gh-799
1 parent d05f43f commit 64010bf

File tree

3 files changed

+13
-16
lines changed

3 files changed

+13
-16
lines changed

pom.xml

+6-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
2+
<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">
53
<modelVersion>4.0.0</modelVersion>
64

75
<groupId>org.springframework.vault</groupId>
86
<artifactId>spring-vault-parent</artifactId>
9-
<version>3.1.0-SNAPSHOT</version>
7+
<version>3.0.3</version>
108

119
<name>Spring Vault</name>
1210
<description>Parent project for Spring Vault</description>
@@ -55,7 +53,7 @@
5553
<doc.resources>${project.build.directory}/doc-resources</doc.resources>
5654

5755
<!-- To be overridden by individual modules -->
58-
<java-module-name/>
56+
<java-module-name />
5957
</properties>
6058

6159
<inceptionYear>2016</inceptionYear>
@@ -71,7 +69,7 @@
7169
<developerConnection>
7270
scm:git:ssh://[email protected]/spring-projects/spring-vault.git
7371
</developerConnection>
74-
<tag>HEAD</tag>
72+
<tag>3.0.3</tag>
7573
</scm>
7674

7775
<issueManagement>
@@ -795,9 +793,8 @@
795793
</goals>
796794
<configuration>
797795
<rules>
798-
<requireReleaseDeps/>
799-
<NoSnapshotDependenciesInDependencyManagementRule
800-
implementation="de.smartics.maven.enforcer.rule.NoSnapshotsInDependencyManagementRule">
796+
<requireReleaseDeps />
797+
<NoSnapshotDependenciesInDependencyManagementRule implementation="de.smartics.maven.enforcer.rule.NoSnapshotsInDependencyManagementRule">
801798
<onlyWhenRelease>true</onlyWhenRelease>
802799
</NoSnapshotDependenciesInDependencyManagementRule>
803800
</rules>

spring-vault-core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.vault</groupId>
77
<artifactId>spring-vault-parent</artifactId>
8-
<version>3.1.0-SNAPSHOT</version>
8+
<version>3.0.3</version>
99
</parent>
1010

1111
<artifactId>spring-vault-core</artifactId>

spring-vault-distribution/pom.xml

+6-6
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<groupId>org.springframework.vault</groupId>
1515
<artifactId>spring-vault-parent</artifactId>
16-
<version>3.1.0-SNAPSHOT</version>
16+
<version>3.0.3</version>
1717
<relativePath>../pom.xml</relativePath>
1818
</parent>
1919

@@ -200,11 +200,11 @@
200200
<!-- Copy files for the single-file HTML version -->
201201
<copy failonerror="false" todir="${project.root}/target/site/reference/html">
202202
<fileset dir="${generated-docs.directory}">
203-
<include name="img/**"/>
204-
<include name="images/**"/>
205-
<include name="css/**"/>
206-
<include name="js/**"/>
207-
<include name="**/*.html"/>
203+
<include name="img/**" />
204+
<include name="images/**" />
205+
<include name="css/**" />
206+
<include name="js/**" />
207+
<include name="**/*.html" />
208208
</fileset>
209209
</copy>
210210

0 commit comments

Comments
 (0)