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
332013af
Commit
332013af
authored
Nov 12, 2019
by
huangfusuper
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of git.byitgroup.com:liyuan/byit-myth-job into developer
parents
2c56f592
e92c9556
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
39 additions
and
2 deletions
+39
-2
pom.xml
byit-myth-core/pom.xml
+0
-2
pom.xml
byit-myth-executor/pom.xml
+7
-0
GatewayApplication.java
...ay/src/main/java/com/byit/gateway/GatewayApplication.java
+25
-0
pom.xml
pom.xml
+7
-0
No files found.
byit-myth-core/pom.xml
View file @
332013af
...
@@ -20,8 +20,6 @@
...
@@ -20,8 +20,6 @@
<dependency>
<dependency>
<groupId>
org.projectlombok
</groupId>
<groupId>
org.projectlombok
</groupId>
<artifactId>
lombok
</artifactId>
<artifactId>
lombok
</artifactId>
<version>
${lombok.version}
</version>
<scope>
provided
</scope>
</dependency>
</dependency>
</dependencies>
</dependencies>
...
...
byit-myth-executor/pom.xml
View file @
332013af
...
@@ -12,4 +12,10 @@
...
@@ -12,4 +12,10 @@
<artifactId>
byit-myth-executor
</artifactId>
<artifactId>
byit-myth-executor
</artifactId>
<dependencies>
<dependency>
<groupId>
org.projectlombok
</groupId>
<artifactId>
lombok
</artifactId>
</dependency>
</dependencies>
</project>
</project>
\ No newline at end of file
byit-myth-gateway/src/main/java/com/byit/gateway/GatewayApplication.java
0 → 100644
View file @
332013af
package
com
.
byit
.
gateway
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.autoconfigure.SpringBootApplication
;
import
org.springframework.cloud.netflix.zuul.EnableZuulProxy
;
/**
* @author Liyuan
* create date on 2019-11-12 15:21
* description:
* <p>
* 网关启动类
* </p>
* modified By
**/
@EnableZuulProxy
@SpringBootApplication
@Slf4j
public
class
GatewayApplication
{
public
static
void
main
(
String
[]
args
)
{
SpringApplication
.
run
(
GatewayApplication
.
class
,
args
);
log
.
info
(
"网关启动成功……"
);
}
}
pom.xml
View file @
332013af
...
@@ -64,6 +64,13 @@
...
@@ -64,6 +64,13 @@
<type>
pom
</type>
<type>
pom
</type>
<scope>
import
</scope>
<scope>
import
</scope>
</dependency>
</dependency>
<dependency>
<groupId>
org.projectlombok
</groupId>
<artifactId>
lombok
</artifactId>
<version>
${lombok.version}
</version>
<scope>
provided
</scope>
</dependency>
</dependencies>
</dependencies>
</dependencyManagement>
</dependencyManagement>
...
...
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