Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
S
SpringCloudAuthServer
Project
Project
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
xiachenqi
SpringCloudAuthServer
Commits
9eb4ba8a
Commit
9eb4ba8a
authored
Aug 22, 2019
by
gzt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
构建工程模块
parent
22b51d69
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
218 additions
and
5 deletions
+218
-5
pom.xml
app/pom.xml
+43
-0
AppApplication.java
app/src/main/java/com/yingxing/app/AppApplication.java
+13
-0
application.properties
app/src/main/resources/application.properties
+1
-0
AppApplicationTests.java
app/src/test/java/com/yingxing/app/AppApplicationTests.java
+5
-5
pom.xml
client/pom.xml
+53
-0
ClientApplication.java
...ain/java/com/yingxin/server/client/ClientApplication.java
+13
-0
application.properties
client/src/main/resources/application.properties
+1
-0
ClientApplicationTests.java
...ava/com/yingxin/server/client/ClientApplicationTests.java
+16
-0
pom.xml
resources/pom.xml
+43
-0
ResourcesApplication.java
...va/com/yingxin/server/resources/ResourcesApplication.java
+13
-0
application.properties
resources/src/main/resources/application.properties
+1
-0
ResourcesApplicationTests.java
...m/yingxin/server/resources/ResourcesApplicationTests.java
+16
-0
No files found.
app/pom.xml
0 → 100644
View file @
9eb4ba8a
<?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.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-parent
</artifactId>
<version>
2.1.7.RELEASE
</version>
<relativePath/>
<!-- lookup parent from repository -->
</parent>
<groupId>
com.yingxing
</groupId>
<artifactId>
app
</artifactId>
<version>
0.0.1-SNAPSHOT
</version>
<name>
app
</name>
<description>
app project for Spring Boot
</description>
<properties>
<java.version>
1.8
</java.version>
</properties>
<dependencies>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-web
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-test
</artifactId>
<scope>
test
</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
</plugin>
</plugins>
</build>
</project>
app/src/main/java/com/yingxing/app/AppApplication.java
0 → 100644
View file @
9eb4ba8a
package
com
.
yingxing
.
app
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.autoconfigure.SpringBootApplication
;
@SpringBootApplication
public
class
AppApplication
{
public
static
void
main
(
String
[]
args
)
{
SpringApplication
.
run
(
AppApplication
.
class
,
args
);
}
}
app/src/main/resources/application.properties
0 → 100644
View file @
9eb4ba8a
src/test/java/com/yingxin/springcloudauthserver/SpringCloudAuthServer
ApplicationTests.java
→
app/src/test/java/com/yingxing/app/App
ApplicationTests.java
View file @
9eb4ba8a
package
com
.
yingxin
.
springcloudauthserver
;
package
com
.
yingxin
g
.
app
;
import
org.junit.Test
;
import
org.junit.Test
;
import
org.junit.runner.RunWith
;
import
org.junit.runner.RunWith
;
...
@@ -7,10 +7,10 @@ import org.springframework.test.context.junit4.SpringRunner;
...
@@ -7,10 +7,10 @@ import org.springframework.test.context.junit4.SpringRunner;
@RunWith
(
SpringRunner
.
class
)
@RunWith
(
SpringRunner
.
class
)
@SpringBootTest
@SpringBootTest
public
class
SpringCloudAuthServer
ApplicationTests
{
public
class
App
ApplicationTests
{
@Test
@Test
public
void
contextLoads
()
{
public
void
contextLoads
()
{
}
}
}
}
client/pom.xml
0 → 100644
View file @
9eb4ba8a
<?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.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-parent
</artifactId>
<version>
2.1.7.RELEASE
</version>
<relativePath/>
<!-- lookup parent from repository -->
</parent>
<groupId>
com.yingxin.server
</groupId>
<artifactId>
client
</artifactId>
<version>
0.0.1-SNAPSHOT
</version>
<name>
client
</name>
<description>
client project for Spring Boot
</description>
<properties>
<java.version>
1.8
</java.version>
</properties>
<dependencies>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-web
</artifactId>
</dependency>
<dependency>
<groupId>
org.mybatis.spring.boot
</groupId>
<artifactId>
mybatis-spring-boot-starter
</artifactId>
<version>
2.1.0
</version>
</dependency>
<dependency>
<groupId>
mysql
</groupId>
<artifactId>
mysql-connector-java
</artifactId>
<scope>
runtime
</scope>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-test
</artifactId>
<scope>
test
</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
</plugin>
</plugins>
</build>
</project>
client/src/main/java/com/yingxin/server/client/ClientApplication.java
0 → 100644
View file @
9eb4ba8a
package
com
.
yingxin
.
server
.
client
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.autoconfigure.SpringBootApplication
;
@SpringBootApplication
public
class
ClientApplication
{
public
static
void
main
(
String
[]
args
)
{
SpringApplication
.
run
(
ClientApplication
.
class
,
args
);
}
}
client/src/main/resources/application.properties
0 → 100644
View file @
9eb4ba8a
client/src/test/java/com/yingxin/server/client/ClientApplicationTests.java
0 → 100644
View file @
9eb4ba8a
package
com
.
yingxin
.
server
.
client
;
import
org.junit.Test
;
import
org.junit.runner.RunWith
;
import
org.springframework.boot.test.context.SpringBootTest
;
import
org.springframework.test.context.junit4.SpringRunner
;
@RunWith
(
SpringRunner
.
class
)
@SpringBootTest
public
class
ClientApplicationTests
{
@Test
public
void
contextLoads
()
{
}
}
resources/pom.xml
0 → 100644
View file @
9eb4ba8a
<?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.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-parent
</artifactId>
<version>
2.1.7.RELEASE
</version>
<relativePath/>
<!-- lookup parent from repository -->
</parent>
<groupId>
com.yingxin.server
</groupId>
<artifactId>
resources
</artifactId>
<version>
0.0.1-SNAPSHOT
</version>
<name>
resources
</name>
<description>
resources project for Spring Boot
</description>
<properties>
<java.version>
1.8
</java.version>
</properties>
<dependencies>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-test
</artifactId>
<scope>
test
</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
</plugin>
</plugins>
</build>
</project>
resources/src/main/java/com/yingxin/server/resources/ResourcesApplication.java
0 → 100644
View file @
9eb4ba8a
package
com
.
yingxin
.
server
.
resources
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.autoconfigure.SpringBootApplication
;
@SpringBootApplication
public
class
ResourcesApplication
{
public
static
void
main
(
String
[]
args
)
{
SpringApplication
.
run
(
ResourcesApplication
.
class
,
args
);
}
}
resources/src/main/resources/application.properties
0 → 100644
View file @
9eb4ba8a
resources/src/test/java/com/yingxin/server/resources/ResourcesApplicationTests.java
0 → 100644
View file @
9eb4ba8a
package
com
.
yingxin
.
server
.
resources
;
import
org.junit.Test
;
import
org.junit.runner.RunWith
;
import
org.springframework.boot.test.context.SpringBootTest
;
import
org.springframework.test.context.junit4.SpringRunner
;
@RunWith
(
SpringRunner
.
class
)
@SpringBootTest
public
class
ResourcesApplicationTests
{
@Test
public
void
contextLoads
()
{
}
}
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