Skip to content

Commit 30eb788

Browse files
committed
Added release notes for 3.9, updated site generation
1 parent 8dc19c6 commit 30eb788

8 files changed

Lines changed: 92 additions & 57 deletions

File tree

pom.xml

Lines changed: 57 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@
1818
</license>
1919
</licenses>
2020

21+
<issueManagement>
22+
<system>GitHub</system>
23+
<url>https://github.com/eclipse-jetty/eclipse-jetty-plugin/issues/</url>
24+
</issueManagement>
25+
2126
<developers>
2227
<developer>
2328
<id>ckoeberl</id>
@@ -32,6 +37,7 @@
3237
</developers>
3338

3439
<properties>
40+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3541
<tycho-version>0.20.0</tycho-version>
3642
</properties>
3743

@@ -58,48 +64,6 @@
5864
<version>${tycho-version}</version>
5965
<extensions>true</extensions>
6066
</plugin>
61-
62-
<plugin>
63-
<groupId>org.apache.maven.plugins</groupId>
64-
<artifactId>maven-site-plugin</artifactId>
65-
<version>3.3</version>
66-
<configuration>
67-
<reportPlugins>
68-
<plugin>
69-
<groupId>org.apache.maven.plugins</groupId>
70-
<artifactId>maven-project-info-reports-plugin</artifactId>
71-
<version>2.7</version>
72-
<configuration>
73-
<generateSitemap>true</generateSitemap>
74-
<dependencyDetailsEnabled>false</dependencyDetailsEnabled>
75-
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
76-
</configuration>
77-
<reportSets>
78-
<reportSet>
79-
<reports>
80-
<report>project-team</report>
81-
<report>issue-tracking</report>
82-
<report>license</report>
83-
<report>scm</report>
84-
</reports>
85-
</reportSet>
86-
</reportSets>
87-
</plugin>
88-
<plugin>
89-
<groupId>org.apache.maven.plugins</groupId>
90-
<artifactId>maven-changes-plugin</artifactId>
91-
<version>2.10</version>
92-
<reportSets>
93-
<reportSet>
94-
<reports>
95-
<report>changes-report</report>
96-
</reports>
97-
</reportSet>
98-
</reportSets>
99-
</plugin>
100-
</reportPlugins>
101-
</configuration>
102-
</plugin>
10367
</plugins>
10468

10569
<pluginManagement>
@@ -114,6 +78,12 @@
11478
</configuration>
11579
</plugin>
11680

81+
<plugin>
82+
<groupId>org.apache.maven.plugins</groupId>
83+
<artifactId>maven-site-plugin</artifactId>
84+
<version>3.4</version>
85+
</plugin>
86+
11787
<!--This plugin's configuration is used to store Eclipse m2e settings
11888
only. It has no influence on the Maven build itself. -->
11989
<plugin>
@@ -144,6 +114,51 @@
144114
</pluginManagement>
145115
</build>
146116

117+
<reporting>
118+
<plugins>
119+
<plugin>
120+
<groupId>org.apache.maven.plugins</groupId>
121+
<artifactId>maven-project-info-reports-plugin</artifactId>
122+
<version>2.8.1</version>
123+
<configuration>
124+
<generateSitemap>true</generateSitemap>
125+
<dependencyDetailsEnabled>false</dependencyDetailsEnabled>
126+
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
127+
</configuration>
128+
<reportSets>
129+
<reportSet>
130+
<reports>
131+
<report>project-team</report>
132+
<report>issue-tracking</report>
133+
<report>license</report>
134+
<report>scm</report>
135+
</reports>
136+
</reportSet>
137+
</reportSets>
138+
</plugin>
139+
<plugin>
140+
<groupId>org.apache.maven.plugins</groupId>
141+
<artifactId>maven-changes-plugin</artifactId>
142+
<version>2.11</version>
143+
<configuration>
144+
<issueManagementSystems>
145+
<issueManagementSystem>SourceForge</issueManagementSystem>
146+
</issueManagementSystems>
147+
<issueLinkTemplatePerSystem>
148+
<SourceForge>http://sourceforge.net/p/eclipse-jetty/feature-requests/%ISSUE%</SourceForge>
149+
</issueLinkTemplatePerSystem>
150+
</configuration>
151+
<reportSets>
152+
<reportSet>
153+
<reports>
154+
<report>changes-report</report>
155+
</reports>
156+
</reportSet>
157+
</reportSets>
158+
</plugin>
159+
</plugins>
160+
</reporting>
161+
147162
<repositories>
148163
<repository>
149164
<id>eclipse-indigo</id>

src/changes/changes.xml

Lines changed: 25 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,39 @@
99
</properties>
1010

