http -> https

This commit is contained in:
Stephane Nicoll 2019-08-18 14:07:02 +02:00
parent f083e6e5cd
commit dee5467bd1
38 changed files with 97 additions and 94 deletions

View File

@ -40,5 +40,5 @@ appropriate to the circumstances. Maintainers are obligated to maintain confiden
with regard to the reporter of an incident. with regard to the reporter of an incident.
This Code of Conduct is adapted from the This Code of Conduct is adapted from the
http://contributor-covenant.org[Contributor Covenant], version 1.3.0, available at https://contributor-covenant.org[Contributor Covenant], version 1.3.0, available at
http://contributor-covenant.org/version/1/3/0/[contributor-covenant.org/version/1/3/0/] https://contributor-covenant.org/version/1/3/0/[contributor-covenant.org/version/1/3/0/]

View File

@ -10,7 +10,7 @@ unacceptable behavior to spring-code-of-conduct@pivotal.io.
== Using GitHub issues == Using GitHub issues
We use GitHub issues to track bugs and enhancements. If you have a general usage question We use GitHub issues to track bugs and enhancements. If you have a general usage question
please ask on http://stackoverflow.com[Stack Overflow] or join us on the please ask on https://stackoverflow.com[Stack Overflow] or join us on the
https://gitter.im/spring-io/initializr[Gitter channel]. https://gitter.im/spring-io/initializr[Gitter channel].
== Sign the Contributor License Agreement == Sign the Contributor License Agreement
@ -38,7 +38,7 @@ added after the original pull request but before a merge.
* A few unit tests would help a lot as well -- someone has to do it. * A few unit tests would help a lot as well -- someone has to do it.
* If no-one else is using your branch, please rebase it against the current master (or * If no-one else is using your branch, please rebase it against the current master (or
other target branch in the main project). other target branch in the main project).
* When writing a commit message please follow http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html[these conventions], * When writing a commit message please follow https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html[these conventions],
if you are fixing an existing issue please add `Fixes gh-XXXX` at the end of the commit if you are fixing an existing issue please add `Fixes gh-XXXX` at the end of the commit
message (where XXXX is the issue number). message (where XXXX is the issue number).
@ -50,7 +50,7 @@ added after the original pull request but before a merge.
=== Building from Source === Building from Source
Spring Initializer source can be build from the command line using Spring Initializer source can be build from the command line using
http://maven.apache.org/run-maven/index.html[Apache Maven] on JDK 1.8 or above. https://maven.apache.org/run-maven/index.html[Apache Maven] on JDK 1.8 or above.
We include '`Maven Wrapper`' scripts (`./mvnw` or `mvnw.bat`) that you can run rather We include '`Maven Wrapper`' scripts (`./mvnw` or `mvnw.bat`) that you can run rather
than needing to install Maven locally. than needing to install Maven locally.

View File

@ -1,7 +1,7 @@
Apache License Apache License
Version 2.0, January 2004 Version 2.0, January 2004
http://www.apache.org/licenses/ https://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

View File

@ -1,8 +1,8 @@
= Spring Initializr image:https://ci.spring.io/api/v1/teams/initializr/pipelines/initializr/jobs/build/badge["Build Status", link="https://ci.spring.io/teams/initializr/pipelines/initializr?groups=Build"] image:https://badges.gitter.im/spring-io/initializr.svg[link="https://gitter.im/spring-io/initializr?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge"] = Spring Initializr image:https://ci.spring.io/api/v1/teams/initializr/pipelines/initializr/jobs/build/badge["Build Status", link="https://ci.spring.io/teams/initializr/pipelines/initializr?groups=Build"] image:https://badges.gitter.im/spring-io/initializr.svg[link="https://gitter.im/spring-io/initializr?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge"]
:boot-doc: http://docs.spring.io/spring-boot/docs/current/reference/htmlsingle :boot-doc: https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle
:code: https://github.com/spring-io/initializr/blob/master :code: https://github.com/spring-io/initializr/blob/master
:docs: http://docs.spring.io/initializr/docs/current-SNAPSHOT/reference :docs: https://docs.spring.io/initializr/docs/current-SNAPSHOT/reference
:service: https://github.com/spring-io/start.spring.io :service: https://github.com/spring-io/start.spring.io
Spring Initializr provides an extensible API to generate quickstart projects. It also Spring Initializr provides an extensible API to generate quickstart projects. It also

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?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" <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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>io.spring.initializr</groupId> <groupId>io.spring.initializr</groupId>

View File

