generated from wpilibsuite/vendor-template
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c2890ab
commit df003b1
Showing
74 changed files
with
253 additions
and
41 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
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
36 changes: 36 additions & 0 deletions
36
src/main/java/swervelib/parser/json/modules/AngleConversionFactorsJson.java
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,36 @@ | ||
package swervelib.parser.json.modules; | ||
|
||
import swervelib.math.SwerveMath; | ||
import swervelib.telemetry.Alert; | ||
import swervelib.telemetry.Alert.AlertType; | ||
|
||
/** Angle motor conversion factors composite JSON parse class. */ | ||
public class AngleConversionFactorsJson { | ||
|
||
/** | ||
* Gear ratio for the angle/steering/azimuth motor on the Swerve Module. Motor rotations to 1 | ||
* wheel rotation. | ||
*/ | ||
public double gearRatio = 0; | ||
/** Calculated or given conversion factor. */ | ||
public double factor = 0; | ||
|
||
/** | ||
* Calculate the drive conversion factor. | ||
* | ||
* @return Drive conversion factor, if factor isn't set. | ||
*/ | ||
public double calculate() { | ||
if (factor != 0 && gearRatio != 0) { | ||
new Alert( | ||
"Configuration", | ||
"The given angle conversion factor takes precedence over the composite conversion factor, please remove 'factor' if you want to use the composite factor instead.", | ||
AlertType.WARNING) | ||
.set(true); | ||
} | ||
if (factor == 0) { | ||
factor = SwerveMath.calculateDegreesPerSteeringRotation(gearRatio); | ||
} | ||
return factor; | ||
} | ||
} |
28 changes: 28 additions & 0 deletions
28
src/main/java/swervelib/parser/json/modules/ConversionFactorsJson.java
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,28 @@ | ||
package swervelib.parser.json.modules; | ||
|
||
/** Conversion Factors parsed JSON class */ | ||
public class ConversionFactorsJson { | ||
|
||
/** Drive motor conversion factors composition. */ | ||
public DriveConversionFactorsJson drive = new DriveConversionFactorsJson(); | ||
/** Angle motor conversion factors composition. */ | ||
public AngleConversionFactorsJson angle = new AngleConversionFactorsJson(); | ||
|
||
/** | ||
* Check if the conversion factors are set for the drive motor. | ||
* | ||
* @return Empty | ||
*/ | ||
public boolean isDriveEmpty() { | ||
return drive.factor == 0 && drive.diameter == 0 && drive.gearRatio == 0; | ||
} | ||
|
||
/** | ||
* Check if the conversion factors are set for the angle motor. | ||
* | ||
* @return Empty | ||
*/ | ||
public boolean isAngleEmpty() { | ||
return angle.factor == 0 && angle.gearRatio == 0; | ||
} | ||
} |
38 changes: 38 additions & 0 deletions
38
src/main/java/swervelib/parser/json/modules/DriveConversionFactorsJson.java
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,38 @@ | ||
package swervelib.parser.json.modules; | ||
|
||
import edu.wpi.first.math.util.Units; | ||
import swervelib.math.SwerveMath; | ||
import swervelib.telemetry.Alert; | ||
import swervelib.telemetry.Alert.AlertType; | ||
|
||
/** Drive motor composite JSON parse class. */ | ||
public class DriveConversionFactorsJson { | ||
|
||
/** Gear ratio for the drive motor rotations to turn the wheel 1 complete rotation. */ | ||
public double gearRatio = 0; | ||
/** Diameter of the wheel in inches. */ | ||
public double diameter = 0; | ||
/** Calculated conversion factor. */ | ||
public double factor = 0; | ||
|
||
/** | ||
* Calculate the drive conversion factor. | ||
* | ||
* @return Drive conversion factor, if factor isn't set. | ||
*/ | ||
public double calculate() { | ||
if (factor != 0 && (diameter != 0 || gearRatio != 0)) { | ||
new Alert( | ||
"Configuration", | ||
"The given drive conversion factor takes precedence over the composite conversion factor, please remove 'factor' if you want to use the composite factor instead.", | ||
AlertType.WARNING) | ||
.set(true); | ||
} | ||
if (factor == 0) { | ||
factor = | ||
SwerveMath.calculateMetersPerRotation( | ||
Units.inchesToMeters(this.diameter), this.gearRatio); | ||
} | ||
return factor; | ||
} | ||
} |
Binary file added
BIN
+3.98 KB
yagsl/repos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0-headers.zip
Binary file not shown.
1 change: 1 addition & 0 deletions
1
yagsl/repos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0-headers.zip.md5
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 @@ | ||
08caa4af8eaae4675661179f851ffb27 |
1 change: 1 addition & 0 deletions
1
yagsl/repos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0-headers.zip.sha1
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 @@ | ||
de3b1976111495ed71be02dc1e444364198ecaf0 |
1 change: 1 addition & 0 deletions
1
yagsl/repos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0-headers.zip.sha256
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 @@ | ||
fb99f57bbdc7c3b30b185c9643609f16d4e60d7e3b1e69dfe1f112924fb168ec |
1 change: 1 addition & 0 deletions
1
yagsl/repos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0-headers.zip.sha512
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 @@ | ||
418b466a46440387ed256fa4937014c875ff04f0e454b13af2caf3d9a44734720e2f1c79df8224a7e9dead59a1d018b0635cae03daa77908c949395df953bb96 |
Binary file added
BIN
+3.98 KB
yagsl/repos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0-linuxathena.zip
Binary file not shown.
1 change: 1 addition & 0 deletions
1
yagsl/repos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0-linuxathena.zip.md5
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 @@ | ||
08caa4af8eaae4675661179f851ffb27 |
1 change: 1 addition & 0 deletions
1
yagsl/repos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0-linuxathena.zip.sha1
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 @@ | ||
de3b1976111495ed71be02dc1e444364198ecaf0 |
1 change: 1 addition & 0 deletions
1
yagsl/repos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0-linuxathena.zip.sha256
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 @@ | ||
fb99f57bbdc7c3b30b185c9643609f16d4e60d7e3b1e69dfe1f112924fb168ec |
1 change: 1 addition & 0 deletions
1
yagsl/repos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0-linuxathena.zip.sha512
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 @@ | ||
418b466a46440387ed256fa4937014c875ff04f0e454b13af2caf3d9a44734720e2f1c79df8224a7e9dead59a1d018b0635cae03daa77908c949395df953bb96 |
Binary file added
BIN
+3.98 KB
yagsl/repos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0-linuxathenadebug.zip
Binary file not shown.
1 change: 1 addition & 0 deletions
1
yagsl/repos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0-linuxathenadebug.zip.md5
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 @@ | ||
08caa4af8eaae4675661179f851ffb27 |
1 change: 1 addition & 0 deletions
1
yagsl/repos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0-linuxathenadebug.zip.sha1
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 @@ | ||
de3b1976111495ed71be02dc1e444364198ecaf0 |
1 change: 1 addition & 0 deletions
1
yagsl/repos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0-linuxathenadebug.zip.sha256
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 @@ | ||
fb99f57bbdc7c3b30b185c9643609f16d4e60d7e3b1e69dfe1f112924fb168ec |
1 change: 1 addition & 0 deletions
1
yagsl/repos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0-linuxathenadebug.zip.sha512
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 @@ | ||
418b466a46440387ed256fa4937014c875ff04f0e454b13af2caf3d9a44734720e2f1c79df8224a7e9dead59a1d018b0635cae03daa77908c949395df953bb96 |
Binary file added
BIN
+3.98 KB
yagsl/repos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0-linuxathenastatic.zip
Binary file not shown.
1 change: 1 addition & 0 deletions
1
yagsl/repos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0-linuxathenastatic.zip.md5
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 @@ | ||
08caa4af8eaae4675661179f851ffb27 |
1 change: 1 addition & 0 deletions
1
yagsl/repos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0-linuxathenastatic.zip.sha1
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 @@ | ||
de3b1976111495ed71be02dc1e444364198ecaf0 |
1 change: 1 addition & 0 deletions
1
yagsl/repos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0-linuxathenastatic.zip.sha256
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 @@ | ||
fb99f57bbdc7c3b30b185c9643609f16d4e60d7e3b1e69dfe1f112924fb168ec |
1 change: 1 addition & 0 deletions
1
yagsl/repos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0-linuxathenastatic.zip.sha512
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 @@ | ||
418b466a46440387ed256fa4937014c875ff04f0e454b13af2caf3d9a44734720e2f1c79df8224a7e9dead59a1d018b0635cae03daa77908c949395df953bb96 |
Binary file added
BIN
+3.98 KB
yagsl/repos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0-linuxathenastaticdebug.zip
Binary file not shown.
1 change: 1 addition & 0 deletions
1
.../repos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0-linuxathenastaticdebug.zip.md5
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 @@ | ||
08caa4af8eaae4675661179f851ffb27 |
1 change: 1 addition & 0 deletions
1
...repos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0-linuxathenastaticdebug.zip.sha1
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 @@ | ||
de3b1976111495ed71be02dc1e444364198ecaf0 |
1 change: 1 addition & 0 deletions
1
...pos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0-linuxathenastaticdebug.zip.sha256
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 @@ | ||
fb99f57bbdc7c3b30b185c9643609f16d4e60d7e3b1e69dfe1f112924fb168ec |
1 change: 1 addition & 0 deletions
1
...pos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0-linuxathenastaticdebug.zip.sha512
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 @@ | ||
418b466a46440387ed256fa4937014c875ff04f0e454b13af2caf3d9a44734720e2f1c79df8224a7e9dead59a1d018b0635cae03daa77908c949395df953bb96 |
Binary file added
BIN
+3.98 KB
yagsl/repos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0-sources.zip
Binary file not shown.
1 change: 1 addition & 0 deletions
1
yagsl/repos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0-sources.zip.md5
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 @@ | ||
08caa4af8eaae4675661179f851ffb27 |
1 change: 1 addition & 0 deletions
1
yagsl/repos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0-sources.zip.sha1
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 @@ | ||
de3b1976111495ed71be02dc1e444364198ecaf0 |
1 change: 1 addition & 0 deletions
1
yagsl/repos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0-sources.zip.sha256
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 @@ | ||
fb99f57bbdc7c3b30b185c9643609f16d4e60d7e3b1e69dfe1f112924fb168ec |
1 change: 1 addition & 0 deletions
1
yagsl/repos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0-sources.zip.sha512
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 @@ | ||
418b466a46440387ed256fa4937014c875ff04f0e454b13af2caf3d9a44734720e2f1c79df8224a7e9dead59a1d018b0635cae03daa77908c949395df953bb96 |
9 changes: 9 additions & 0 deletions
9
yagsl/repos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0.pom
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,9 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>swervelib</groupId> | ||
<artifactId>YAGSL-cpp</artifactId> | ||
<version>2024.5.0.0</version> | ||
<packaging>pom</packaging> | ||
</project> |
1 change: 1 addition & 0 deletions
1
yagsl/repos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0.pom.md5
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 @@ | ||
a3038c661716887feccbeafef54bbdc4 |
1 change: 1 addition & 0 deletions
1
yagsl/repos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0.pom.sha1
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 @@ | ||
dc13dd3540bd2dbf16e09a1390c03c1990c72914 |
1 change: 1 addition & 0 deletions
1
yagsl/repos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0.pom.sha256
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 @@ | ||
aebd7d7a4d9291d555f9cb6ea9f7a44ae002a98a3f986fe9ed7fbd53390c01a0 |
1 change: 1 addition & 0 deletions
1
yagsl/repos/swervelib/YAGSL-cpp/2024.5.0.0/YAGSL-cpp-2024.5.0.0.pom.sha512
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 @@ | ||
a80324cc5dd0f75187fcf617c6f02c979518cbe86488a3007a1e5822fb81b29e6852213cbd498b8fc773472172b48dd83d06d673aab6d5b992f2ac64b96131c0 |
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 |
---|---|---|
@@ -1 +1 @@ | ||
0b744260daf3ff4216785c137fd91428 | ||
ab2c6cf21107b5fd040c01c4cc97d17f |
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 |
---|---|---|
@@ -1 +1 @@ | ||
a181f606fcac0e3f77c0561214d4a952c7ce1222 | ||
20945ad53253382c08c5da37c76bb98b7ee1b8da |
Oops, something went wrong.