Skip to content

Commit df627c5

Browse files
committed
release v0.5.0
1 parent 391a356 commit df627c5

File tree

2 files changed

+21
-5
lines changed

2 files changed

+21
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Usage/Import In Your Project
2525
----------------------------------
2626

2727
This library jmacaroons is available via Maven Central.
28-
Requires Java 1.8+
28+
Requires Java 1.11+
2929

3030
[![Maven Central](https://img.shields.io/maven-central/v/com.github.nitram509/jmacaroons.svg)](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.github.nitram509%22%20AND%20a%3A%22jmacaroons%22)
3131

@@ -35,13 +35,13 @@ Maven
3535
<dependency>
3636
<groupId>com.github.nitram509</groupId>
3737
<artifactId>jmacaroons</artifactId>
38-
<version>0.4.2</version>
38+
<version>0.5.0</version>
3939
</dependency>
4040
````
4141

4242
Gradle
4343
````groovy
44-
compile 'com.github.nitram509:jmacaroons:0.4.2'
44+
compile 'com.github.nitram509:jmacaroons:0.5.0'
4545
````
4646

4747

pom.xml

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.github.nitram509</groupId>
66
<artifactId>jmacaroons</artifactId>
7-
<version>0.5.0-SNAPSHOT</version>
7+
<version>0.5.0</version>
88
<packaging>jar</packaging>
99

1010
<name>${project.groupId}:${project.artifactId}</name>
@@ -160,7 +160,7 @@
160160
<plugin>
161161
<groupId>org.apache.maven.plugins</groupId>
162162
<artifactId>maven-release-plugin</artifactId>
163-
<version>2.5.3</version>
163+
<version>3.0.1</version>
164164
<configuration>
165165
<autoVersionSubmodules>true</autoVersionSubmodules>
166166
<useReleaseProfile>true</useReleaseProfile>
@@ -173,6 +173,14 @@
173173
<groupId>org.apache.maven.plugins</groupId>
174174
<artifactId>maven-source-plugin</artifactId>
175175
<version>3.3.0</version>
176+
<executions>
177+
<execution>
178+
<id>attach-sources</id>
179+
<goals>
180+
<goal>jar-no-fork</goal>
181+
</goals>
182+
</execution>
183+
</executions>
176184
</plugin>
177185

178186
<plugin>
@@ -183,6 +191,14 @@
183191
<excludePackageNames>com.neilalexander.jnacl</excludePackageNames>
184192
<source>8</source>
185193
</configuration>
194+
<executions>
195+
<execution>
196+
<id>attach-javadocs</id>
197+
<goals>
198+
<goal>jar</goal>
199+
</goals>
200+
</execution>
201+
</executions>
186202
</plugin>
187203

188204
<plugin>

0 commit comments

Comments
 (0)