Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
schbrain-archetype
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tools
schbrain-archetype
Commits
7d5c4c21
Commit
7d5c4c21
authored
Jul 09, 2023
by
liaozan
🏀
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add all starters to archetype
parent
4d330e8f
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
29 additions
and
17 deletions
+29
-17
src/main/resources/archetype-resources/__gitignore__
src/main/resources/archetype-resources/__gitignore__
+2
-1
src/main/resources/archetype-resources/__subModuleNamePrefix__-api-impl/pom.xml
...hetype-resources/__subModuleNamePrefix__-api-impl/pom.xml
+1
-1
src/main/resources/archetype-resources/__subModuleNamePrefix__-api/pom.xml
...s/archetype-resources/__subModuleNamePrefix__-api/pom.xml
+1
-1
src/main/resources/archetype-resources/__subModuleNamePrefix__-common/pom.xml
...rchetype-resources/__subModuleNamePrefix__-common/pom.xml
+1
-1
src/main/resources/archetype-resources/__subModuleNamePrefix__-dal/pom.xml
...s/archetype-resources/__subModuleNamePrefix__-dal/pom.xml
+1
-1
src/main/resources/archetype-resources/__subModuleNamePrefix__-facade/pom.xml
...rchetype-resources/__subModuleNamePrefix__-facade/pom.xml
+17
-1
src/main/resources/archetype-resources/__subModuleNamePrefix__-service/pom.xml
...chetype-resources/__subModuleNamePrefix__-service/pom.xml
+1
-1
src/main/resources/archetype-resources/__subModuleNamePrefix__-starter/pom.xml
...chetype-resources/__subModuleNamePrefix__-starter/pom.xml
+1
-1
src/main/resources/archetype-resources/__subModuleNamePrefix__-starter/src/main/java/Application.java
...ModuleNamePrefix__-starter/src/main/java/Application.java
+1
-1
src/main/resources/archetype-resources/__subModuleNamePrefix__-starter/src/main/resources/application.yaml
...eNamePrefix__-starter/src/main/resources/application.yaml
+1
-1
src/main/resources/archetype-resources/__subModuleNamePrefix__-starter/src/test/java/ApplicationTest.java
...leNamePrefix__-starter/src/test/java/ApplicationTest.java
+1
-1
src/main/resources/archetype-resources/__subModuleNamePrefix__-starter/src/test/resources/application.yaml
...eNamePrefix__-starter/src/test/resources/application.yaml
+0
-5
src/main/resources/archetype-resources/__subModuleNamePrefix__-web/pom.xml
...s/archetype-resources/__subModuleNamePrefix__-web/pom.xml
+1
-1
No files found.
src/main/resources/archetype-resources/__gitignore__
View file @
7d5c4c21
...
...
@@ -18,6 +18,7 @@ target/
*.ipr
*.iml
*.iws
.fastRequest/
# temp ignore
*.log*
...
...
@@ -31,4 +32,4 @@ target/
Thumbs.db
# log
logs
\ No newline at end of file
logs
src/main/resources/archetype-resources/__subModuleNamePrefix__-api-impl/pom.xml
View file @
7d5c4c21
...
...
@@ -28,4 +28,4 @@
</dependency>
</dependencies>
</project>
\ No newline at end of file
</project>
src/main/resources/archetype-resources/__subModuleNamePrefix__-api/pom.xml
View file @
7d5c4c21
...
...
@@ -20,4 +20,4 @@
</dependency>
</dependencies>
</project>
\ No newline at end of file
</project>
src/main/resources/archetype-resources/__subModuleNamePrefix__-common/pom.xml
View file @
7d5c4c21
...
...
@@ -20,4 +20,4 @@
</dependency>
</dependencies>
</project>
\ No newline at end of file
</project>
src/main/resources/archetype-resources/__subModuleNamePrefix__-dal/pom.xml
View file @
7d5c4c21
...
...
@@ -28,4 +28,4 @@
</dependency>
</dependencies>
</project>
\ No newline at end of file
</project>
src/main/resources/archetype-resources/__subModuleNamePrefix__-facade/pom.xml
View file @
7d5c4c21
...
...
@@ -30,6 +30,22 @@
<groupId>
com.schbrain.framework
</groupId>
<artifactId>
dubbo-spring-boot-starter
</artifactId>
</dependency>
<dependency>
<groupId>
com.schbrain.framework
</groupId>
<artifactId>
elasticsearch-spring-boot-starter
</artifactId>
</dependency>
<dependency>
<groupId>
com.schbrain.framework
</groupId>
<artifactId>
kafka-spring-boot-starter
</artifactId>
</dependency>
<dependency>
<groupId>
com.schbrain.framework
</groupId>
<artifactId>
oss-spring-boot-starter
</artifactId>
</dependency>
<dependency>
<groupId>
com.schbrain.framework
</groupId>
<artifactId>
xxl-job-spring-boot-starter
</artifactId>
</dependency>
</dependencies>
</project>
\ No newline at end of file
</project>
src/main/resources/archetype-resources/__subModuleNamePrefix__-service/pom.xml
View file @
7d5c4c21
...
...
@@ -24,4 +24,4 @@
</dependency>
</dependencies>
</project>
\ No newline at end of file
</project>
src/main/resources/archetype-resources/__subModuleNamePrefix__-starter/pom.xml
View file @
7d5c4c21
...
...
@@ -54,4 +54,4 @@
</plugins>
</build>
</project>
\ No newline at end of file
</project>
src/main/resources/archetype-resources/__subModuleNamePrefix__-starter/src/main/java/Application.java
View file @
7d5c4c21
...
...
@@ -10,4 +10,4 @@ public class Application {
SpringApplication
.
run
(
Application
.
class
,
args
);
}
}
\ No newline at end of file
}
src/main/resources/archetype-resources/__subModuleNamePrefix__-starter/src/main/resources/application.yaml
View file @
7d5c4c21
spring
:
application
:
name
:
${rootArtifactId}
\ No newline at end of file
name
:
${rootArtifactId}
src/main/resources/archetype-resources/__subModuleNamePrefix__-starter/src/test/java/ApplicationTest.java
View file @
7d5c4c21
...
...
@@ -20,4 +20,4 @@ public class ApplicationTest {
log
.
info
(
"application started"
);
}
}
\ No newline at end of file
}
src/main/resources/archetype-resources/__subModuleNamePrefix__-starter/src/test/resources/application.yaml
View file @
7d5c4c21
spring
:
application
:
name
:
${rootArtifactId}
profiles
:
active
:
dev
apollo
:
bootstrap
:
namespaces
:
application,jdbc-common,redis-common
\ No newline at end of file
src/main/resources/archetype-resources/__subModuleNamePrefix__-web/pom.xml
View file @
7d5c4c21
...
...
@@ -28,4 +28,4 @@
</dependency>
</dependencies>
</project>
\ No newline at end of file
</project>
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