Skip to content

Commit 67c87ca

Browse files
committed
Back to 42.7.4 and add instructions for testing SNAPSHOT versions
1 parent 37bb012 commit 67c87ca

3 files changed

Lines changed: 15 additions & 8 deletions

File tree

build.gradle

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff 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.

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ poiVersion=5.4.0
264264
pollingWatchVersion=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

269269
quartzVersion=2.5.0
270270

server/embedded/src/org/labkey/embedded/LabKeyServer.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
import org.springframework.boot.autoconfigure.SpringBootApplication;
88
import org.springframework.boot.context.ApplicationPidFileWriter;
99
import org.springframework.boot.context.properties.ConfigurationProperties;
10-
import org.springframework.boot.web.embedded.tomcat.TomcatConnectorCustomizer;
1110
import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;
1211
import org.springframework.boot.web.server.WebServerFactoryCustomizer;
1312
import org.springframework.context.annotation.Bean;

0 commit comments

Comments
 (0)