Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .classpath
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jdk1.6.0_10"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jdk1.6.0_10"/>
<classpathentry kind="output" path="bin"/>
</classpath>
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
/bin
2 changes: 1 addition & 1 deletion .project
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>chengn-lang</name>
<name>sword-lang</name>
<comment></comment>
<projects>
</projects>
Expand Down
7 changes: 6 additions & 1 deletion META-INF/NOTICE.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
need jar

====project home
https://github.com/sword-org/sword-lang


====need jar
commons-lang3
Log4j
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
*
*/
package org.sword.chengn.lang;
package org.sword.lang;

import java.util.Calendar;
import java.util.Date;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
*
*/
package org.sword.chengn.lang;
package org.sword.lang;

import java.text.ParseException;
import java.text.SimpleDateFormat;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
*
*/
package test.org.sword.chengn.lang;
package test.org.sword.lang;

import org.junit.Test;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
*
*/
package test.org.sword.chengn.lang;
package test.org.sword.lang;

import static org.junit.Assert.assertEquals;

Expand All @@ -10,7 +10,7 @@
import java.util.Date;

import org.junit.Test;
import org.sword.chengn.lang.DateTimeUtil;
import org.sword.lang.DateTimeUtil;


/**
Expand Down