@ -89,11 +89,11 @@ class ProjectGenerationStatPublisherTests {
@Test @Test
void publishDocumentWithUserNameAndPassword() { void publishDocumentWithUserNameAndPassword() {
StatsProperties properties = new StatsProperties(); StatsProperties properties = new StatsProperties();
properties.getElastic().setUri("http://example.com/elastic"); properties.getElastic().setUri("https://example.com/elastic");
properties.getElastic().setUsername("foo"); properties.getElastic().setUsername("foo");
properties.getElastic().setPassword("bar"); properties.getElastic().setPassword("bar");
configureService(properties); configureService(properties);
testAuthorization("http://example.com/elastic/initializr/request", testAuthorization("https://example.com/elastic/initializr/request",
header("Authorization", "Basic Zm9vOmJhcg==")); header("Authorization", "Basic Zm9vOmJhcg=="));
} }
@ -152,7 +152,7 @@ class ProjectGenerationStatPublisherTests {
request.getParameters().put("cf-connecting-ip", "10.0.0.42"); request.getParameters().put("cf-connecting-ip", "10.0.0.42");
request.getParameters().put("cf-ipcountry", "BE"); request.getParameters().put("cf-ipcountry", "BE");
ProjectGeneratedEvent event = new ProjectGeneratedEvent(request, this.metadata); ProjectGeneratedEvent event = new ProjectGeneratedEvent(request, this.metadata);
this.mockServer.expect(requestTo("http://example.com/elastic/initializr/request")) this.mockServer.expect(requestTo("https://example.com/elastic/initializr/request"))
.andExpect(method(HttpMethod.POST)).andExpect(json("stat/request-simple.json", event.getTimestamp())) .andExpect(method(HttpMethod.POST)).andExpect(json("stat/request-simple.json", event.getTimestamp()))
.andRespond(withStatus(HttpStatus.CREATED).body(mockResponse(UUID.randomUUID().toString(), true)) .andRespond(withStatus(HttpStatus.CREATED).body(mockResponse(UUID.randomUUID().toString(), true))
.contentType(MediaType.APPLICATION_JSON)); .contentType(MediaType.APPLICATION_JSON));
@ -171,7 +171,7 @@ class ProjectGenerationStatPublisherTests {
request.setDependencies(Arrays.asList("web", "data-jpa")); request.setDependencies(Arrays.asList("web", "data-jpa"));
request.setLanguage("java"); request.setLanguage("java");
ProjectGeneratedEvent event = new ProjectGeneratedEvent(request, this.metadata); ProjectGeneratedEvent event = new ProjectGeneratedEvent(request, this.metadata);
this.mockServer.expect(requestTo("http://example.com/elastic/initializr/request")) this.mockServer.expect(requestTo("https://example.com/elastic/initializr/request"))
.andExpect(method(HttpMethod.POST)).andExpect(json("stat/request-no-client.json", event.getTimestamp())) .andExpect(method(HttpMethod.POST)).andExpect(json("stat/request-no-client.json", event.getTimestamp()))
.andRespond(withStatus(HttpStatus.CREATED).body(mockResponse(UUID.randomUUID().toString(), true)) .andRespond(withStatus(HttpStatus.CREATED).body(mockResponse(UUID.randomUUID().toString(), true))
.contentType(MediaType.APPLICATION_JSON)); .contentType(MediaType.APPLICATION_JSON));
@ -190,7 +190,7 @@ class ProjectGenerationStatPublisherTests {
request.setDependencies(Arrays.asList("web", "data-jpa")); request.setDependencies(Arrays.asList("web", "data-jpa"));
request.setLanguage("java"); request.setLanguage("java");
ProjectGeneratedEvent event = new ProjectGeneratedEvent(request, this.metadata); ProjectGeneratedEvent event = new ProjectGeneratedEvent(request, this.metadata);
this.mockServer.expect(requestTo("http://example.com/elastic/initializr/request")) this.mockServer.expect(requestTo("https://example.com/elastic/initializr/request"))
.andExpect(method(HttpMethod.POST)) .andExpect(method(HttpMethod.POST))
.andExpect(json("stat/request-invalid-type.json", event.getTimestamp())) .andExpect(json("stat/request-invalid-type.json", event.getTimestamp()))
.andRespond(withStatus(HttpStatus.CREATED).body(mockResponse(UUID.randomUUID().toString(), true)) .andRespond(withStatus(HttpStatus.CREATED).body(mockResponse(UUID.randomUUID().toString(), true))
@ -210,7 +210,7 @@ class ProjectGenerationStatPublisherTests {
request.setDependencies(Arrays.asList("web", "data-jpa")); request.setDependencies(Arrays.asList("web", "data-jpa"));
request.setLanguage("c"); request.setLanguage("c");
ProjectGeneratedEvent event = new ProjectGeneratedEvent(request, this.metadata); ProjectGeneratedEvent event = new ProjectGeneratedEvent(request, this.metadata);
this.mockServer.expect(requestTo("http://example.com/elastic/initializr/request")) this.mockServer.expect(requestTo("https://example.com/elastic/initializr/request"))
.andExpect(method(HttpMethod.POST)) .andExpect(method(HttpMethod.POST))
.andExpect(json("stat/request-invalid-language.json", event.getTimestamp())) .andExpect(json("stat/request-invalid-language.json", event.getTimestamp()))
.andRespond(withStatus(HttpStatus.CREATED).body(mockResponse(UUID.randomUUID().toString(), true)) .andRespond(withStatus(HttpStatus.CREATED).body(mockResponse(UUID.randomUUID().toString(), true))
@ -231,7 +231,7 @@ class ProjectGenerationStatPublisherTests {
request.setLanguage("java"); request.setLanguage("java");
request.setJavaVersion("1.2"); request.setJavaVersion("1.2");
ProjectGeneratedEvent event = new ProjectGeneratedEvent(request, this.metadata); ProjectGeneratedEvent event = new ProjectGeneratedEvent(request, this.metadata);
this.mockServer.expect(requestTo("http://example.com/elastic/initializr/request")) this.mockServer.expect(requestTo("https://example.com/elastic/initializr/request"))
.andExpect(method(HttpMethod.POST)) .andExpect(method(HttpMethod.POST))
.andExpect(json("stat/request-invalid-java-version.json", event.getTimestamp())) .andExpect(json("stat/request-invalid-java-version.json", event.getTimestamp()))
.andRespond(withStatus(HttpStatus.CREATED).body(mockResponse(UUID.randomUUID().toString(), true)) .andRespond(withStatus(HttpStatus.CREATED).body(mockResponse(UUID.randomUUID().toString(), true))
@ -251,7 +251,7 @@ class ProjectGenerationStatPublisherTests {
request.setDependencies(Arrays.asList("invalid-2", "web", "invalid-1")); request.setDependencies(Arrays.asList("invalid-2", "web", "invalid-1"));
request.setLanguage("java"); request.setLanguage("java");
ProjectGeneratedEvent event = new ProjectGeneratedEvent(request, this.metadata); ProjectGeneratedEvent event = new ProjectGeneratedEvent(request, this.metadata);
this.mockServer.expect(requestTo("http://example.com/elastic/initializr/request")) this.mockServer.expect(requestTo("https://example.com/elastic/initializr/request"))
.andExpect(method(HttpMethod.POST)) .andExpect(method(HttpMethod.POST))
.andExpect(json("stat/request-invalid-dependencies.json", event.getTimestamp())) .andExpect(json("stat/request-invalid-dependencies.json", event.getTimestamp()))
.andRespond(withStatus(HttpStatus.CREATED).body(mockResponse(UUID.randomUUID().toString(), true)) .andRespond(withStatus(HttpStatus.CREATED).body(mockResponse(UUID.randomUUID().toString(), true))
@ -265,13 +265,13 @@ class ProjectGenerationStatPublisherTests {
void recoverFromError() { void recoverFromError() {
ProjectRequest request = createProjectRequest(); ProjectRequest request = createProjectRequest();
ProjectGeneratedEvent event = new ProjectGeneratedEvent(request, this.metadata); ProjectGeneratedEvent event = new ProjectGeneratedEvent(request, this.metadata);
this.mockServer.expect(requestTo("http://example.com/elastic/initializr/request")) this.mockServer.expect(requestTo("https://example.com/elastic/initializr/request"))
.andExpect(method(HttpMethod.POST)).andRespond(withStatus(HttpStatus.INTERNAL_SERVER_ERROR)); .andExpect(method(HttpMethod.POST)).andRespond(withStatus(HttpStatus.INTERNAL_SERVER_ERROR));
this.mockServer.expect(requestTo("http://example.com/elastic/initializr/request")) this.mockServer.expect(requestTo("https://example.com/elastic/initializr/request"))
.andExpect(method(HttpMethod.POST)).andRespond(withStatus(HttpStatus.INTERNAL_SERVER_ERROR)); .andExpect(method(HttpMethod.POST)).andRespond(withStatus(HttpStatus.INTERNAL_SERVER_ERROR));
this.mockServer.expect(requestTo("http://example.com/elastic/initializr/request")) this.mockServer.expect(requestTo("https://example.com/elastic/initializr/request"))
.andExpect(method(HttpMethod.POST)) .andExpect(method(HttpMethod.POST))
.andRespond(withStatus(HttpStatus.CREATED).body(mockResponse(UUID.randomUUID().toString(), true)) .andRespond(withStatus(HttpStatus.CREATED).body(mockResponse(UUID.randomUUID().toString(), true))
.contentType(MediaType.APPLICATION_JSON)); .contentType(MediaType.APPLICATION_JSON));
@ -286,10 +286,10 @@ class ProjectGenerationStatPublisherTests {
ProjectGeneratedEvent event = new ProjectGeneratedEvent(request, this.metadata); ProjectGeneratedEvent event = new ProjectGeneratedEvent(request, this.metadata);
this.retryTemplate.setRetryPolicy(new SimpleRetryPolicy(2, Collections.singletonMap(Exception.class, true))); this.retryTemplate.setRetryPolicy(new SimpleRetryPolicy(2, Collections.singletonMap(Exception.class, true)));
this.mockServer.expect(requestTo("http://example.com/elastic/initializr/request")) this.mockServer.expect(requestTo("https://example.com/elastic/initializr/request"))
.andExpect(method(HttpMethod.POST)).andRespond(withStatus(HttpStatus.INTERNAL_SERVER_ERROR)); .andExpect(method(HttpMethod.POST)).andRespond(withStatus(HttpStatus.INTERNAL_SERVER_ERROR));
this.mockServer.expect(requestTo("http://example.com/elastic/initializr/request")) this.mockServer.expect(requestTo("https://example.com/elastic/initializr/request"))
.andExpect(method(HttpMethod.POST)).andRespond(withStatus(HttpStatus.INTERNAL_SERVER_ERROR)); .andExpect(method(HttpMethod.POST)).andRespond(withStatus(HttpStatus.INTERNAL_SERVER_ERROR));
this.statPublisher.handleEvent(event); this.statPublisher.handleEvent(event);
@ -310,7 +310,7 @@ class ProjectGenerationStatPublisherTests {
private static StatsProperties createProperties() { private static StatsProperties createProperties() {
StatsProperties properties = new StatsProperties(); StatsProperties properties = new StatsProperties();
Elastic elastic = properties.getElastic(); Elastic elastic = properties.getElastic();
elastic.setUri("http://example.com/elastic"); elastic.setUri("https://example.com/elastic");
return properties; return properties;
} }

View File

@ -31,8 +31,8 @@ class StatsPropertiesTests {
@Test @Test
void cleanTrailingSlash() { void cleanTrailingSlash() {
this.properties.getElastic().setUri("http://example.com/"); this.properties.getElastic().setUri("https://example.com/");
assertThat(this.properties.getElastic().getUri()).isEqualTo("http://example.com"); assertThat(this.properties.getElastic().getUri()).isEqualTo("https://example.com");
} }
} }

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>io.spring.initializr</groupId> <groupId>io.spring.initializr</groupId>

View File

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?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 http://maven.apache.org/xsd/maven-4.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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>io.spring.initializr</groupId> <groupId>io.spring.initializr</groupId>

View File

@ -354,7 +354,7 @@ defaults can be overridden as shown below:
[[create-instance-boot-versions]] [[create-instance-boot-versions]]
=== Configuring available Spring Boot versions === Configuring available Spring Boot versions
If you look at http://projects.spring.io/spring-boot[the project home page for Spring If you look at https://projects.spring.io/spring-boot[the project home page for Spring
Boot], the latest versions are displayed. And you've probably noticed that they match the Boot], the latest versions are displayed. And you've probably noticed that they match the
drop down list that you automatically get with a default instance of Spring Initializr. drop down list that you automatically get with a default instance of Spring Initializr.
The reason for that is that Spring Initializr calls an API on https://spring.io to The reason for that is that Spring Initializr calls an API on https://spring.io to
@ -592,7 +592,7 @@ declared at the top level (under `env`) and given an id via the key in the confi
repositories: repositories:
my-api-repo-1: my-api-repo-1:
name: repo1 name: repo1
url: http://example.com/repo1 url: https://example.com/repo1
---- ----
Once defined, the repository can then be referred back to in a dependency Once defined, the repository can then be referred back to in a dependency
@ -789,7 +789,7 @@ Here is an example that adds two links to the `acme` dependency:
href: https://com.example/guides/acme/ href: https://com.example/guides/acme/
description: Getting started with Acme description: Getting started with Acme
- rel: reference - rel: reference
href: http://docs.example.com/acme/html href: https://docs.example.com/acme/html
---- ----

View File

@ -24,9 +24,9 @@ Stéphane Nicoll; Dave Syer; Madhura Bhave
:github-master-code: https://github.com/{github-repo}/tree/master :github-master-code: https://github.com/{github-repo}/tree/master
:sc-initializr-generator: {github-code}/initializr-generator/src/main/java/io/spring/initializr :sc-initializr-generator: {github-code}/initializr-generator/src/main/java/io/spring/initializr
:spring-initializr-docs-version: current :spring-initializr-docs-version: current
:spring-initializr-docs: http://docs.spring.io/initializr/docs/{spring-initializr-docs-version}/reference :spring-initializr-docs: https://docs.spring.io/initializr/docs/{spring-initializr-docs-version}/reference
:spring-initializr-docs-current: http://docs.spring.io/initializr/docs/current/reference/html :spring-initializr-docs-current: https://docs.spring.io/initializr/docs/current/reference/html
:spring-boot-reference: http://docs.spring.io/spring-boot/docs/{spring-boot-docs-version}/reference/htmlsingle :spring-boot-reference: https://docs.spring.io/spring-boot/docs/{spring-boot-docs-version}/reference/htmlsingle
// ====================================================================================== // ======================================================================================

View File

@ -224,7 +224,7 @@ The following IDEs have dedicated support:
* Eclipse/STS * Eclipse/STS
* IntelliJ IDEA (Ultimate Edition) * IntelliJ IDEA (Ultimate Edition)
* NetBeans (using the http://plugins.netbeans.org/plugin/67888/nb-springboot[NB SpringBoot plugin]) * NetBeans (using the https://plugins.netbeans.org/plugin/67888/nb-springboot[NB SpringBoot plugin])
* Microsoft VSCode * Microsoft VSCode
Refer to the documentation of your favorite IDE for more details. Refer to the documentation of your favorite IDE for more details.

View File

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?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 http://maven.apache.org/xsd/maven-4.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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>io.spring.initializr</groupId> <groupId>io.spring.initializr</groupId>

View File

@ -59,8 +59,8 @@ class DependencyManagementBuildCustomizerTests {
BillOfMaterials bom = BillOfMaterials.create("com.example", "foo-bom", "1.0.0"); BillOfMaterials bom = BillOfMaterials.create("com.example", "foo-bom", "1.0.0");
bom.getRepositories().add("bar-repo"); bom.getRepositories().add("bar-repo");
InitializrMetadata metadata = InitializrMetadataTestBuilder.withDefaults().addBom("foo-bom", bom) InitializrMetadata metadata = InitializrMetadataTestBuilder.withDefaults().addBom("foo-bom", bom)
.addRepository("foo-repo", "foo-repo", "http://example.com/foo", false) .addRepository("foo-repo", "foo-repo", "https://example.com/foo", false)
.addRepository("bar-repo", "bar-repo", "http://example.com/bar", false) .addRepository("bar-repo", "bar-repo", "https://example.com/bar", false)
.addDependencyGroup("test", dependency).build(); .addDependencyGroup("test", dependency).build();
Build build = createBuild(metadata); Build build = createBuild(metadata);
build.dependencies().add(dependency.getId()); build.dependencies().add(dependency.getId());

View File

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?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 http://maven.apache.org/xsd/maven-4.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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>io.spring.initializr</groupId> <groupId>io.spring.initializr</groupId>

View File

@ -32,13 +32,13 @@ initializr:
repositories: repositories:
my-api-repo-1: my-api-repo-1:
name: repo1 name: repo1
url: http://example.com/repo1 url: https://example.com/repo1
my-api-repo-2: my-api-repo-2:
name: repo2 name: repo2
url: http://example.com/repo2 url: https://example.com/repo2
my-api-repo-3: my-api-repo-3:
name: repo3 name: repo3
url: http://example.com/repo3 url: https://example.com/repo3
dependencies: dependencies:
- name: Core - name: Core
content: content:

View File

@ -2,14 +2,14 @@
"id": "spring-boot", "id": "spring-boot",
"name": "Spring Boot", "name": "Spring Boot",
"repoUrl": "https://github.com/spring-projects/spring-boot", "repoUrl": "https://github.com/spring-projects/spring-boot",
"siteUrl": "http://projects.spring.io/spring-boot", "siteUrl": "https://projects.spring.io/spring-boot",
"category": "active", "category": "active",
"stackOverflowTags": "spring-boot", "stackOverflowTags": "spring-boot",
"projectReleases": [ "projectReleases": [
{ {
"releaseStatus": "SNAPSHOT", "releaseStatus": "SNAPSHOT",
"refDocUrl": "http://docs.spring.io/spring-boot/docs/1.3.1.BUILD-SNAPSHOT/reference/htmlsingle/", "refDocUrl": "https://docs.spring.io/spring-boot/docs/1.3.1.BUILD-SNAPSHOT/reference/htmlsingle/",
"apiDocUrl": "http://docs.spring.io/spring-boot/docs/1.3.1.BUILD-SNAPSHOT/api/", "apiDocUrl": "https://docs.spring.io/spring-boot/docs/1.3.1.BUILD-SNAPSHOT/api/",
"groupId": "org.springframework.boot", "groupId": "org.springframework.boot",
"artifactId": "spring-boot", "artifactId": "spring-boot",
"repository": { "repository": {
@ -27,8 +27,8 @@
}, },
{ {
"releaseStatus": "GENERAL_AVAILABILITY", "releaseStatus": "GENERAL_AVAILABILITY",
"refDocUrl": "http://docs.spring.io/spring-boot/docs/1.3.0.RELEASE/reference/htmlsingle/", "refDocUrl": "https://docs.spring.io/spring-boot/docs/1.3.0.RELEASE/reference/htmlsingle/",
"apiDocUrl": "http://docs.spring.io/spring-boot/docs/1.3.0.RELEASE/api/", "apiDocUrl": "https://docs.spring.io/spring-boot/docs/1.3.0.RELEASE/api/",
"groupId": "org.springframework.boot", "groupId": "org.springframework.boot",
"artifactId": "spring-boot", "artifactId": "spring-boot",
"repository": null, "repository": null,
@ -41,8 +41,8 @@
}, },
{ {
"releaseStatus": "SNAPSHOT", "releaseStatus": "SNAPSHOT",
"refDocUrl": "http://docs.spring.io/spring-boot/docs/1.2.6.BUILD-SNAPSHOT/reference/htmlsingle/", "refDocUrl": "https://docs.spring.io/spring-boot/docs/1.2.6.BUILD-SNAPSHOT/reference/htmlsingle/",
"apiDocUrl": "http://docs.spring.io/spring-boot/docs/1.2.6.BUILD-SNAPSHOT/api/", "apiDocUrl": "https://docs.spring.io/spring-boot/docs/1.2.6.BUILD-SNAPSHOT/api/",
"groupId": "org.springframework.boot", "groupId": "org.springframework.boot",
"artifactId": "spring-boot", "artifactId": "spring-boot",
"repository": { "repository": {
@ -60,8 +60,8 @@
}, },
{ {
"releaseStatus": "GENERAL_AVAILABILITY", "releaseStatus": "GENERAL_AVAILABILITY",
"refDocUrl": "http://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/", "refDocUrl": "https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/",
"apiDocUrl": "http://docs.spring.io/spring-boot/docs/current/api/", "apiDocUrl": "https://docs.spring.io/spring-boot/docs/current/api/",
"groupId": "org.springframework.boot", "groupId": "org.springframework.boot",
"artifactId": "spring-boot", "artifactId": "spring-boot",
"repository": null, "repository": null,

View File

@ -2,14 +2,14 @@
"id": "spring-boot", "id": "spring-boot",
"name": "Spring Boot", "name": "Spring Boot",
"repoUrl": "https://github.com/spring-projects/spring-boot", "repoUrl": "https://github.com/spring-projects/spring-boot",
"siteUrl": "http://projects.spring.io/spring-boot", "siteUrl": "https://projects.spring.io/spring-boot",
"category": "active", "category": "active",
"stackOverflowTags": "spring-boot", "stackOverflowTags": "spring-boot",
"projectReleases": [ "projectReleases": [
{ {
"releaseStatus": "SNAPSHOT", "releaseStatus": "SNAPSHOT",
"refDocUrl": "http://docs.spring.io/spring-boot/docs/1.4.1.BUILD-SNAPSHOT/reference/htmlsingle/", "refDocUrl": "https://docs.spring.io/spring-boot/docs/1.4.1.BUILD-SNAPSHOT/reference/htmlsingle/",
"apiDocUrl": "http://docs.spring.io/spring-boot/docs/1.4.1.BUILD-SNAPSHOT/api/", "apiDocUrl": "https://docs.spring.io/spring-boot/docs/1.4.1.BUILD-SNAPSHOT/api/",
"groupId": "org.springframework.boot", "groupId": "org.springframework.boot",
"artifactId": "spring-boot", "artifactId": "spring-boot",
"repository": { "repository": {
@ -27,8 +27,8 @@
}, },
{ {
"releaseStatus": "GENERAL_AVAILABILITY", "releaseStatus": "GENERAL_AVAILABILITY",
"refDocUrl": "http://docs.spring.io/spring-boot/docs/1.4.0.RELEASE/reference/htmlsingle/", "refDocUrl": "https://docs.spring.io/spring-boot/docs/1.4.0.RELEASE/reference/htmlsingle/",
"apiDocUrl": "http://docs.spring.io/spring-boot/docs/1.4.0.RELEASE/api/", "apiDocUrl": "https://docs.spring.io/spring-boot/docs/1.4.0.RELEASE/api/",
"groupId": "org.springframework.boot", "groupId": "org.springframework.boot",
"artifactId": "spring-boot", "artifactId": "spring-boot",
"repository": null, "repository": null,
@ -41,8 +41,8 @@
}, },
{ {
"releaseStatus": "SNAPSHOT", "releaseStatus": "SNAPSHOT",
"refDocUrl": "http://docs.spring.io/spring-boot/docs/1.3.8.BUILD-SNAPSHOT/reference/htmlsingle/", "refDocUrl": "https://docs.spring.io/spring-boot/docs/1.3.8.BUILD-SNAPSHOT/reference/htmlsingle/",
"apiDocUrl": "http://docs.spring.io/spring-boot/docs/1.3.8.BUILD-SNAPSHOT/api/", "apiDocUrl": "https://docs.spring.io/spring-boot/docs/1.3.8.BUILD-SNAPSHOT/api/",
"groupId": "org.springframework.boot", "groupId": "org.springframework.boot",
"artifactId": "spring-boot", "artifactId": "spring-boot",
"repository": { "repository": {
@ -60,8 +60,8 @@
}, },
{ {
"releaseStatus": "GENERAL_AVAILABILITY", "releaseStatus": "GENERAL_AVAILABILITY",
"refDocUrl": "http://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/", "refDocUrl": "https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/",
"apiDocUrl": "http://docs.spring.io/spring-boot/docs/current/api/", "apiDocUrl": "https://docs.spring.io/spring-boot/docs/current/api/",
"groupId": "org.springframework.boot", "groupId": "org.springframework.boot",
"artifactId": "spring-boot", "artifactId": "spring-boot",
"repository": null, "repository": null,

View File

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?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 http://maven.apache.org/xsd/maven-4.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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>io.spring.initializr</groupId> <groupId>io.spring.initializr</groupId>

View File

@ -120,13 +120,13 @@ class InitializrMetadataBuilderTests {
Repository myRepo = repositories.get("my-repo"); Repository myRepo = repositories.get("my-repo");
assertThat(myRepo).isNotNull(); assertThat(myRepo).isNotNull();
assertThat(myRepo.getName()).isEqualTo("my repo"); assertThat(myRepo.getName()).isEqualTo("my repo");
assertThat(myRepo.getUrl()).isEqualTo(new URL("http://example.com/my")); assertThat(myRepo.getUrl()).isEqualTo(new URL("https://example.com/my"));
assertThat(myRepo.isSnapshotsEnabled()).isEqualTo(true); assertThat(myRepo.isSnapshotsEnabled()).isEqualTo(true);
Repository anotherRepo = repositories.get("another-repo"); Repository anotherRepo = repositories.get("another-repo");
assertThat(anotherRepo).isNotNull(); assertThat(anotherRepo).isNotNull();
assertThat(anotherRepo.getName()).isEqualTo("another repo"); assertThat(anotherRepo.getName()).isEqualTo("another repo");
assertThat(anotherRepo.getUrl()).isEqualTo(new URL("http://example.com/another")); assertThat(anotherRepo.getUrl()).isEqualTo(new URL("https://example.com/another"));
assertThat(anotherRepo.isSnapshotsEnabled()).isEqualTo(false); assertThat(anotherRepo.isSnapshotsEnabled()).isEqualTo(false);
} }

View File

@ -56,7 +56,7 @@ class InitializrMetadataTests {
foo.setRepository("foo-repo"); foo.setRepository("foo-repo");
addTestDependencyGroup(metadata, foo); addTestDependencyGroup(metadata, foo);
metadata.getConfiguration().getEnv().getRepositories().put("my-repo", metadata.getConfiguration().getEnv().getRepositories().put("my-repo",
new Repository("repo", new URL("http://example.com/repo"), true)); new Repository("repo", new URL("https://example.com/repo"), true));
assertThatExceptionOfType(InvalidInitializrMetadataException.class).isThrownBy(metadata::validate) assertThatExceptionOfType(InvalidInitializrMetadataException.class).isThrownBy(metadata::validate)
.withMessageContaining("foo-repo").withMessageContaining("my-repo"); .withMessageContaining("foo-repo").withMessageContaining("my-repo");
} }

View File

@ -32,13 +32,13 @@ initializr:
repositories: repositories:
my-api-repo-1: my-api-repo-1:
name: repo1 name: repo1
url: http://example.com/repo1 url: https://example.com/repo1
my-api-repo-2: my-api-repo-2:
name: repo2 name: repo2
url: http://example.com/repo2 url: https://example.com/repo2
my-api-repo-3: my-api-repo-3:
name: repo3 name: repo3
url: http://example.com/repo3 url: https://example.com/repo3
dependencies: dependencies:
- name: Core - name: Core
content: content:

View File

@ -4,12 +4,12 @@
"repositories": { "repositories": {
"my-repo": { "my-repo": {
"name": "my repo", "name": "my repo",
"url": "http://example.com/my", "url": "https://example.com/my",
"snapshotsEnabled": true "snapshotsEnabled": true
}, },
"another-repo": { "another-repo": {
"name": "another repo", "name": "another repo",
"url": "http://example.com/another", "url": "https://example.com/another",
"snapshotsEnabled": false "snapshotsEnabled": false
} }
} }

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>io.spring.initializr</groupId> <groupId>io.spring.initializr</groupId>

View File

@ -1,6 +1,6 @@
= Service sample = Service sample
:docs: http://docs.spring.io/initializr/docs/current-SNAPSHOT/reference/html :docs: https://docs.spring.io/initializr/docs/current-SNAPSHOT/reference/html
This sample demonstrates how you can create your own service easily as described in the This sample demonstrates how you can create your own service easily as described in the
{docs}/#create-instance[reference documentation]. {docs}/#create-instance[reference documentation].

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>io.spring.initializr</groupId> <groupId>io.spring.initializr</groupId>

View File

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?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 http://maven.apache.org/xsd/maven-4.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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>io.spring.initializr</groupId> <groupId>io.spring.initializr</groupId>

View File

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?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 http://maven.apache.org/xsd/maven-4.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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>io.spring.initializr</groupId> <groupId>io.spring.initializr</groupId>

View File

@ -1,7 +1,7 @@
<assembly <assembly
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3" xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd"> xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 https://maven.apache.org/xsd/assembly-1.1.3.xsd">
<id>snippets</id> <id>snippets</id>
<formats> <formats>
<format>zip</format> <format>zip</format>

View File

@ -1,7 +1,7 @@
<assembly <assembly
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3" xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd"> xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 https://maven.apache.org/xsd/assembly-1.1.3.xsd">
<id>stubs</id> <id>stubs</id>
<formats> <formats>
<format>jar</format> <format>jar</format>

View File

@ -49,11 +49,11 @@ class CloudfoundryEnvironmentPostProcessorTests {
@Test @Test
void parseUri() { void parseUri() {
this.environment.setProperty("vcap.services.stats-index.credentials.uri", this.environment.setProperty("vcap.services.stats-index.credentials.uri",
"http://example.com/bar/biz?param=one"); "https://example.com/bar/biz?param=one");
this.postProcessor.postProcessEnvironment(this.environment, this.application); this.postProcessor.postProcessEnvironment(this.environment, this.application);
assertThat(this.environment.getProperty("initializr.stats.elastic.uri")) assertThat(this.environment.getProperty("initializr.stats.elastic.uri"))
.isEqualTo("http://example.com/bar/biz?param=one"); .isEqualTo("https://example.com/bar/biz?param=one");
assertThat(this.environment.getProperty("initializr.stats.elastic.username")).isNull(); assertThat(this.environment.getProperty("initializr.stats.elastic.username")).isNull();
assertThat(this.environment.getProperty("initializr.stats.elastic.password")).isNull(); assertThat(this.environment.getProperty("initializr.stats.elastic.password")).isNull();
} }

View File

@ -43,7 +43,7 @@ class DependencyMetadataJsonMapperTests {
d.setBom("my-bom"); d.setBom("my-bom");
Repository repository = new Repository(); Repository repository = new Repository();
repository.setName("foo-repo"); repository.setName("foo-repo");
repository.setUrl(new URL("http://example.com/foo")); repository.setUrl(new URL("https://example.com/foo"));
BillOfMaterials bom = BillOfMaterials.create("org.foo", "foo-bom", "1.0.0.RELEASE"); BillOfMaterials bom = BillOfMaterials.create("org.foo", "foo-bom", "1.0.0.RELEASE");
DependencyMetadata metadata = new DependencyMetadata(Version.parse("1.2.0.RELEASE"), DependencyMetadata metadata = new DependencyMetadata(Version.parse("1.2.0.RELEASE"),
Collections.singletonMap(d.getId(), d), Collections.singletonMap("repo-id", repository), Collections.singletonMap(d.getId(), d), Collections.singletonMap("repo-id", repository),

View File

@ -304,7 +304,6 @@ class MainControllerIntegrationTests extends AbstractInitializrControllerIntegra
void doNotForceSslByDefault() { void doNotForceSslByDefault() {
ResponseEntity<String> response = invokeHome("curl/1.2.4", "*/*"); ResponseEntity<String> response = invokeHome("curl/1.2.4", "*/*");
String body = response.getBody(); String body = response.getBody();
assertThat(body).as("Must not force https").contains("http://start.spring.io/");
assertThat(body).as("Must not force https").doesNotContain("https://"); assertThat(body).as("Must not force https").doesNotContain("https://");
} }

View File

@ -68,17 +68,17 @@
"repositories": { "repositories": {
"my-api-repo-1": { "my-api-repo-1": {
"name": "repo1", "name": "repo1",
"url": "http://example.com/repo1", "url": "https://example.com/repo1",
"snapshotsEnabled": false "snapshotsEnabled": false
}, },
"my-api-repo-2": { "my-api-repo-2": {
"name": "repo2", "name": "repo2",
"url": "http://example.com/repo2", "url": "https://example.com/repo2",
"snapshotsEnabled": false "snapshotsEnabled": false
}, },
"my-api-repo-3": { "my-api-repo-3": {
"name": "repo3", "name": "repo3",
"url": "http://example.com/repo3", "url": "https://example.com/repo3",
"snapshotsEnabled": false "snapshotsEnabled": false
}, },
"spring-milestones": { "spring-milestones": {

View File

@ -3,7 +3,7 @@
"repositories": { "repositories": {
"my-api-repo-1": { "my-api-repo-1": {
"name": "repo1", "name": "repo1",
"url": "http://example.com/repo1", "url": "https://example.com/repo1",
"snapshotEnabled": false "snapshotEnabled": false
} }
}, },

View File

@ -3,7 +3,7 @@
"repositories": { "repositories": {
"my-api-repo-2": { "my-api-repo-2": {
"name": "repo2", "name": "repo2",
"url": "http://example.com/repo2", "url": "https://example.com/repo2",
"snapshotEnabled": false "snapshotEnabled": false
} }
}, },

View File

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?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 http://maven.apache.org/xsd/maven-4.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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>io.spring.initializr</groupId> <groupId>io.spring.initializr</groupId>
<artifactId>initializr</artifactId> <artifactId>initializr</artifactId>
@ -10,7 +11,7 @@
<url>https://github.com/spring-io/initializr</url> <url>https://github.com/spring-io/initializr</url>
<organization> <organization>
<name>Pivotal Software, Inc.</name> <name>Pivotal Software, Inc.</name>
<url>http://www.spring.io</url> <url>https://www.spring.io</url>
</organization> </organization>
<licenses> <licenses>
<license> <license>
@ -28,7 +29,7 @@
<name>Stephane Nicoll</name> <name>Stephane Nicoll</name>
<email>snicoll at pivotal.io</email> <email>snicoll at pivotal.io</email>
<organization>Pivotal Software, Inc.</organization> <organization>Pivotal Software, Inc.</organization>
<organizationUrl>http://www.spring.io</organizationUrl> <organizationUrl>https://www.spring.io</organizationUrl>
<roles> <roles>
<role>Project lead</role> <role>Project lead</role>
</roles> </roles>