Commit dece4be7 by 朱瑞泽

暂定

parent 0ba1493d
......@@ -23,7 +23,6 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
......@@ -45,10 +44,6 @@
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
......
......@@ -188,10 +188,6 @@
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
......
......@@ -49,10 +49,6 @@
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
......
......@@ -48,6 +48,12 @@
<artifactId>mysql-connector-java</artifactId>
</dependency>
<dependency>
<groupId>com.gic</groupId>
<artifactId>gic.deploy.sdk</artifactId>
<version>3.0-SNAPSHOT</version>
</dependency>
</dependencies>
<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