1.1.0-SNAPSHOT

This commit is contained in:
Erik C. Thauvin 2025-03-21 21:29:04 -07:00
parent e7d0ada68c
commit b8927615ec
Signed by: erik
GPG key ID: 776702A6A2DA330E
4 changed files with 7 additions and 7 deletions

View file

@ -1,7 +1,7 @@
bld.downloadExtensionJavadoc=false
bld.downloadExtensionSources=true
bld.downloadLocation=
bld.extension-kotlin=com.uwyn.rife2:bld-kotlin:1.0.5-SNAPSHOT
bld.extension-kotlin=com.uwyn.rife2:bld-kotlin:1.1.0-SNAPSHOT
bld.repositories=MAVEN_LOCAL,MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
bld.sourceDirectories=
bld.version=2.2.1

View file

@ -33,7 +33,7 @@ public class CompileKotlinOperationBuild extends Project {
public CompileKotlinOperationBuild() {
pkg = "rife.bld.extension";
name = "bld-kotlin";
version = version(1, 0, 5, "SNAPSHOT");
version = version(1, 1, 0, "SNAPSHOT");
javaRelease = 17;

View file

@ -79,7 +79,7 @@ public class CompileKotlinOperation extends AbstractOperation<CompileKotlinOpera
* Locates the Kotlin compiler (kotlinc) executable.
*
* @return The path to the kotlinc executable, or {@code kotlinc}/{@code kotlinc.bat} if not found.
* @since 1.0.5
* @since 1.1.0
*/
public static String findKotlincPath() {
String kotlincPath;
@ -182,7 +182,7 @@ public class CompileKotlinOperation extends AbstractOperation<CompileKotlinOpera
* Determines if the operating system is Linux.
*
* @return true if the operating system is Linux, false otherwise.
* @since 1.0.5
* @since 1.1.0
*/
public static boolean isLinux() {
return OS_NAME != null && (OS_NAME.contains("linux") || OS_NAME.contains("unix")); // Consider Unix-like systems as well.
@ -192,7 +192,7 @@ public class CompileKotlinOperation extends AbstractOperation<CompileKotlinOpera
* Determines if the current operating system is macOS.
*
* @return true if the OS is macOS, false otherwise.
* @since 1.0.5
* @since 1.1.0
*/
public static boolean isMacOS() {
return OS_NAME != null && (OS_NAME.contains("mac") || OS_NAME.contains("darwin"));
@ -212,7 +212,7 @@ public class CompileKotlinOperation extends AbstractOperation<CompileKotlinOpera
* Determines if the current operating system is Windows.
*
* @return true if the operating system is Windows, false otherwise.
* @since 1.0.5
* @since 1.1.0
*/
public static boolean isWindows() {
return OS_NAME != null && OS_NAME.contains("win");

View file

@ -27,7 +27,7 @@ import java.util.List;
* Java Virtual Machine options.
*
* @author <a href="https://erik.thauvin.net/">Erik C. Thauvin</a>
* @since 1.0.5
* @since 1.1.0
*/
@SuppressWarnings("PMD.LooseCoupling")
public class JvmOptions extends ArrayList<String> {