Skip to content

Commit

Permalink
Update pom passenger service, add github action
Browse files Browse the repository at this point in the history
  • Loading branch information
XD-cods committed Feb 5, 2025
1 parent 29d5d41 commit 2cb57c0
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 16 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: checkstyle check
run-name: ${{ github.actor }}
on: [push]
jobs:
Explore-GitHub-Actions:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4

- name: run checkstyle
run: mvn checkstyle:check
31 changes: 15 additions & 16 deletions passenger-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@
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>3.4.1</version>
<relativePath/>
<groupId>com.vlad.kuzhyr</groupId>
<artifactId>Cab-aggregator</artifactId>
<version>0.0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>com.vlad.kuzhyr</groupId>
<artifactId>passenger-service</artifactId>
<version>0.0.1</version>
<name>passenger-service</name>
Expand Down Expand Up @@ -48,17 +47,6 @@
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct</artifactId>
<version>${mapstruct.version}</version>
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>${mapstruct.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
Expand All @@ -78,6 +66,17 @@
<artifactId>springdoc-openapi-starter-webmvc-api</artifactId>
<version>${springdoc-openapi-starter-webmvc-api.version}</version>
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct</artifactId>
<version>${mapstruct.version}</version>
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>${mapstruct.version}</version>
<scope>provided</scope>
</dependency>

</dependencies>
<dependencyManagement>
Expand Down

0 comments on commit 2cb57c0

Please sign in to comment.