Skip to content

Commit

Permalink
Include pom.xml in release jar
Browse files Browse the repository at this point in the history
  • Loading branch information
john-shaffer committed Nov 4, 2022
1 parent 2d7d87b commit ad3d1d1
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,5 @@
/target
/classes
/checkouts
pom.xml
pom.xml.asc
*.jar
*.class
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Unreleased

## v1.1.0 (2022-11-04)

- Include `pom.xml` in release jar

## v1.0.0 (2022-11-04)

- [#1](https://github.com/staticweb-io/rate-limit/issues/1) Fix error when quota is exhausted. @rgm, @john-shaffer
26 changes: 26 additions & 0 deletions template/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?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>
<name>rate-limit</name>
<description>Ring middleware for applying rate-limits to handlers.</description>
<url>https://github.com/staticweb-io/rate-limit</url>
<licenses>
<license>
<name>Eclipse Public License</name>
<url>http://www.eclipse.org/legal/epl-v10.html</url>
</license>
</licenses>
<developers>
<developer>
<name>Lauri Pesonen</name>
</developer>
<developer>
<name>John Shaffer</name>
</developer>
</developers>
<scm>
<url>https://github.com/staticweb-io/rate-limit</url>
<connection>scm:git:git://github.com/staticweb-io/rate-limit.git</connection>
<developerConnection>scm:git:ssh://[email protected]/staticweb-io/rate-limit.git</developerConnection>
</scm>
</project>

0 comments on commit ad3d1d1

Please sign in to comment.