This repository has been archived by the owner on Jan 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Creating a dummy project to make dependabot easier (#200)
- Loading branch information
1 parent
b838d3a
commit 1d72f52
Showing
9 changed files
with
116 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
|
||
|
||
|
||
ext.allwpilibVersion = { | ||
return '2020.3.2' | ||
} | ||
|
||
ext.getWpiUtilVersion = { | ||
return allwpilibVersion() | ||
} | ||
ext.getNtCoreVersion = { | ||
return allwpilibVersion() | ||
} | ||
ext.getCsCoreVersion = { | ||
return allwpilibVersion() | ||
} | ||
|
||
ext.getWpilibOpencvVersion = { | ||
return '3.4.7-2' | ||
} | ||
ext.getCtreVersion = { | ||
return '5.17.2' | ||
} | ||
ext.getCtreSimVersion = { | ||
return getCtreVersion() + "_V0_RC" | ||
} | ||
ext.getRevRoboticsVersion = { | ||
return '1.5.0' | ||
} | ||
ext.getRevRoboticsSimVersion = { | ||
return getRevRoboticsVersion() + "_V1" | ||
} | ||
ext.getNavxVersion = { | ||
return '3.1.403' | ||
} | ||
|
||
//////////////////////////////// | ||
// Third Party | ||
ext.getLog4jVersion = { | ||
return "2.13.3" | ||
} | ||
|
||
ext.getSnakeYamlVersion = { | ||
return "1.27" | ||
} | ||
|
||
ext.getJunitJupiterVersion = { | ||
return "5.6.2" | ||
} | ||
|
||
ext.getJunitPlatformVersion = { | ||
return "1.7.0" | ||
} | ||
|
||
ext.getJinputVersion = { | ||
return "2.0.9" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
|
||
ext { | ||
baseId = "dependabot_helper" | ||
additional_external_libraries = [] | ||
} | ||
|
||
apply from: "${rootDir}/common/base_java_script.gradle" | ||
|
||
dependencies { | ||
compile 'edu.wpi.first.ntcore:ntcore-java:2020.3.2' | ||
compile 'org.apache.logging.log4j:log4j-api:2.13.3' | ||
compile 'org.apache.logging.log4j:log4j-core:2.13.3' | ||
compile 'org.yaml:snakeyaml:1.27' | ||
compile 'net.java.jinput:jinput:2.0.9' | ||
compile 'org.junit.jupiter:junit-jupiter-engine:5.7.0' | ||
compile 'org.junit.platform:junit-platform-launcher:1.6.2' | ||
compile 'edu.wpi.first.thirdparty.frc2020.opencv:opencv-java:3.4.7-2' | ||
|
||
compile "com.ctre.phoenix:api-java:5.17.2" | ||
compile "com.kauailabs.navx.frc:navx-java:3.1.403" | ||
compile "com.revrobotics.frc:SparkMax-java:1.5.0" | ||
|
||
compile 'com.snobot.simulator:ctre_sim_override:5.17.2_V1:windowsx86-64' | ||
compile 'com.snobot.simulator:rev_simulator:1.5.0_V1:windowsx86-64' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
public final class Main | ||
{ | ||
private Main() | ||
{ | ||
|
||
} | ||
|
||
public static void main(String[] aArgs) | ||
{ | ||
System.out.println("Hello world"); // NOPMD | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters