File tree Expand file tree Collapse file tree
server/embedded/src/org/labkey/embedded Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -156,15 +156,23 @@ allprojects {
156156 }
157157 }
158158
159- // Temporarily uncomment the block below and update the four-digit number to allow building with Tomcat versions that
160- // haven't been released yet . The "VOTE" emails sent to the Tomcat dev email list include a staging repo URL. In
161- // addition to updating the url to match, you'll also need to update apacheTomcatVersion in gradle.properties.
159+ // To build and test Tomcat versions that haven't been released yet, temporarily uncomment the block below and update
160+ // the four-digit number . The "VOTE" emails sent to the Tomcat dev email list include a staging repo URL. In addition
161+ // to updating the url to match, you'll also need to update apacheTomcatVersion in gradle.properties.
162162// maven {
163163// url "https://repository.apache.org/content/repositories/orgapachetomcat-1322/"
164164// }
165- maven {
166- url " https://oss.sonatype.org/content/repositories/snapshots/"
167- }
165+
166+ // To test SNAPSHOT PostgreSQL JDBC drivers locally, temporarily uncomment the block below and update the
167+ // postgresqlDriverVersion property in gradle.properties to a SNAPSHOT version (e.g., 42.7.7-SNAPSHOT). Note that
168+ // the writeDependenciesList task does not support SNAPSHOT versions, so you'll need to build with something like:
169+ //
170+ // ./gradlew deployApp -x writeDependenciesList
171+ //
172+ // maven {
173+ // url "https://oss.sonatype.org/content/repositories/snapshots/"
174+ // }
175+
168176 maven {
169177 // Mondrian dependencies are available via this repository. It's a direct dependency of the Query
170178 // module but is declared here as many modules depend on Query and therefore need it as well.
Original file line number Diff line number Diff line change @@ -264,7 +264,7 @@ poiVersion=5.4.0
264264pollingWatchVersion =0.2.0
265265
266266# Newer versions of the driver have a perf degradation that's important for us. https://github.com/pgjdbc/pgjdbc/issues/3505
267- postgresqlDriverVersion =42.7.7-SNAPSHOT
267+ postgresqlDriverVersion =42.7.4
268268
269269quartzVersion =2.5.0
270270
Original file line number Diff line number Diff line change 77import org .springframework .boot .autoconfigure .SpringBootApplication ;
88import org .springframework .boot .context .ApplicationPidFileWriter ;
99import org .springframework .boot .context .properties .ConfigurationProperties ;
10- import org .springframework .boot .web .embedded .tomcat .TomcatConnectorCustomizer ;
1110import org .springframework .boot .web .embedded .tomcat .TomcatServletWebServerFactory ;
1211import org .springframework .boot .web .server .WebServerFactoryCustomizer ;
1312import org .springframework .context .annotation .Bean ;
You can’t perform that action at this time.
0 commit comments