Skip to content

Commit dbdfb70

Browse files
authored
Update frcYear to 2026beta (#800)
In past betas we used just the year which let beta vendordeps be use with releases. This will make beta vendordeps only loadable with on beta projects
1 parent f23552f commit dbdfb70

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/main/java/edu/wpi/first/gradlerio/wpi/WPIExtension.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public WPIExtension(Project project) {
6363
platforms = new NativePlatforms();
6464

6565
frcYear = factory.property(String.class);
66-
frcYear.convention("2025");
66+
frcYear.convention("2026beta");
6767

6868
frcHome = factory.directoryProperty().fileProvider(project.provider(WPIExtension::computeHomeRoot))
6969
.dir(frcYear);

testing/asm/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pluginManagement {
44
repositories {
55
mavenLocal()
66
gradlePluginPortal()
7-
String frcYear = '2025'
7+
String frcYear = '2026beta'
88
File frcHome
99
if (OperatingSystem.current().isWindows()) {
1010
String publicFolder = System.getenv('PUBLIC')

testing/java/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pluginManagement {
44
repositories {
55
mavenLocal()
66
gradlePluginPortal()
7-
String frcYear = '2025'
7+
String frcYear = '2026beta'
88
File frcHome
99
if (OperatingSystem.current().isWindows()) {
1010
String publicFolder = System.getenv('PUBLIC')

testing/jni/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pluginManagement {
44
repositories {
55
mavenLocal()
66
gradlePluginPortal()
7-
String frcYear = '2025'
7+
String frcYear = '2026beta'
88
File frcHome
99
if (OperatingSystem.current().isWindows()) {
1010
String publicFolder = System.getenv('PUBLIC')

0 commit comments

Comments
 (0)