Skip to content

Commit 2736dd3

Browse files
author
magiclu550
committed
[commit] #1071 maven
1 parent 46412c2 commit 2736dd3

File tree

7 files changed

+225
-232
lines changed

7 files changed

+225
-232
lines changed

.idea/libraries/Maven__junit_junit_3_8_1.xml

-13
This file was deleted.

jsmod2/jsmod2.iml

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@
2828
<orderEntry type="library" name="Maven: cn.jsmod2:jsmod2-core:1.0.3" level="project" />
2929
<orderEntry type="library" name="Maven: cn.jsmod2:jsmod2-core:1.0.3" level="project" />
3030
<orderEntry type="library" name="Maven: org.apache.ws.commons.util:ws-commons-util:1.0.2" level="project" />
31-
<orderEntry type="library" name="Maven: junit:junit:3.8.1" level="project" />
3231
<orderEntry type="library" name="Maven: xml-apis:xml-apis:1.0.b2" level="project" />
32+
<orderEntry type="library" scope="TEST" name="Maven: junit:junit:4.12" level="project" />
33+
<orderEntry type="library" scope="TEST" name="Maven: org.hamcrest:hamcrest-core:1.3" level="project" />
3334
<orderEntry type="module" module-name="JPLS" />
3435
<orderEntry type="library" name="Maven: org.apache.xmlrpc:xmlrpc-server:3.1.3" level="project" />
3536
<orderEntry type="library" name="Maven: commons-logging:commons-logging:1.1" level="project" />

jsmod2/pom.xml

+9
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,20 @@
99
<version>1.0-SNAPSHOT</version>
1010

1111
<dependencies>
12+
1213
<!-- https://mvnrepository.com/artifact/org.apache.ws.commons.util/ws-commons-util -->
1314
<dependency>
1415
<groupId>org.apache.ws.commons.util</groupId>
1516
<artifactId>ws-commons-util</artifactId>
1617
<version>1.0.2</version>
1718
</dependency>
1819

20+
<dependency>
21+
<groupId>junit</groupId>
22+
<artifactId>junit</artifactId>
23+
<version>4.12</version>
24+
<scope>test</scope>
25+
</dependency>
1926
<dependency>
2027
<groupId>cn.jsmod2</groupId>
2128
<artifactId>JPLS</artifactId>
@@ -90,6 +97,8 @@
9097
</configuration>
9198
</plugin>
9299

100+
101+
93102
</plugins>
94103
</build>
95104
</project>

jsmod2/src/test/java/cn/jsmod2/Test.java

-16
This file was deleted.
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package cn.jsmod2;
2+
3+
4+
import org.junit.Test;
5+
6+
public class Test01 {
7+
8+
@Test
9+
public void run(){
10+
11+
}
12+
}

jsmod2/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst

+201-201
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/Users/luchangcun/jsmod2/jsmod2-info/jsmod2/src/test/java/cn/jsmod2/Test.java
1+
/Users/luchangcun/jsmod2/JSmod2-Core/jsmod2/src/test/java/cn/jsmod2/Test.java

0 commit comments

Comments
 (0)