-
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.
- Loading branch information
Showing
295 changed files
with
3,185 additions
and
2,665 deletions.
There are no files selected for viewing
Binary file not shown.
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.zip | ||
wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar | ||
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.4/apache-maven-3.8.4-bin.zip | ||
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar |
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,22 @@ | ||
<?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>api-gateway-biz</artifactId> | ||
<name>Muscle and Fitness Server :: API Gateway - Biz</name> | ||
<description>API Gateway for Muscle and Fitness microservices.</description> | ||
<parent> | ||
<groupId>com.jmsoftware.maf</groupId> | ||
<artifactId>api-gateway</artifactId> | ||
<version>0.0.8</version> | ||
</parent> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>com.jmsoftware.maf</groupId> | ||
<artifactId>api-gateway-domain</artifactId> | ||
</dependency> | ||
</dependencies> | ||
</project> |
1 change: 1 addition & 0 deletions
1
api-gateway/api-gateway-biz/src/main/java/com/jmsoftware/maf/apigateway/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.apigateway; |
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...JwtReactiveAuthenticationManagerImpl.java → ...JwtReactiveAuthenticationManagerImpl.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
2 changes: 1 addition & 1 deletion
2
...eServerSecurityContextRepositoryImpl.java → ...eServerSecurityContextRepositoryImpl.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
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
File renamed without changes.
1 change: 1 addition & 0 deletions
1
...ay/api-gateway-biz/src/main/java/com/jmsoftware/maf/apigateway/security/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.apigateway.security; |
Empty file.
1 change: 1 addition & 0 deletions
1
api-gateway/api-gateway-biz/src/test/java/com/jmsoftware/maf/apigateway/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.apigateway; |
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,183 @@ | ||
<?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>api-gateway-bootstrap</artifactId> | ||
<name>Muscle and Fitness Server :: API Gateway - Bootstrap</name> | ||
<description>API Gateway for Muscle and Fitness microservices.</description> | ||
<parent> | ||
<groupId>com.jmsoftware.maf</groupId> | ||
<artifactId>api-gateway</artifactId> | ||
<version>0.0.8</version> | ||
</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.baseArtifactId}.${project.parent.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.parent.artifactId}</appRoot> | ||
<jvmFlags> | ||
<jvmFlag>-Dfile.encoding=${project.build.sourceEncoding}</jvmFlag> | ||
</jvmFlags> | ||
<ports> | ||
<port>${api-gateway.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>api-gateway-web</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.jmsoftware.maf</groupId> | ||
<artifactId>api-gateway-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
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
Oops, something went wrong.
84a03e2
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tweeted: