
com.peterabeles.LibrarySourceInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
A minimalist library for converting double (64-bit) numerical Java code into float (32-bit)
The newest version!
/*
* Auto64to32F is released to Public Domain or MIT License. Either maybe used.
*/
package com.peterabeles;
/**
* Version information about the project
*
* @author Peter Abeles
*/
public class LibrarySourceInfo {
public String projectName;
public String version;
public String gitSha;
public String gitDate;
public void checkConfigured() {
if (projectName == null || version == null || gitSha == null || gitDate == null)
throw new RuntimeException("You must configure 'ProjectUtils.libraryInfo'");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy