Skip to content

Commit 89113a0

Browse files
author
per
committed
Release 0.5.0
1 parent c0af6f9 commit 89113a0

2 files changed

Lines changed: 61 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ To use it, add the following dependency to your maven pom.xml (or equivalent for
3737
<dependency>
3838
<groupId>se.alipsa</groupId>
3939
<artifactId>journo</artifactId>
40-
<version>1.0.0</version>
40+
<version>0.5.0</version>
4141
</dependency>
4242
```
4343

pom.xml

Lines changed: 60 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@
66

77
<groupId>se.alipsa</groupId>
88
<artifactId>journo</artifactId>
9-
<version>1.0.0-SNAPSHOT</version>
9+
<version>0.5.0</version>
1010
<packaging>jar</packaging>
1111

12+
<name>Journo</name>
13+
<description>Create PDF documents from Freemarker markup</description>
1214
<url>https://github.com/Alipsa/journo</url>
1315

1416
<licenses>
@@ -190,4 +192,61 @@
190192
</plugin>
191193
</plugins>
192194
</build>
195+
196+
<distributionManagement>
197+
<snapshotRepository>
198+
<id>ossrh</id>
199+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
200+
</snapshotRepository>
201+
<repository>
202+
<id>ossrh</id>
203+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
204+
</repository>
205+
</distributionManagement>
206+
207+
<reporting>
208+
<plugins>
209+
<plugin>
210+
<groupId>org.apache.maven.plugins</groupId>
211+
<artifactId>maven-project-info-reports-plugin</artifactId>
212+
<version>3.5.0</version>
213+
</plugin>
214+
</plugins>
215+
</reporting>
216+
217+
<profiles>
218+
<profile>
219+
<id>release</id>
220+
<build>
221+
<plugins>
222+
<plugin>
223+
<groupId>org.apache.maven.plugins</groupId>
224+
<artifactId>maven-gpg-plugin</artifactId>
225+
<version>3.1.0</version>
226+
<executions>
227+
<execution>
228+
<id>sign-artifacts</id>
229+
<phase>verify</phase>
230+
<goals>
231+
<goal>sign</goal>
232+
</goals>
233+
</execution>
234+
</executions>
235+
</plugin>
236+
<plugin>
237+
<!-- See https://central.sonatype.org/pages/apache-maven.html for details -->
238+
<groupId>org.sonatype.plugins</groupId>
239+
<artifactId>nexus-staging-maven-plugin</artifactId>
240+
<version>1.6.13</version>
241+
<extensions>true</extensions>
242+
<configuration>
243+
<serverId>ossrh</serverId>
244+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
245+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
246+
</configuration>
247+
</plugin>
248+
</plugins>
249+
</build>
250+
</profile>
251+
</profiles>
193252
</project>

0 commit comments

Comments
 (0)