mirror of
https://github.com/google/nomulus
synced 2026-04-09 11:09:24 +00:00
Make the necessary changes for the code base to compile with JDK 21. Other changes: 1. Upgraded testcontainer version and the SQL image version (to be the same as what we use in Cloud SQL). This led to some schema changes and also changed the order of results in some test queries (for the better I think, as the new order appears to be alphabetical). 2. Remove dependency on Truth8, which is deprecated. 3. Enable parallel Gradle task execution and greatly increased the number of parallel tests in standardTest. Removed outcastTest.
28 lines
1.1 KiB
Java
28 lines
1.1 KiB
Java
// Copyright 2019 The Nomulus Authors. All Rights Reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
package google.registry.persistence;
|
|
|
|
/** Information about Nomulus' Cloud SQL PostgreSql instance. */
|
|
public class NomulusPostgreSql {
|
|
|
|
/** The current PostgreSql version in Cloud SQL. */
|
|
// TODO(weiminyu): setup periodic checks to detect version changes in Cloud SQL.
|
|
private static final String TARGET_VERSION = "11.21-alpine";
|
|
|
|
/** Returns the docker image tag of the targeted Postgresql server version. */
|
|
public static String getDockerTag() {
|
|
return "postgres:" + TARGET_VERSION;
|
|
}
|
|
}
|