Skip to content

Commit

Permalink
Merge pull request from GHSA-mc84-xr9p-938r
Browse files Browse the repository at this point in the history
replace http repositories with https
  • Loading branch information
jdubois committed Sep 20, 2019
2 parents 7a43da8 + e156daf commit e6cdd4a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions generators/common/templates/README.md.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -348,21 +348,21 @@ To configure CI for your project, run the ci-cd sub-generator (`jhipster ci-cd`)
[Code quality page]: <%= DOCUMENTATION_ARCHIVE_URL %>/code-quality/
[Setting up Continuous Integration]: <%= DOCUMENTATION_ARCHIVE_URL %>/setting-up-ci/
<% if (testFrameworks.includes("gatling")) { %>[Gatling]: http://gatling.io/<% } %>
<% if (testFrameworks.includes("gatling")) { %>[Gatling]: https://gatling.io/<% } %>
<%_ if (!skipClient) {_%>
[Node.js]: https://nodejs.org/
[Yarn]: https://yarnpkg.org/
[Webpack]: https://webpack.github.io/
[Angular CLI]: https://cli.angular.io/
[BrowserSync]: http://www.browsersync.io/
[BrowserSync]: https://www.browsersync.io/
[Jest]: https://facebook.github.io/jest/
[Jasmine]: http://jasmine.github.io/2.0/introduction.html
[Jasmine]: https://jasmine.github.io/2.0/introduction.html
[Protractor]: https://angular.github.io/protractor/
[Leaflet]: http://leafletjs.com/
[DefinitelyTyped]: http://definitelytyped.org/
[Leaflet]: https://leafletjs.com/
[DefinitelyTyped]: https://definitelytyped.org/
<%_ } _%>
<%_ if (enableSwaggerCodegen) { _%>
[OpenAPI-Generator]: https://openapi-generator.tech
[Swagger-Editor]: http://editor.swagger.io
[Swagger-Editor]: https://editor.swagger.io
[Doing API-First development]: <%= DOCUMENTATION_ARCHIVE_URL %>/doing-api-first-development/
<%_ } _%>
6 changes: 3 additions & 3 deletions generators/server/templates/build.gradle.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ buildscript {
mavenLocal()
mavenCentral()
gradlePluginPortal()
maven { url "http://repo.spring.io/plugins-release" }
maven { url "https://repo.spring.io/plugins-release" }
}
dependencies {
//jhipster-needle-gradle-buildscript-dependency - JHipster will add additional gradle build script plugins here
Expand Down Expand Up @@ -229,8 +229,8 @@ liquibase {
runList = project.ext.runList
}
<%_ } _%>

configurations {
providedRuntime
implementation.exclude module: "spring-boot-starter-tomcat"
Expand Down Expand Up @@ -369,7 +369,7 @@ dependencies {
implementation "org.springframework.kafka:spring-kafka"
<%_ } _%>
implementation "org.springframework.boot:spring-boot-starter-security"
implementation ("org.springframework.boot:spring-boot-starter-web<% if (reactive) { %>flux<% } %>") {
implementation ("org.springframework.boot:spring-boot-starter-web<% if (reactive) { %>flux<% } %>") {
exclude module: "spring-boot-starter-tomcat"
}
<%_ if (!reactive) { _%>
Expand Down

0 comments on commit e6cdd4a

Please sign in to comment.