-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
perf($oss-center): DDD modularized microservice
- Loading branch information
1 parent
4a827f4
commit 3f1b72b
Showing
41 changed files
with
462 additions
and
267 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<!-- Sub-module Basics --> | ||
<artifactId>oss-center-biz</artifactId> | ||
<name>Muscle and Fitness Server :: OSS Center - Biz</name> | ||
<description>Object Storage Service (OSS) Center for M&F.</description> | ||
<parent> | ||
<groupId>com.jmsoftware.maf</groupId> | ||
<artifactId>oss-center</artifactId> | ||
<version>0.0.8-SNAPSHOT</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>com.jmsoftware.maf</groupId> | ||
<artifactId>oss-center-domain</artifactId> | ||
</dependency> | ||
</dependencies> | ||
</project> |
1 change: 1 addition & 0 deletions
1
oss-center/oss-center-biz/src/main/java/com/jmsoftware/maf/osscenter/package-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
package com.jmsoftware.maf.osscenter; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,186 @@ | ||
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<!-- Sub-module Basics --> | ||
<artifactId>oss-center-bootstrap</artifactId> | ||
<name>Muscle and Fitness Server :: OSS Center - Bootstrap</name> | ||
<description>Object Storage Service (OSS) Center for M&F.</description> | ||
<parent> | ||
<groupId>com.jmsoftware.maf</groupId> | ||
<artifactId>oss-center</artifactId> | ||
<version>0.0.8-SNAPSHOT</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
|
||
<!-- Build Settings --> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-maven-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>build-info</id> | ||
<phase>compile</phase> | ||
<goals> | ||
<goal>build-info</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-pmd-plugin</artifactId> | ||
<version>${maven-pmd-plugin.version}</version> | ||
<configuration> | ||
<sourceEncoding>${project.build.sourceEncoding}</sourceEncoding> | ||
<targetJdk>${java.version}</targetJdk> | ||
<printFailingErrors>true</printFailingErrors> | ||
<rulesets> | ||
<ruleset>rulesets/java/ali-comment.xml</ruleset> | ||
<ruleset>rulesets/java/ali-concurrent.xml</ruleset> | ||
<ruleset>rulesets/java/ali-constant.xml</ruleset> | ||
<ruleset>rulesets/java/ali-exception.xml</ruleset> | ||
<ruleset>rulesets/java/ali-flowcontrol.xml</ruleset> | ||
<ruleset>rulesets/java/ali-naming.xml</ruleset> | ||
<ruleset>rulesets/java/ali-oop.xml</ruleset> | ||
<ruleset>rulesets/java/ali-orm.xml</ruleset> | ||
<ruleset>rulesets/java/ali-other.xml</ruleset> | ||
<ruleset>rulesets/java/ali-set.xml</ruleset> | ||
</rulesets> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<phase>verify</phase> | ||
<goals> | ||
<goal>check</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.alibaba.p3c</groupId> | ||
<artifactId>p3c-pmd</artifactId> | ||
<version>${p3c-pmd.version}</version> | ||
</dependency> | ||
</dependencies> | ||
</plugin> | ||
|
||
<!-- https://github.com/GoogleContainerTools/jib/blob/master/jib-maven-plugin/README.md --> | ||
<plugin> | ||
<groupId>com.google.cloud.tools</groupId> | ||
<artifactId>jib-maven-plugin</artifactId> | ||
<version>${jib-maven-plugin.version}</version> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.google.cloud.tools</groupId> | ||
<artifactId>jib-spring-boot-extension-maven</artifactId> | ||
<version>${jib-spring-boot-extension-maven.version}</version> | ||
</dependency> | ||
</dependencies> | ||
<executions> | ||
<!-- Bind `jib:dockerBuild` to a Maven lifecycle `verify`. Jib will build your image directly to a Docker daemon. | ||
<execution> | ||
<id>buildDockerImagePhase</id> | ||
<phase>verify</phase> | ||
<goals> | ||
<goal>dockerBuild</goal> | ||
</goals> | ||
</execution> --> | ||
<!-- Bind `jib:build` to a Maven lifecycle `install`. Jib will build and push image to image registry. --> | ||
<execution> | ||
<id>buildAndPushDockerImagePhase</id> | ||
<phase>install</phase> | ||
<goals> | ||
<goal>build</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<from> | ||
<!-- Don't use alpine or slim version, https://hub.docker.com/r/adoptopenjdk/openjdk11/tags?page=1&ordering=last_updated&name=jre-11 --> | ||
<image>adoptopenjdk/openjdk11:${adoptopenjdk11.tag}</image> | ||
</from> | ||
<to> | ||
<image>docker.io/ijohnnymiller/${project.parent.artifactId}.${project.artifactId}</image> | ||
<tags> | ||
<tag>${git.commit.id.abbrev}-${project.version}</tag> | ||
</tags> | ||
</to> | ||
<container> | ||
<!-- The root directory on the container where the app's contents are placed. --> | ||
<appRoot>/${project.artifactId}</appRoot> | ||
<jvmFlags> | ||
<jvmFlag>-Dfile.encoding=${project.build.sourceEncoding}</jvmFlag> | ||
</jvmFlags> | ||
<ports> | ||
<port>${oss-center.port}</port> | ||
</ports> | ||
<creationTime>USE_CURRENT_TIMESTAMP</creationTime> | ||
</container> | ||
<pluginExtensions> | ||
<pluginExtension> | ||
<implementation> | ||
com.google.cloud.tools.jib.maven.extension.springboot.JibSpringBootExtension | ||
</implementation> | ||
<properties> | ||
<excludeDevtools>true</excludeDevtools> | ||
</properties> | ||
</pluginExtension> | ||
</pluginExtensions> | ||
</configuration> | ||
</plugin> | ||
|
||
<!-- https://github.com/git-commit-id/git-commit-id-maven-plugin --> | ||
<plugin> | ||
<groupId>io.github.git-commit-id</groupId> | ||
<artifactId>git-commit-id-maven-plugin</artifactId> | ||
<version>5.0.0</version> | ||
<executions> | ||
<execution> | ||
<id>get-the-git-info</id> | ||
<goals> | ||
<goal>revision</goal> | ||
</goals> | ||
<phase>initialize</phase> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<generateGitPropertiesFile>true</generateGitPropertiesFile> | ||
<generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties | ||
</generateGitPropertiesFilename> | ||
<includeOnlyProperties> | ||
<includeOnlyProperty>^git.build.(time|version)$</includeOnlyProperty> | ||
<includeOnlyProperty>^git.commit.id.(abbrev|full)$</includeOnlyProperty> | ||
</includeOnlyProperties> | ||
<commitIdGenerationMode>full</commitIdGenerationMode> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<reporting> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jxr-plugin</artifactId> | ||
<version>2.3</version> | ||
</plugin> | ||
</plugins> | ||
</reporting> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>com.jmsoftware.maf</groupId> | ||
<artifactId>oss-center-web</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.jmsoftware.maf</groupId> | ||
<artifactId>oss-center-message</artifactId> | ||
</dependency> | ||
</dependencies> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
oss-center/oss-center-bootstrap/src/main/java/com/jmsoftware/maf/osscenter/package-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
package com.jmsoftware.maf.osscenter; |
Oops, something went wrong.