Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
byit-myth-job
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
liyuan
byit-myth-job
Commits
bc0e7ffe
Commit
bc0e7ffe
authored
Mar 13, 2020
by
guominglei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
打包时将依赖jar包打进去并指定打包的名称
parent
70b3924b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
71 additions
and
1 deletion
+71
-1
pom.xml
byit-myth-executor/myth-executor-server/pom.xml
+68
-1
pom.xml
byit-myth-gateway/pom.xml
+1
-0
pom.xml
byit-myth-register/myth-register-server/pom.xml
+2
-0
No files found.
byit-myth-executor/myth-executor-server/pom.xml
View file @
bc0e7ffe
...
...
@@ -39,8 +39,74 @@
<version>
1.0-SNAPSHOT
</version>
</dependency>
</dependencies>
<build>
</dependencies>
<finalName>
${project.artifactId}
</finalName>
<plugins>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
<configuration>
<!-- 指定SpringBoot程序的main函数入口类 -->
<mainClass>
com.byit.ExecutorServiceApplication
</mainClass>
</configuration>
<executions>
<execution>
<goals>
<goal>
repackage
</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>
maven-compiler-plugin
</artifactId>
<configuration>
<source>
1.8
</source>
<target>
1.8
</target>
<encoding>
UTF-8
</encoding>
<compilerArguments>
<!-- 打包本地jar包 -->
<extdirs>
${project.basedir}/lib
</extdirs>
</compilerArguments>
</configuration>
</plugin>
<plugin>
<groupId>
org.mybatis.generator
</groupId>
<artifactId>
mybatis-generator-maven-plugin
</artifactId>
<version>
1.3.5
</version>
<dependencies>
<dependency>
<groupId>
mysql
</groupId>
<artifactId>
mysql-connector-java
</artifactId>
<version>
5.1.44
</version>
</dependency>
<dependency>
<groupId>
org.mybatis.spring.boot
</groupId>
<artifactId>
mybatis-spring-boot-starter
</artifactId>
<version>
1.2.0
</version>
</dependency>
<dependency>
<groupId>
com.byit
</groupId>
<artifactId>
byit-mybatis-plugin
</artifactId>
<version>
1.0.0-SNAPSHOT
</version>
</dependency>
</dependencies>
<configuration>
<configurationFile>
${basedir}/src/main/resources/Generator-config.xml
</configurationFile>
<verbose>
true
</verbose>
<overwrite>
true
</overwrite>
<skip>
false
</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>
\ No newline at end of file
byit-myth-gateway/pom.xml
View file @
bc0e7ffe
...
...
@@ -48,6 +48,7 @@
<build>
<finalName>
${project.artifactId}
</finalName>
<plugins>
<plugin>
<groupId>
org.springframework.boot
</groupId>
...
...
byit-myth-register/myth-register-server/pom.xml
View file @
bc0e7ffe
...
...
@@ -61,6 +61,8 @@
</dependencies>
<build>
<finalName>
${project.artifactId}
</finalName>
<plugins>
<plugin>
<groupId>
org.springframework.boot
</groupId>
...
...
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