Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gic-demo-base
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gic_demo
gic-demo-base
Commits
dece4be7
Commit
dece4be7
authored
Jun 10, 2019
by
朱瑞泽
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
暂定
parent
0ba1493d
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
27 additions
and
13 deletions
+27
-13
pom.xml
gic-demo-base-api/pom.xml
+0
-5
pom.xml
gic-demo-common/pom.xml
+0
-4
pom.xml
gic-demo-config/pom.xml
+0
-4
pom.xml
gic-demo-helper/pom.xml
+6
-0
DeployMain.java
...c/main/java/com/gic/demo/helper/generator/DeployMain.java
+21
-0
No files found.
gic-demo-base-api/pom.xml
View file @
dece4be7
...
...
@@ -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>
...
...
gic-demo-common/pom.xml
View file @
dece4be7
...
...
@@ -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>
...
...
gic-demo-config/pom.xml
View file @
dece4be7
...
...
@@ -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>
...
...
gic-demo-helper/pom.xml
View file @
dece4be7
...
...
@@ -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>
...
...
gic-demo-helper/src/main/java/com/gic/demo/helper/generator/DeployMain.java
0 → 100644
View file @
dece4be7
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
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment