Updated to commons-net 1.4.0.
This commit is contained in:
parent
acdb412417
commit
308480d7ac
4 changed files with 21 additions and 18 deletions
13
.gitignore
vendored
13
.gitignore
vendored
|
@ -1,8 +1,11 @@
|
||||||
/build/
|
*.iws
|
||||||
/dist/
|
|
||||||
/dist-signed/
|
|
||||||
/CVS/
|
/CVS/
|
||||||
CVS
|
/build/
|
||||||
|
/buildnum.properties
|
||||||
|
/dist-signed/
|
||||||
|
/dist/
|
||||||
/ftp.properties
|
/ftp.properties
|
||||||
/keystore.properties
|
/keystore.properties
|
||||||
/buildnum.properties
|
CVS
|
||||||
|
Thumbs.db
|
||||||
|
ehthumbs.db
|
Binary file not shown.
BIN
lib/commons-net-1.4.0.jar
Normal file
BIN
lib/commons-net-1.4.0.jar
Normal file
Binary file not shown.
|
@ -1,5 +1,5 @@
|
||||||
/* Created by JReleaseInfo AntTask from Open Source Competence Group */
|
/* Created by JReleaseInfo AntTask from Open Source Competence Group */
|
||||||
/* Creation date Thu Apr 14 03:27:19 PDT 2005 */
|
/* Creation date Wed Nov 11 01:32:04 PST 2015 */
|
||||||
package net.thauvin.lifeblogger;
|
package net.thauvin.lifeblogger;
|
||||||
|
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
|
@ -12,21 +12,24 @@ import java.util.Date;
|
||||||
public class ReleaseInfo {
|
public class ReleaseInfo {
|
||||||
|
|
||||||
|
|
||||||
/** buildDate (set during build process to 1113474439925L). */
|
/** buildDate (set during build process to 1447234324519L). */
|
||||||
private static Date buildDate = new Date(1113474439925L);
|
private static Date buildDate = new Date(1447234324519L);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get buildDate (set during build process to Thu Apr 14 03:27:19 PDT 2005).
|
* Get buildDate (set during build process to Wed Nov 11 01:32:04 PST 2015).
|
||||||
* @return Date buildDate
|
* @return Date buildDate
|
||||||
*/
|
*/
|
||||||
public static final Date getBuildDate() { return buildDate; }
|
public static final Date getBuildDate() { return buildDate; }
|
||||||
|
|
||||||
|
|
||||||
|
/** project (set during build process to "LifeBlogger"). */
|
||||||
|
private static String project = new String("LifeBlogger");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get buildNumber (set during build process to 1).
|
* Get project (set during build process to "LifeBlogger").
|
||||||
* @return int buildNumber
|
* @return String project
|
||||||
*/
|
*/
|
||||||
public static final int getBuildNumber() { return 1; }
|
public static final String getProject() { return project; }
|
||||||
|
|
||||||
|
|
||||||
/** version (set during build process to "0.2"). */
|
/** version (set during build process to "0.2"). */
|
||||||
|
@ -39,13 +42,10 @@ public class ReleaseInfo {
|
||||||
public static final String getVersion() { return version; }
|
public static final String getVersion() { return version; }
|
||||||
|
|
||||||
|
|
||||||
/** project (set during build process to "LifeBlogger"). */
|
|
||||||
private static String project = new String("LifeBlogger");
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get project (set during build process to "LifeBlogger").
|
* Get buildNumber (set during build process to 2).
|
||||||
* @return String project
|
* @return int buildNumber
|
||||||
*/
|
*/
|
||||||
public static final String getProject() { return project; }
|
public static final int getBuildNumber() { return 2; }
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue