Skip to content

Commit

Permalink
Add license to pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
roman-rudakov committed Feb 29, 2024
1 parent ee56609 commit 38072e3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: Code checks

on:
push:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: Release

on:
push:
Expand All @@ -14,7 +14,7 @@ jobs:
cli: 'latest'
bb: 'latest'

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 Adgoji
Copyright (c) 2024 Adgoji

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
8 changes: 7 additions & 1 deletion build.clj
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,13 @@
:scm {:tag version
:connection (str "scm:git:git://github.com/adgoji/mollie")
:developerConnection (str "scm:git:ssh://[email protected]:adgoji/mollie.git")
:url "https://github.com/adgoji/mollie"}})
:url "https://github.com/adgoji/mollie"}
:pom-data [[:licenses
[:license
[:name "MIT"]
[:url "https://opensource.org/license/mit/"]
[:distribution "repo"]
[:comments "The MIT License"]]]]})
(println "Copy sources and resources")
(b/copy-dir {:src-dirs ["src" "spec"]
:target-dir class-dir})
Expand Down

0 comments on commit 38072e3

Please sign in to comment.