Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
polysoft-nafmii
/
polysoft-parent
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit bc6bda0a
authored
Apr 29, 2021
by
孙长庆
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge remote-tracking branch 'origin/dev' into dev
2 parents
9f712d1f
1534ea2a
Show whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
20 additions
and
101 deletions
nafmii-admin/pom.xml
nafmii-admin/src/test/java/org/nafmii/admin/NafmiiAdminApplicationTests.java
nafmii-app/pom.xml
nafmii-app/src/test/java/org/nafmii/NafmiiAppApplicationTests.java
nafmii-eureka/pom.xml
nafmii-eureka/src/test/java/org/nafmii/nafmiieu/NafmiiEuApplicationTests.java
nafmii-gateway/src/main/java/org/nafmii/gateway/config/AccessFilter.java
nafmii-mbg/pom.xml
nafmii-mbg/src/test/java/org/nafmii/nafmiimbg/NafmiiMbgApplicationTests.java
nafmii-quartz/pom.xml
nafmii-quartz/src/test/java/org/nafmii/nafmiiquartz/NafmiiQuartzApplicationTests.java
pom.xml
nafmii-admin/pom.xml
View file @
bc6bda0
...
...
@@ -21,11 +21,6 @@
</properties>
<dependencies>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-test
</artifactId>
<scope>
test
</scope>
</dependency>
<!--集成SpringBoot Admin监控-->
<!-- https://mvnrepository.com/artifact/de.codecentric/spring-boot-admin-starter-server -->
<dependency>
...
...
@@ -53,6 +48,7 @@
<dependency>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-starter-zipkin
</artifactId>
<version>
2.2.4.RELEASE
</version>
</dependency>
</dependencies>
<dependencyManagement>
...
...
@@ -71,6 +67,16 @@
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
<configuration>
<includeSystemScope>
true
</includeSystemScope>
</configuration>
<executions>
<execution>
<goals>
<goal>
repackage
</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
...
...
nafmii-admin/src/test/java/org/nafmii/admin/NafmiiAdminApplicationTests.java
deleted
100644 → 0
View file @
9f712d1
package
org
.
nafmii
.
admin
;
import
org.junit.jupiter.api.Test
;
import
org.springframework.boot.test.context.SpringBootTest
;
@SpringBootTest
class
NafmiiAdminApplicationTests
{
@Test
void
contextLoads
()
{
}
}
nafmii-app/pom.xml
View file @
bc6bda0
...
...
@@ -22,11 +22,6 @@
<dependencies>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-test
</artifactId>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
org.nafmii
</groupId>
<artifactId>
nafmii-common
</artifactId>
<version>
0.0.1-SNAPSHOT
</version>
...
...
@@ -46,6 +41,7 @@
<dependency>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-starter-zipkin
</artifactId>
<version>
2.2.4.RELEASE
</version>
</dependency>
</dependencies>
<dependencyManagement>
...
...
@@ -65,13 +61,15 @@
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
<configuration>
<excludes>
<exclude>
<groupId>
org.projectlombok
</groupId>
<artifactId>
lombok
</artifactId>
</exclude>
</excludes>
<includeSystemScope>
true
</includeSystemScope>
</configuration>
<executions>
<execution>
<goals>
<goal>
repackage
</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
...
...
nafmii-app/src/test/java/org/nafmii/NafmiiAppApplicationTests.java
deleted
100644 → 0
View file @
9f712d1
package
org
.
nafmii
;
import
org.junit.jupiter.api.Test
;
import
org.springframework.boot.test.context.SpringBootTest
;
@SpringBootTest
class
NafmiiAppApplicationTests
{
@Test
void
contextLoads
()
{
}
}
nafmii-eureka/pom.xml
View file @
bc6bda0
...
...
@@ -21,12 +21,6 @@
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-starter-netflix-eureka-server
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-test
</artifactId>
<scope>
test
</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
...
...
nafmii-eureka/src/test/java/org/nafmii/nafmiieu/NafmiiEuApplicationTests.java
deleted
100644 → 0
View file @
9f712d1
package
org
.
nafmii
.
nafmiieu
;
import
org.junit.jupiter.api.Test
;
import
org.springframework.boot.test.context.SpringBootTest
;
@SpringBootTest
class
NafmiiEuApplicationTests
{
@Test
void
contextLoads
()
{
}
}
nafmii-gateway/src/main/java/org/nafmii/gateway/config/AccessFilter.java
View file @
bc6bda0
nafmii-mbg/pom.xml
View file @
bc6bda0
...
...
@@ -22,11 +22,6 @@
<artifactId>
spring-boot-starter-web
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-test
</artifactId>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
org.nafmii
</groupId>
<artifactId>
nafmii-common
</artifactId>
<version>
0.0.1-SNAPSHOT
</version>
...
...
nafmii-mbg/src/test/java/org/nafmii/nafmiimbg/NafmiiMbgApplicationTests.java
deleted
100644 → 0
View file @
9f712d1
package
org
.
nafmii
.
nafmiimbg
;
import
org.junit.jupiter.api.Test
;
import
org.springframework.boot.test.context.SpringBootTest
;
@SpringBootTest
class
NafmiiMbgApplicationTests
{
@Test
void
contextLoads
()
{
}
}
nafmii-quartz/pom.xml
View file @
bc6bda0
...
...
@@ -20,11 +20,6 @@
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-test
</artifactId>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-jdbc
</artifactId>
</dependency>
<!--quartz定时调度依赖-->
...
...
nafmii-quartz/src/test/java/org/nafmii/nafmiiquartz/NafmiiQuartzApplicationTests.java
deleted
100644 → 0
View file @
9f712d1
package
org
.
nafmii
.
nafmiiquartz
;
import
org.junit.jupiter.api.Test
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Qualifier
;
import
org.springframework.boot.test.context.SpringBootTest
;
import
org.springframework.jdbc.core.JdbcTemplate
;
@SpringBootTest
class
NafmiiQuartzApplicationTests
{
@Test
void
contextLoads
()
{
}
}
pom.xml
View file @
bc6bda0
...
...
@@ -25,7 +25,6 @@
<module>
nafmii-quartz
</module>
<module>
nafmii-app
</module>
<module>
nafmii-mbg
</module>
<module>
nafmii-zipkin
</module>
</modules>
</project>
Write
Preview
Markdown
is supported
Attach a file
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 post a comment