master
Vyacheslav N. Boyko 2017-07-07 16:35:42 +03:00
parent 4dbe5aa5a9
commit 4cdb3ca920
2 changed files with 4 additions and 4 deletions

View File

@ -6,10 +6,10 @@
<groupId>ru.bvn13</groupId>
<artifactId>licenseserverjclient</artifactId>
<version>1.6</version>
<version>1.8.1</version>
<name>LicenseServerJClient</name>
<name>licenseserverjclient</name>
<description>LicenseServerJ client</description>
<url>https://github.com/bvn13/LicenseServerJClient</url>
@ -94,7 +94,7 @@
<outputDirectory>${project.build.directory}/mvn-repo</outputDirectory>
<branch>refs/heads/mvn-repo</branch>
<includes><include>**/*</include></includes>
<repositoryName>LicenseServerJClient</repositoryName>
<repositoryName>licenseserverjclient</repositoryName>
<repositoryOwner>bvn13</repositoryOwner>
</configuration>
<executions>

View File

@ -87,7 +87,7 @@ public abstract class SystemID {
systemInfo += "\n" + "Available processors (cores): " + Runtime.getRuntime().availableProcessors();
long maxMemory = Runtime.getRuntime().maxMemory();
systemInfo += "\n" + "Maximum memory (bytes): " + (maxMemory == Long.MAX_VALUE ? "no limit" : maxMemory);
//systemInfo += "\n" + "Maximum memory (bytes): " + (maxMemory == Long.MAX_VALUE ? "no limit" : maxMemory);
String userDir = new File(System.getProperty("user.dir")).getAbsolutePath();
String rootDir = userDir.substring(0, userDir.indexOf(File.separator)+1);
systemInfo += "\n" + "Root dir: "+rootDir;