Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
zhoujh@polysoft.com.cn
/
nafmii-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 32fed297
authored
Apr 21, 2021
by
“lxy”
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
app
1 parent
7082da01
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
129 additions
and
0 deletions
nafmii-app/.gitignore
nafmii-app/pom.xml
nafmii-app/src/main/java/org/nafmii/NafmiiAppApplication.java
nafmii-app/src/main/resources/application.properties
nafmii-app/src/test/java/org/nafmii/NafmiiAppApplicationTests.java
nafmii-app/.gitignore
0 → 100644
View file @
32fed29
HELP.md
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/
### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr
### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
!**/src/main/**/build/
!**/src/test/**/build/
### VS Code ###
.vscode/
nafmii-app/pom.xml
0 → 100644
View file @
32fed29
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<parent>
<groupId>
org.nafmii
</groupId>
<artifactId>
nafmii-parent
</artifactId>
<version>
0.0.1-SNAPSHOT
</version>
</parent>
<groupId>
org.nafmii
</groupId>
<artifactId>
nafmii-app
</artifactId>
<version>
0.0.1-SNAPSHOT
</version>
<name>
nafmii-app
</name>
<description>
Demo project for Spring Boot
</description>
<properties>
<java.version>
1.8
</java.version>
<spring-cloud.version>
2020.0.2
</spring-cloud.version>
</properties>
<dependencies>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-web
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-starter-openfeign
</artifactId>
</dependency>
<dependency>
<groupId>
org.projectlombok
</groupId>
<artifactId>
lombok
</artifactId>
<optional>
true
</optional>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-test
</artifactId>
<scope>
test
</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-dependencies
</artifactId>
<version>
${spring-cloud.version}
</version>
<type>
pom
</type>
<scope>
import
</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
<configuration>
<excludes>
<exclude>
<groupId>
org.projectlombok
</groupId>
<artifactId>
lombok
</artifactId>
</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>
nafmii-app/src/main/java/org/nafmii/NafmiiAppApplication.java
0 → 100644
View file @
32fed29
package
org
.
nafmii
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.autoconfigure.SpringBootApplication
;
@SpringBootApplication
public
class
NafmiiAppApplication
{
public
static
void
main
(
String
[]
args
)
{
SpringApplication
.
run
(
NafmiiAppApplication
.
class
,
args
);
}
}
nafmii-app/src/main/resources/application.properties
0 → 100644
View file @
32fed29
nafmii-app/src/test/java/org/nafmii/NafmiiAppApplicationTests.java
0 → 100644
View file @
32fed29
package
org
.
nafmii
;
import
org.junit.jupiter.api.Test
;
import
org.springframework.boot.test.context.SpringBootTest
;
@SpringBootTest
class
NafmiiAppApplicationTests
{
@Test
void
contextLoads
()
{
}
}
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