Skip to content

Commit

Permalink
# rename package name
Browse files Browse the repository at this point in the history
  • Loading branch information
ktdynamic committed Jan 7, 2019
1 parent f18c980 commit 5893478
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
7 changes: 5 additions & 2 deletions http-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,19 @@
<parent>
<artifactId>netty-proxy</artifactId>
<groupId>com.zkdcloud</groupId>
<version>1.0</version>
<version>1.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<modelVersion>4.0.0</modelVersion>
<artifactId>http-server</artifactId>
<version>1.0.0</version>

<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<finalName>http-proxy-${version}-release</finalName>
<archive>
<manifest>
<mainClass>com.zkdcloud.proxy.http.ServerStart</mainClass>
Expand All @@ -24,6 +26,7 @@
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
<executions>
<execution>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.zkdcloud</groupId>
<artifactId>netty-proxy</artifactId>
<version>1.0</version>
<version>1.0.0</version>
<packaging>pom</packaging>

<modules>
Expand Down
6 changes: 4 additions & 2 deletions socks5-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,19 @@
<parent>
<groupId>com.zkdcloud</groupId>
<artifactId>netty-proxy</artifactId>
<version>1.0</version>
<version>1.0.0</version>
</parent>

<artifactId>socks5-server</artifactId>
<modelVersion>4.0.0</modelVersion>
<version>1.0</version>
<version>1.0.0</version>

<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<finalName>socks5-proxy-${version}-release</finalName>
<archive>
<manifest>
<mainClass>com.zkdcloud.proxy.socks5.ServerStart</mainClass>
Expand All @@ -26,6 +27,7 @@
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
<executions>
<execution>
Expand Down

0 comments on commit 5893478

Please sign in to comment.