Spring Operator 348d2adc4c URL Cleanup
This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener).

# Fixed URLs

## Fixed Success
These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended.

* http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html with 1 occurrences migrated to:
  https://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html ([https](https://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html) result 200).
2019-06-20 11:54:03 +02:00
2017-07-12 16:24:00 +02:00
2019-06-16 09:03:49 +02:00
2019-04-15 16:19:45 +02:00
2019-04-15 16:19:45 +02:00
2019-05-27 22:34:32 +02:00
2019-03-14 20:40:39 -05:00
2019-06-17 12:52:19 +02:00
2017-07-12 16:24:00 +02:00
2019-06-20 11:54:03 +02:00

= Spring Session BOM

This repository contains Spring Session Maven Bill of Materials (BOM).

== Using the BOM with Maven

With Maven, you need to import the BOM first:

[source, xml]
----
<dependencyManagement>
	<dependencies>
		<dependency>
			<groupId>org.springframework.session</groupId>
			<artifactId>spring-session-bom</artifactId>
			<version>Corn-M2</version>
			<type>pom</type>
			<scope>import</scope>
		</dependency>
	</dependencies>
</dependencyManagement>
----

Notice the use of the `<dependencyManagement>` section and the `import` scope.

Next, add your dependencies to the project without a `<version>`:

[source, xml]
----
<dependencies>
	<dependency>
		<groupId>org.springframework.session</groupId>
		<artifactId>spring-session-data-redis</artifactId>
	</dependency>
</dependencies>
----

== Using the BOM with Gradle

Since Gradle has no first-class support for Maven BOMs, you can use Spring's https://plugins.gradle.org/plugin/io.spring.dependency-management[Dependency management plugin].

Apply the plugin from Gradle Plugin Portal (update the version if needed):

[source, gradle]
----
plugins {
	id 'io.spring.dependency-management' version '1.0.8.RELEASE'
}
----

Then use it to import the BOM:

[source, gradle]
----
dependencyManagement {
	imports {
		mavenBom 'org.springframework.session:spring-session-bom:Corn-M2'
	}
}
----

Finally, add a dependency to the project without a version:

[source, gradle]
----
dependencies {
	compile 'org.springframework.session:spring-session-data-redis'
}
----

== Spring Session Project Site

You can find the documentation, issue management, support, samples, and guides for using Spring Session at https://projects.spring.io/spring-session/.

== License

Spring Session is Open Source software released under the https://www.apache.org/licenses/LICENSE-2.0.html[Apache 2.0 license].
Description
No description provided
Readme 982 KiB
Languages
AsciiDoc 100%