Skip to content

Commit fd72df7

Browse files
committed
Prepare for 1.5.0 release.
1 parent 513bebe commit fd72df7

File tree

1 file changed

+30
-49
lines changed

1 file changed

+30
-49
lines changed

pom.xml

Lines changed: 30 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<artifactId>jfreechart</artifactId>
1212
<groupId>org.jfree</groupId>
13-
<version>1.5.0-SNAPSHOT</version>
13+
<version>1.5.0</version>
1414
<packaging>jar</packaging>
1515

1616
<organization>
@@ -53,21 +53,6 @@
5353
</licenses>
5454

5555
<dependencies>
56-
57-
<!-- JFreeSVG enables SVG export -->
58-
<dependency>
59-
<groupId>org.jfree</groupId>
60-
<artifactId>jfreesvg</artifactId>
61-
<version>3.2</version>
62-
</dependency>
63-
64-
<!-- OrsonPDF enables PDF export -->
65-
<dependency>
66-
<groupId>com.orsonpdf</groupId>
67-
<artifactId>orsonpdf</artifactId>
68-
<version>1.7</version>
69-
</dependency>
70-
7156
<dependency>
7257
<groupId>javax.servlet</groupId>
7358
<artifactId>servlet-api</artifactId>
@@ -81,7 +66,6 @@
8166
<version>4.11</version>
8267
<scope>test</scope>
8368
</dependency>
84-
8569
</dependencies>
8670

8771
<distributionManagement>
@@ -130,34 +114,7 @@
130114
<encoding>${project.build.sourceEncoding}</encoding>
131115
</configuration>
132116
</plugin>
133-
134-
<!-- <plugin>
135-
<groupId>org.apache.maven.plugins</groupId>
136-
<artifactId>maven-gpg-plugin</artifactId>
137-
<version>1.5</version>
138-
<executions>
139-
<execution>
140-
<id>sign-artifacts</id>
141-
<phase>verify</phase>
142-
<goals>
143-
<goal>sign</goal>
144-
</goals>
145-
</execution>
146-
</executions>
147-
</plugin> -->
148117

149-
<plugin>
150-
<groupId>org.sonatype.plugins</groupId>
151-
<artifactId>nexus-staging-maven-plugin</artifactId>
152-
<version>1.6.2</version>
153-
<extensions>true</extensions>
154-
<configuration>
155-
<serverId>ossrh</serverId>
156-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
157-
<autoReleaseAfterClose>false</autoReleaseAfterClose>
158-
</configuration>
159-
</plugin>
160-
161118
<plugin>
162119
<groupId>org.codehaus.mojo</groupId>
163120
<artifactId>cobertura-maven-plugin</artifactId>
@@ -187,11 +144,6 @@
187144

188145
<reporting>
189146
<plugins>
190-
<plugin>
191-
<groupId>org.apache.maven.plugins</groupId>
192-
<artifactId>maven-javadoc-plugin</artifactId>
193-
<version>2.9.1</version>
194-
</plugin>
195147

196148
<plugin>
197149
<groupId>org.apache.maven.plugins</groupId>
@@ -224,6 +176,33 @@
224176
<id>release</id>
225177
<build>
226178
<plugins>
179+
<plugin>
180+
<groupId>org.apache.maven.plugins</groupId>
181+
<artifactId>maven-gpg-plugin</artifactId>
182+
<version>1.5</version>
183+
<executions>
184+
<execution>
185+
<id>sign-artifacts</id>
186+
<phase>verify</phase>
187+
<goals>
188+
<goal>sign</goal>
189+
</goals>
190+
</execution>
191+
</executions>
192+
</plugin>
193+
194+
<plugin>
195+
<groupId>org.sonatype.plugins</groupId>
196+
<artifactId>nexus-staging-maven-plugin</artifactId>
197+
<version>1.6.7</version>
198+
<extensions>true</extensions>
199+
<configuration>
200+
<serverId>ossrh</serverId>
201+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
202+
<autoReleaseAfterClose>false</autoReleaseAfterClose>
203+
</configuration>
204+
</plugin>
205+
227206
<plugin>
228207
<inherited>true</inherited>
229208
<groupId>org.apache.maven.plugins</groupId>
@@ -238,6 +217,7 @@
238217
</execution>
239218
</executions>
240219
</plugin>
220+
241221
<plugin>
242222
<groupId>org.apache.maven.plugins</groupId>
243223
<artifactId>maven-source-plugin</artifactId>
@@ -251,6 +231,7 @@
251231
</execution>
252232
</executions>
253233
</plugin>
234+
254235
</plugins>
255236
</build>
256237
</profile>

0 commit comments

Comments
 (0)