Skip to content

Commit 4f64ebc

Browse files
committed
Merge branch 'pr-61'
2 parents 4fff1b6 + cef5ab6 commit 4f64ebc

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

ReleaseNotes.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ Eclipse Update Site:
1212
### New and noteworthy
1313

1414
* Updated PMD to 6.7.0
15+
* Eclipse SimRel 2018-09 is supported.
16+
To do this, the plugin doesn't expose log4j for other plugins anymore
17+
(the package `org.apache.log4j` is not exported anymore). In case you used this in a fragment,
18+
you should now use the eclipse platform logging facilities.
1519

1620
### Fixed Issues
1721

@@ -22,6 +26,7 @@ Eclipse Update Site:
2226
* [#51](https://github.com/pmd/pmd-eclipse-plugin/pull/51): Allow multiple ruleset files - [Phillip Krall](https://github.com/pkrall520)
2327
* [#53](https://github.com/pmd/pmd-eclipse-plugin/pull/53): README: markdown, fix links - [Lars Hvam](https://github.com/larshp)
2428
* [#60](https://github.com/pmd/pmd-eclipse-plugin/pull/60): Update to PMD 6.7.0 - [Jan](https://github.com/jgerken)
29+
* [#61](https://github.com/pmd/pmd-eclipse-plugin/pull/61): Support Eclipse SimRel 2018-09 - [jftsunami](https://github.com/jftsunami)
2530

2631

2732
## 01-August-2018: 4.0.17.v20180801-1551

net.sourceforge.pmd.eclipse.plugin.test/META-INF/MANIFEST.MF

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,6 @@ Require-Bundle: org.eclipse.ui,
1212
org.eclipse.jdt,
1313
org.eclipse.jdt.core,
1414
org.eclipse.jdt.launching,
15-
org.junit
15+
org.junit,
16+
org.apache.log4j,
17+
org.apache.commons.io

net.sourceforge.pmd.eclipse.plugin.test/src/main/java/net/sourceforge/pmd/eclipse/runtime/properties/impl/ProjectPropertiesManagerImplTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ public class ProjectPropertiesManagerImplTest {
1313
public void testToString() throws Exception {
1414
ProjectPropertiesTO projectProperties = createProjectProperties();
1515
String expected = IOUtils.toString(this.getClass().getResourceAsStream("projectproperties.xml"));
16+
expected = expected.replaceAll("\r\n", "\n");
1617

1718
String s = manager.convertProjectPropertiesToString(projectProperties);
1819
Assert.assertEquals(expected, s);

net.sourceforge.pmd.eclipse.plugin/META-INF/MANIFEST.MF

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,4 @@ Export-Package: name.herlin.command,
153153
net.sourceforge.pmd.properties.builders,
154154
net.sourceforge.pmd.renderers,
155155
net.sourceforge.pmd.util;uses:="net.sourceforge.pmd.lang.java.ast",
156-
net.sourceforge.pmd.util.datasource,
157-
org.apache.commons.io;x-internal:=true,
158-
org.apache.log4j;uses:="org.apache.log4j.helpers,org.apache.log4j.or,org.apache.log4j.spi"
156+
net.sourceforge.pmd.util.datasource

0 commit comments

Comments
 (0)