Commit dece4be7 by 朱瑞泽

暂定

parent 0ba1493d
...@@ -23,7 +23,6 @@ ...@@ -23,7 +23,6 @@
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
<artifactId>junit</artifactId> <artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
...@@ -45,10 +44,6 @@ ...@@ -45,10 +44,6 @@
<target>${maven.compiler.target}</target> <target>${maven.compiler.target}</target>
</configuration> </configuration>
</plugin> </plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
</plugin>
</plugins> </plugins>
</build> </build>
......
...@@ -188,10 +188,6 @@ ...@@ -188,10 +188,6 @@
<target>${maven.compiler.target}</target> <target>${maven.compiler.target}</target>
</configuration> </configuration>
</plugin> </plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
</plugin>
</plugins> </plugins>
</build> </build>
......
...@@ -49,10 +49,6 @@ ...@@ -49,10 +49,6 @@
<target>${maven.compiler.target}</target> <target>${maven.compiler.target}</target>
</configuration> </configuration>
</plugin> </plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
</plugin>
</plugins> </plugins>
</build> </build>
......
...@@ -48,6 +48,12 @@ ...@@ -48,6 +48,12 @@
<artifactId>mysql-connector-java</artifactId> <artifactId>mysql-connector-java</artifactId>
</dependency> </dependency>
<dependency>
<groupId>com.gic</groupId>
<artifactId>gic.deploy.sdk</artifactId>
<version>3.0-SNAPSHOT</version>
</dependency>
</dependencies> </dependencies>
<build> <build>
......
package com.gic.demo.helper.generator;
import com.gic.deploy.DeployHelper;
import com.gic.deploy.config.DeployType;
/**
* 部署工具
*
* @author zhurz
*/
public class DeployMain {
public static void main(String[] args) {
String deployVersion = "1.00";
boolean isWindows = true;
DeployType deployType = DeployType.PROD;
String apiProjectPath = "X:\\XXXX\\gic-demo-project-api";
DeployHelper.getInstance().deployApi(apiProjectPath, deployType, deployVersion, isWindows);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment