5 Commits

Author SHA1 Message Date
Sofiene BEN KHEMIS
0fc1816bb6 Update README.md 2021-06-02 14:40:43 +02:00
Sofiene BEN KHEMIS
a07bfe0c97 Update README.md 2021-06-02 14:39:22 +02:00
Sofiene BEN KHEMIS
bbedce169d Update buildspec.yml 2021-05-09 20:35:35 +02:00
Sofiene BEN KHEMIS
312b75fd66 Create buildspec.yml
add codebuild
2021-05-09 20:02:08 +02:00
Sofiene BEN KHEMIS
6d6dea54c7 Update README.md 2021-03-30 15:08:22 +02:00
5 changed files with 3 additions and 43 deletions

View File

@@ -1,31 +0,0 @@
name: SonarCloud
on:
push:
branches:
- beanstalk-java8
jobs:
build:
runs-on: ubuntu-16.04
steps:
- uses: actions/checkout@v1
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: '11'
- name: Cache SonarCloud packages
uses: actions/cache@v1
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Maven packages
uses: actions/cache@v1
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Analyze with SonarCloud
run: mvn -B verify sonar:sonar -Dsonar.projectKey=sofieneBK_hands-on-hexagonal-architecture-with-spring-boot -Dsonar.organization=sofienebk -Dsonar.host.url=https://sonarcloud.io -Dsonar.login=$SONAR_TOKEN
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

View File

@@ -4,3 +4,5 @@ Code for Hands-on Hexagonal Architecture With Spring Boot Tutorial
Application's architecture :
![](https://cdn-images-1.medium.com/max/800/1*mBp-JAaetosptDisZe1gPg.jpeg)
Full article: [Hands-on Hexagonal Architecture With Spring Boot](https://medium.com/javarevisited/hands-on-hexagonal-architecture-with-spring-boot-ca61f88bed8b)

View File

@@ -63,16 +63,6 @@
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>

View File

@@ -1 +0,0 @@
server.port=5000

View File

@@ -21,7 +21,7 @@
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<java.version>8</java.version>
<java.version>11</java.version>
</properties>
</project>