Skip to content

Commit 3001289

Browse files
author
Javen
committed
Switch project structure to maven standard.
1 parent 500acbc commit 3001289

File tree

79 files changed

+5
-15
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+5
-15
lines changed

.classpath

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,8 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
3-
<classpathentry kind="src" output="target/classes" path="src">
4-
<attributes>
5-
<attribute name="optional" value="true"/>
6-
<attribute name="maven.pomderived" value="true"/>
7-
</attributes>
8-
</classpathentry>
9-
<classpathentry kind="src" path="resources"/>
10-
<classpathentry kind="src" output="target/test-classes" path="test">
11-
<attributes>
12-
<attribute name="optional" value="true"/>
13-
<attribute name="maven.pomderived" value="true"/>
14-
</attributes>
15-
</classpathentry>
3+
<classpathentry kind="src" path="src/main/java"/>
4+
<classpathentry kind="src" path="src/main/resources"/>
5+
<classpathentry kind="src" path="src/test/java"/>
166
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
177
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
188
<attributes>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,13 @@
6363
<groupId>org.slf4j</groupId>
6464
<artifactId>slf4j-log4j12</artifactId>
6565
<version>1.7.7</version>
66+
<scope>test</scope>
6667
</dependency>
6768
<dependency>
6869
<groupId>log4j</groupId>
6970
<artifactId>log4j</artifactId>
7071
<version>1.2.17</version>
72+
<scope>test</scope>
7173
</dependency>
7274

7375
<dependency>
@@ -85,8 +87,6 @@
8587
</dependencies>
8688

8789
<build>
88-
<sourceDirectory>src</sourceDirectory>
89-
<testSourceDirectory>test</testSourceDirectory>
9090
<plugins>
9191
<plugin>
9292
<artifactId>maven-compiler-plugin</artifactId>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/cn/jpush/api/common/connection/HttpProxy.java renamed to src/main/java/cn/jpush/api/common/connection/HttpProxy.java

File renamed without changes.

src/cn/jpush/api/common/connection/IHttpClient.java renamed to src/main/java/cn/jpush/api/common/connection/IHttpClient.java

File renamed without changes.

src/cn/jpush/api/common/connection/NativeHttpClient.java renamed to src/main/java/cn/jpush/api/common/connection/NativeHttpClient.java

File renamed without changes.

src/cn/jpush/api/common/resp/APIConnectionException.java renamed to src/main/java/cn/jpush/api/common/resp/APIConnectionException.java

File renamed without changes.

0 commit comments

Comments
 (0)