mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-07-24 11:13:30 +00:00
We have performed some polish on your URLs. We do not follow redirects to avoid expanding intentionally shorter URLs (i.e. URL shortened URLs) # Fixed URLs ## Fixed But Review Recommended These URLs were fixed, but the https status was not OK. However, the https status was the same as the http request, so we migrated them. Your review is recommended. | HTTP URL | Result URL | HTTPS Result | HTTP Result | Count | | --- | --- | --- | --- | --- | | http://repo.terracotta.org/maven2/ | https://repo.terracotta.org/maven2/ | HttpResponse(httpStatus = 403 FORBIDDEN) | HttpResponse(httpStatus = 403 FORBIDDEN) | 1 | | http://maven-gae-plugin.googlecode.com/svn/repository | https://maven-gae-plugin.googlecode.com/svn/repository | HttpResponse(httpStatus = 404 NOT_FOUND) | HttpResponse(httpStatus = 404 NOT_FOUND) | 1 | | http://repository.springsource.com/maven/bundles/external | https://repository.springsource.com/maven/bundles/external | HttpResponse(httpStatus = 404 NOT_FOUND) | HttpResponse(httpStatus = 404 NOT_FOUND) | 1 | | http://repository.springsource.com/maven/bundles/release | https://repository.springsource.com/maven/bundles/release | HttpResponse(httpStatus = 404 NOT_FOUND) | HttpResponse(httpStatus = 404 NOT_FOUND) | 1 | ## Fixed Success These URLs were fixed successfully. | HTTP URL | Result URL | HTTPS Result | HTTP Result | Count | | --- | --- | --- | --- | --- | | http://docs.spring.io/spring-ldap/docs/1.3.x/apidocs/ | https://docs.spring.io/spring-ldap/docs/1.3.x/apidocs/ | HttpResponse(httpStatus = 200 OK) | null | 2 | | http://docs.spring.io/spring/docs/3.2.x/javadoc-api | https://docs.spring.io/spring/docs/3.2.x/javadoc-api | HttpResponse(httpStatus = 301 MOVED_PERMANENTLY redirectUrl = http://docs.spring.io/spring/docs/3.2.x/javadoc-api/) | null | 1 | | http://docs.spring.io/spring/docs/3.2.x/javadoc-api/ | https://docs.spring.io/spring/docs/3.2.x/javadoc-api/ | HttpResponse(httpStatus = 200 OK) | null | 1 | | http://download.oracle.com/javase/6/docs/api/ | https://download.oracle.com/javase/6/docs/api/ | HttpResponse(httpStatus = 302 FOUND redirectUrl = https://docs.oracle.com/javase/6/docs/api/) | null | 2 | | http://spring.io/ | https://spring.io/ | HttpResponse(httpStatus = 200 OK) | null | 42 | | http://spring.io/spring-security | https://spring.io/spring-security | HttpResponse(httpStatus = 302 FOUND redirectUrl = https://projects.spring.io/spring-security) | null | 42 | | http://www.apache.org/licenses/LICENSE-2.0.txt | https://www.apache.org/licenses/LICENSE-2.0.txt | HttpResponse(httpStatus = 200 OK) | null | 42 | | http://forums.gradle.org/gradle/topics/after_upgrade_gradle_to_2_0_version_the_maven_pom_not_support_build_property | https://discuss.gradle.org/gradle/topics/after_upgrade_gradle_to_2_0_version_the_maven_pom_not_support_build_property | HttpResponse(httpStatus = 404 NOT_FOUND) | HttpResponse(httpStatus = 301 MOVED_PERMANENTLY redirectUrl = https://discuss.gradle.org/gradle/topics/after_upgrade_gradle_to_2_0_version_the_maven_pom_not_support_build_property) | 1 | | http://forums.gradle.org/gradle/topics/eclipse_wtp_deploys_testcode_to_server_example_provided | https://discuss.gradle.org/gradle/topics/eclipse_wtp_deploys_testcode_to_server_example_provided | HttpResponse(httpStatus = 404 NOT_FOUND) | HttpResponse(httpStatus = 301 MOVED_PERMANENTLY redirectUrl = https://discuss.gradle.org/gradle/topics/eclipse_wtp_deploys_testcode_to_server_example_provided) | 1 | # Ignored These URLs were intentionally ignored so we didn't migrate them. | HTTP URL | | --- | | http://maven.apache.org/POM/4.0.0 | | http://maven.apache.org/xsd/maven-4.0.0.xsd | | http://www.w3.org/2001/XMLSchema-instance |
48 lines
1.6 KiB
Groovy
48 lines
1.6 KiB
Groovy
apply plugin: 'war'
|
|
apply plugin: 'jetty'
|
|
apply plugin: 'gae'
|
|
|
|
def gaeVersion="1.4.2"
|
|
|
|
repositories {
|
|
maven {
|
|
// Hibernate Validator
|
|
name = 'JBoss'
|
|
url = 'https://repository.jboss.org/nexus/content/repositories/releases'
|
|
}
|
|
maven {
|
|
// GAE Jars
|
|
name = 'GAE'
|
|
url = 'https://maven-gae-plugin.googlecode.com/svn/repository'
|
|
}
|
|
}
|
|
|
|
// Remove logback as it causes security issues with GAE.
|
|
configurations.runtime.exclude(group: 'ch.qos.logback')
|
|
|
|
dependencies {
|
|
providedCompile "javax.servlet:javax.servlet-api:$servletApiVersion"
|
|
|
|
compile project(':spring-security-core'),
|
|
project(':spring-security-web'),
|
|
"org.springframework:spring-beans:$springVersion",
|
|
"org.springframework:spring-web:$springVersion",
|
|
"org.springframework:spring-webmvc:$springVersion",
|
|
"org.springframework:spring-context:$springVersion",
|
|
"org.springframework:spring-context-support:$springVersion",
|
|
"com.google.appengine:appengine-api-1.0-sdk:$gaeVersion",
|
|
'javax.validation:validation-api:1.0.0.GA',
|
|
'org.hibernate:hibernate-validator:4.2.0.Final',
|
|
"org.slf4j:slf4j-api:$slf4jVersion"
|
|
|
|
runtime project(':spring-security-config'),
|
|
project(':spring-security-taglibs'),
|
|
"org.slf4j:jcl-over-slf4j:$slf4jVersion",
|
|
"org.slf4j:slf4j-jdk14:$slf4jVersion"
|
|
testCompile "com.google.appengine:appengine-testing:$gaeVersion"
|
|
|
|
testRuntime "com.google.appengine:appengine-api-labs:$gaeVersion",
|
|
"com.google.appengine:appengine-api-stubs:$gaeVersion"
|
|
|
|
}
|