SWS-969 Bump spring4-next to Spring 4.3.3.RELEASE
* Move baseline from Spring 4.2.7.RELEASE to 4.2.8.RELEASE * Add CircleCI for building pull requests against baseline Spring, Spring4-next, and Spring5
This commit is contained in:
50
README.adoc
50
README.adoc
@@ -1,5 +1,7 @@
|
||||
= Spring Web Services
|
||||
|
||||
image:https://circleci.com/gh/spring-projects/spring-ws.svg?style=svg["CircleCI", link="https://circleci.com/gh/spring-projects/spring-ws"]
|
||||
|
||||
Spring Web Services is a product of the Spring community focused on creating
|
||||
document-driven Web services. Spring Web Services aims to facilitate
|
||||
contract-first SOAP service development, allowing for the creation of flexible
|
||||
@@ -8,46 +10,9 @@ web services using one of the many ways to manipulate XML payloads.
|
||||
== Installation
|
||||
|
||||
Releases of Spring Web Services are available for download from Maven Central,
|
||||
as well as our own repository, http://repo.springsource.org/release[http://repo.springsource.org/release].
|
||||
as well as our own repository, http://repo.spring.io/release[http://repo.springsource.org/release].
|
||||
|
||||
For Maven users:
|
||||
|
||||
[source]
|
||||
----
|
||||
<repository>
|
||||
<id>repository.spring.release</id>
|
||||
<name>Spring GA Repository</name>
|
||||
<url>http://repo.spring.io/release</url>
|
||||
</repository>
|
||||
...
|
||||
<dependency>
|
||||
<groupId>org.springframework.ws</groupId>
|
||||
<artifactId>spring-ws-core</artifactId>
|
||||
<version>2.1.4</version>
|
||||
</dependency>
|
||||
----
|
||||
|
||||
== Snapshots
|
||||
|
||||
Nightly snapshots of Spring Web Services are available for download from our
|
||||
snapshot repository, http://repo.springsource.org/snapshot[http://repo.springsource.org/snapshot].
|
||||
|
||||
For Maven users:
|
||||
|
||||
[source]
|
||||
----
|
||||
<repository>
|
||||
<id>repository.spring.snapshot</id>
|
||||
<name>Spring Snapshot Repository</name>
|
||||
<url>http://repo.spring.io/snapshot</url>
|
||||
</repository>
|
||||
...
|
||||
<dependency>
|
||||
<groupId>org.springframework.ws</groupId>
|
||||
<artifactId>spring-ws-core</artifactId>
|
||||
<version>2.2.0.BUILD-SNAPSHOT</version>
|
||||
</dependency>
|
||||
----
|
||||
Please visit https://projects.spring.io/spring-ws to get the right Maven/Gradle settings for your selected version.
|
||||
|
||||
== Building from Source
|
||||
|
||||
@@ -73,14 +38,11 @@ http://help.github.com/set-up-git-redirect[Git] and JDK 1.7+.
|
||||
|
||||
== Documentation
|
||||
|
||||
See the current
|
||||
http://static.springsource.org/spring-ws/docs/current/javadoc-api[Javadoc]
|
||||
and http://static.springsource.org/spring-ws/docs/current/spring-ws-reference[reference
|
||||
docs].
|
||||
See the current http://docs.spring.io/spring-ws/docs/current/api/[Javadoc] and http://docs.spring.io/spring-ws/docs/current/reference/htmlsingle/[reference docs].
|
||||
|
||||
== Issue Tracking
|
||||
|
||||
Spring Web Services uses https://jira.springsource.org/browse/SWS[JIRA] for issue tracking purposes
|
||||
Spring Web Services uses https://jira.spring.io/browse/SWS[JIRA] for issue tracking purposes
|
||||
|
||||
== License
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ buildscript {
|
||||
configure(allprojects) {
|
||||
group = "org.springframework.ws"
|
||||
|
||||
ext.springVersion = "4.2.7.RELEASE"
|
||||
ext.springVersion = "4.2.8.RELEASE"
|
||||
ext.springSecurityVersion = "4.0.4.RELEASE"
|
||||
ext.axiomVersion = "1.2.16"
|
||||
ext.smackVersion = "4.1.6"
|
||||
@@ -92,6 +92,11 @@ configure(subprojects) { subproject ->
|
||||
if (project.hasProperty('profile')) {
|
||||
apply from: "${project.rootDir}/${profile}-profile.gradle"
|
||||
println "+++ Configuring ${subproject.name} for Spring Framework ${springVersion}"
|
||||
|
||||
repositories {
|
||||
maven { url "https://repo.spring.io/libs-snapshot" }
|
||||
}
|
||||
|
||||
} else if (project.hasProperty('platformVersion')) {
|
||||
apply plugin: 'spring-io'
|
||||
|
||||
|
||||
20
circle.yml
Normal file
20
circle.yml
Normal file
@@ -0,0 +1,20 @@
|
||||
general:
|
||||
branches:
|
||||
ignore:
|
||||
- gh-pages # list of branches to ignore
|
||||
|
||||
dependencies:
|
||||
cache_directories:
|
||||
- "~/.m2"
|
||||
|
||||
machine:
|
||||
java:
|
||||
version: oraclejdk8
|
||||
environment:
|
||||
_JAVA_OPTIONS: "-Xms1024m -Xmx2048m"
|
||||
|
||||
test:
|
||||
override:
|
||||
- ./gradlew clean build
|
||||
- ./gradlew -Pprofile=spring4-next clean build
|
||||
- ./gradlew -Pprofile=spring5 clean build
|
||||
@@ -2,5 +2,5 @@
|
||||
* Enable with "-Pprofile=spring4-next"
|
||||
*/
|
||||
|
||||
ext.springVersion = "4.3.2.RELEASE"
|
||||
ext.springVersion = "4.3.3.RELEASE"
|
||||
ext.springSecurityVersion = "4.1.3.RELEASE"
|
||||
Reference in New Issue
Block a user