Skip to content

Commit 05e7333

Browse files
author
wenbo2018
committed
fix bug
1 parent 124f169 commit 05e7333

File tree

112 files changed

+131
-431
lines changed

Some content is hidden

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

112 files changed

+131
-431
lines changed

pom.xml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@
66
<name>webs</name>
77
<packaging>pom</packaging>
88
<version>0.0.1-SNAPSHOT</version>
9-
<url>http://maven.apache.org</url>
9+
<url>https://github.com/wenbo2018/WebS</url>
10+
<properties>
11+
<maven.compiler.source>1.7</maven.compiler.source>
12+
<maven.compiler.target>1.7</maven.compiler.target>
13+
<encoding>UTF-8</encoding>
14+
</properties>
1015
<dependencies>
1116
<dependency>
1217
<groupId>junit</groupId>
@@ -137,4 +142,6 @@
137142
<module>webs-core</module>
138143
<module>webs-demo</module>
139144
</modules>
145+
146+
140147
</project>

webs-core/pom.xml

Lines changed: 112 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,116 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3-
<modelVersion>4.0.0</modelVersion>
4-
<parent>
5-
<groupId>com.github.wenbo2018</groupId>
6-
<artifactId>webs</artifactId>
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<parent>
5+
<groupId>com.github.wenbo2018</groupId>
6+
<artifactId>webs</artifactId>
7+
<version>0.0.1-SNAPSHOT</version>
8+
</parent>
9+
<artifactId>webs-core</artifactId>
10+
<name>webs-core</name>
711
<version>0.0.1-SNAPSHOT</version>
8-
</parent>
9-
<artifactId>webs-core</artifactId>
10-
<name>webs-core</name>
11-
<version>0.0.1-SNAPSHOT</version>
12-
<packaging>jar</packaging>
13-
<url>http://maven.apache.org</url>
14-
<properties>
15-
<maven.compiler.source>1.7</maven.compiler.source>
16-
<maven.compiler.target>1.7</maven.compiler.target>
17-
<encoding>UTF-8</encoding>
18-
</properties>
12+
<packaging>jar</packaging>
13+
<url>https://github.com/wenbo2018/WebS</url>
14+
<properties>
15+
<maven.compiler.source>1.7</maven.compiler.source>
16+
<maven.compiler.target>1.7</maven.compiler.target>
17+
<encoding>UTF-8</encoding>
18+
</properties>
19+
20+
<build>
21+
<plugins>
22+
<plugin>
23+
<groupId>org.apache.maven.plugins</groupId>
24+
<artifactId>maven-compiler-plugin</artifactId>
25+
<version>2.3.2</version>
26+
<configuration>
27+
<source>${maven.compiler.source}</source>
28+
<target>${maven.compiler.source}</target>
29+
<encoding>${encoding}</encoding>
30+
</configuration>
31+
</plugin>
32+
</plugins>
33+
</build>
34+
35+
<licenses>
36+
<license>
37+
<name>The Apache Software License, Version 2.0</name>
38+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
39+
</license>
40+
</licenses>
41+
<developers>
42+
<developer>
43+
<name>shenwenbo</name>
44+
<email>wenboing.shen@gmail.com</email>
45+
</developer>
46+
</developers>
47+
<scm>
48+
<connection>scm:git:git@github.com:wenbo2018/WebS.git</connection>
49+
<developerConnection>scm:git:git@github.com:wenbo2018/WebS.git</developerConnection>
50+
<url>git@github.com:wenbo2018/WebS.git</url>
51+
</scm>
52+
<profiles>
53+
<profile>
54+
<id>release</id>
55+
<build>
56+
<plugins>
57+
<!-- Source -->
58+
<plugin>
59+
<groupId>org.apache.maven.plugins</groupId>
60+
<artifactId>maven-source-plugin</artifactId>
61+
<version>2.2.1</version>
62+
<executions>
63+
<execution>
64+
<phase>package</phase>
65+
<goals>
66+
<goal>jar-no-fork</goal>
67+
</goals>
68+
</execution>
69+
</executions>
70+
</plugin>
71+
<!-- Javadoc -->
72+
<plugin>
73+
<groupId>org.apache.maven.plugins</groupId>
74+
<artifactId>maven-javadoc-plugin</artifactId>
75+
<version>2.10.4</version>
76+
<executions>
77+
<execution>
78+
<phase>package</phase>
79+
<goals>
80+
<goal>jar</goal>
81+
</goals>
82+
</execution>
83+
</executions>
84+
</plugin>
85+
<!-- GPG -->
86+
<plugin>
87+
<groupId>org.apache.maven.plugins</groupId>
88+
<artifactId>maven-gpg-plugin</artifactId>
89+
<version>1.4</version>
90+
<executions>
91+
<execution>
92+
<id>sign-artifacts</id>
93+
<phase>verify</phase>
94+
<goals>
95+
<goal>sign</goal>
96+
</goals>
97+
</execution>
98+
</executions>
99+
</plugin>
100+
</plugins>
101+
</build>
102+
<distributionManagement>
103+
<snapshotRepository>
104+
<id>oss</id>
105+
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
106+
</snapshotRepository>
107+
<repository>
108+
<id>oss</id>
109+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
110+
</repository>
111+
</distributionManagement>
112+
</profile>
113+
</profiles>
114+
19115

20116
</project>

webs-core/src/main/java/com/github/wenbo2018/webs/core/InstanceFactory.java

Lines changed: 0 additions & 97 deletions
This file was deleted.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
package com.github.wenbo2018.webs.support;
2+
3+
/**
4+
* Created by shenwenbo on 2017/4/9.
5+
*/
6+
public interface HandlerMethodArgumentResolver {
7+
8+
Object resolveArgument();
9+
10+
}

webs-core/src/main/java/com/github/wenbo2018/webs/util/BeanUtils.java

Lines changed: 0 additions & 12 deletions
This file was deleted.

webs-core/src/main/java/com/github/wenbo2018/webs/util/ClassUtil.java

Lines changed: 0 additions & 80 deletions
This file was deleted.

0 commit comments

Comments
 (0)