Skip to content

Commit

Permalink
Merge pull request #4 from IlyaLisov/#1
Browse files Browse the repository at this point in the history
#1 Init project
  • Loading branch information
IlyaLisov authored Jan 17, 2024
2 parents 8f80689 + 69c2121 commit 4a08b32
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/maven-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: maven-build
on:
pull_request:
branches: [ "*" ]

jobs:
maven:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
- uses: actions/cache@v3
with:
path: ~/.m2/repository
key: maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
maven-
- run: |
mvn clean install
45 changes: 45 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<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>
<groupId>io.github.ilyalisov</groupId>
<artifactId>jwt</artifactId>
<version>0.1.0</version>
<name>${project.groupId}:${project.artifactId}</name>
<url>https://github.com/ilyalisov/jwt/</url>
<inceptionYear>2024</inceptionYear>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<developers>
<developer>
<name>Ilya Lisov</name>
<email>ilya.lisov.yt@gmail.com</email>
</developer>
</developers>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/ilyalisov/jwt/issues</url>
</issueManagement>
<ciManagement>
<system>GitHub Actions</system>
<url>https://github.com/ilyalisov/jwt/actions</url>
</ciManagement>

<scm>
<connection>scm:git:git://github.com/ilyalisov/jwt.git</connection>
<developerConnection>scm:git:ssh://github.com:ilyalisov/jwt.git</developerConnection>
<url>https://github.com/ilyalisov/jwt/tree/main</url>
</scm>

<properties>
<java.version>17</java.version>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

</project>

0 comments on commit 4a08b32

Please sign in to comment.