1111
<body>
12+
<release version="3.9.0" date="2015-10-11">
13+
<action dev="derkoe" type="fix" issue="5">
14+
MalformedURLException when loading temp config file in Windows.
15+
</action>
16+
<action dev="thred" type="fix" issue="8">
17+
Changes in Jetty version not read after next launch.
18+
</action>
19+
<action dev="thred" type="fix" issue="13">
20+
Avoid verification of DTDs via Internet.
21+
</action>
22+
<action dev="thred" type="fix" issue="16">
23+
Problem when M2Eclipse is not installed.
24+
</action>
25+
<action dev="derkoe" type="add" issue="15">
26+
Support for Jetty 9.3
27+
</action>
28+
<action type="add">
29+
Added sample projects for testing different features in Jetty versions.
30+
</action>
31+
</release>
1232
<release version="3.8.0" date="2014-07-13">
13-
<action dev="thred" type="fix" issue="#4">
33+
<action dev="thred" type="fix" issue="4">
1434
The certificate should be issued for localhost instead of EclipseJettyPlugin
1535
</action>
16-
<action dev="derkoe" type="fix" issue="#1">
36+
<action dev="derkoe" type="fix" issue="1">
1737
Support for Jetty 9.1.x and 9.2.x
1838
</action>
1939
<action dev="thred" type="fix" issue="15">
2040
Now WebApp without web.xml can be used (Jetty 9 recommended).
2141
</action>
2242
</release>
2343
<release version="3.7.0" date="2014-05-03">
24-
<action dev="ckoeberl" type="fix" issue="17">
44+
<action dev="ckoeberl" type="fix" issue="17" system="SourceForge">
2545
Fixed relative path extraction for webapp path and context file location.
2646
</action>
2747

@@ -178,7 +198,7 @@
178198
<action dev="thred" type="add">
179199
Added visual sugar
180200
</action>
181-
<action dev="thred" type="fix" issue="#7 Invalid Maven Scopes">
201+
<action dev="thred" type="fix" issue="7" system="SourceForge">
182202
Added direct m2e support for correct Maven scopes
183203
</action>
184204
<action dev="thred" type="change">
@@ -208,7 +228,7 @@
208228
<action dev="thred" type="remove">
209229
Support for Jetty 5 dropped.
210230
</action>
211-
<action dev="thred" type="fix" issue="3520146">
231+
<action dev="thred" type="fix">
212232
Fixed Jetty version autodetection.
213233
</action>
214234
<action dev="thred" type="add">

src/site/apt/faq.apt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
-----
22
Eclipse Jetty Integration - Getting started
33
-----
4-
Christian K�berl, Manfred Hantschel
4+
Christian Köberl, Manfred Hantschel
55
-----
66
December 2013
77

src/site/apt/getting_started.apt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
-----
22
Eclipse Jetty Integration - Getting started
33
-----
4-
Christian K�berl, Manfred Hantschel
4+
Christian Köberl, Manfred Hantschel
55
-----
66
December 2013
77

src/site/apt/index.apt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
-----
22
Eclipse Jetty Integration
33
-----
4-
Christian K�berl, Manfred Hantschel
4+
Christian Köberl, Manfred Hantschel
55
-----
66
December 2013
77

88
Introduction
99

1010
Eclipse Jetty Integration provides a launch configuration for launching Jetty server out of the Eclipse IDE (4.x, 3.4 and up).
1111

12-
Currently supported versions of Jetty are 6.x, 7.x, 8.x and 9.x. You can use either the bundled Jetty 8 or any other manually installed one.
12+
Currently supported versions of Jetty are 7.x, 8.x and 9.x. You can use either the bundled Jetty 8 or any other manually installed one.
1313

1414
This plugin is released under the Apache 2.0 license ({{http://www.apache.org/licenses/LICENSE-2.0.txt}}).
1515

@@ -35,7 +35,7 @@ http://eclipse-jetty.github.io/update/
3535
* About
3636

3737
The Eclipse Jetty Plugin is hosted on {{{https://github.com/eclipse-jetty/eclipse-jetty-plugin}GitHub}} and is maintained by
38-
Christian K�berl and Manfred Hantschel. It's primary goal, is to provide a stable and consistent launch environment for
38+
Christian Köberl and Manfred Hantschel. It's primary goal, is to provide a stable and consistent launch environment for
3939
large projects and development teams (reducing configuration needs per developer to a minimum).
4040

4141
It is based on the original Jetty Launcher by Geoffrey Longman (base for the well known {{{http://code.google.com/p/run-jetty-run/}Run Jetty Run}} plugin, too),

src/site/apt/installation.apt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
-----
22
Eclipse Jetty Integration - Installation
33
-----
4-
Christian K�berl
4+
Christian Köberl
55
-----
66
December 2013
77

src/site/apt/jndi_howto.apt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
-----
22
Eclipse Jetty Integration - JNDI Howto
33
-----
4-
Christian K�berl
4+
Christian Köberl
55
-----
66
December 2013
77

@@ -60,5 +60,5 @@ JNDI Howto
6060
</Configure>
6161
----------------------------------------
6262

63-
[[4]] Voil�. You're done. You can now lookup the data source in your application via
63+
[[4]] Voil�. You're done. You can now lookup the data source in your application via
6464
"java:comp/env/jdbc/myds".

src/site/site.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<skin>
66
<groupId>org.apache.maven.skins</groupId>
77
<artifactId>maven-fluido-skin</artifactId>
8-
<version>1.3.0</version>
8+
<version>1.4</version>
99
</skin>
1010
<bannerLeft>
1111
<name>Eclipse Jetty Integration</name>
@@ -29,7 +29,7 @@
2929

3030
<links>
3131
<item name="Eclipse" href="http://www.eclipse.org/" />
32-
<item name="Jetty" href="http://www.mortbay.org/jetty/" />
32+
<item name="Jetty" href="http://www.eclipse.org/jetty/" />
3333
<item name="Marketplace" href="http://marketplace.eclipse.org/node/581283" />
3434
</links>
3535

0 commit comments

Comments
 (0)