Skip to content

Commit 4b7989d

Browse files
authored
Merge pull request #162 from funfried/release/1.14.x
Release/1.14.x
2 parents fbbb0af + 04df1e5 commit 4b7989d

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ the same way as e.g. your co-workers do with their Eclipse IDE.
6565
* Support for revelc.net XML formatter (since 1.14)
6666
* Support for Jsoup XML formatter (since 1.14)
6767
* Support for Jackson Json formatter (since 1.14)
68-
* Support for manticore JSQLFormatter (Special thanks to [Andreas Reichel](https://github.com/manticore-projects) for the contribution) (since 1.14)
68+
* Support for manticore JSQLFormatter (Special thanks to [Andreas Reichel](https://github.com/manticore-projects) for the contribution) (since 1.14.1)
6969
* Support for remote configurations for Eclipse formatters (since 1.14.1)
7070

7171
Compatibility

appveyor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ install:
1818
- ps: |
1919
Add-Type -AssemblyName System.IO.Compression.FileSystem
2020
if (!(Test-Path -Path "C:\maven" )) {
21-
(new-object System.Net.WebClient).DownloadFile('https://downloads.apache.org/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.zip', 'C:\maven-bin.zip')
21+
(new-object System.Net.WebClient).DownloadFile('https://downloads.apache.org/maven/maven-3/3.8.1/binaries/apache-maven-3.8.1-bin.zip', 'C:\maven-bin.zip')
2222
[System.IO.Compression.ZipFile]::ExtractToDirectory("C:\maven-bin.zip", "C:\maven")
2323
}
24-
- cmd: SET PATH=C:\maven\apache-maven-3.6.3\bin;%JAVA_HOME%\bin;%PATH%
24+
- cmd: SET PATH=C:\maven\apache-maven-3.8.1\bin;%JAVA_HOME%\bin;%PATH%
2525
- cmd: SET MAVEN_OPTS=-Xms128m -Xmx512m
2626
- cmd: mvn --version
2727
- cmd: java -version
2828
build_script:
29-
- cp .ci.settings.xml C:\maven\apache-maven-3.6.3\conf\settings.xml && mvn --no-transfer-progress -Denv.github_username=%github_username% -Denv.github_token=%github_token% clean package site
29+
- cp .ci.settings.xml C:\maven\apache-maven-3.8.1\conf\settings.xml && mvn --no-transfer-progress -Denv.github_username=%github_username% -Denv.github_token=%github_token% clean package site

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -689,7 +689,7 @@
689689
<artifactId>maven-surefire-plugin</artifactId>
690690
<configuration>
691691
<argLine>
692-
-Xmx1024m
692+
${argLine} -Xmx1024m
693693
--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED
694694
--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED
695695
--add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED

src/main/resources/de/funfried/netbeans/plugins/external/formatter/Bundle.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ OpenIDE-Module-Long-Description=\
2020
<li>Support for revelc.net XML formatter (since 1.14)</li>\n\
2121
<li>Support for Jsoup XML formatter (since 1.14)</li>\n\
2222
<li>Support for Jackson Json formatter (since 1.14)</li>\n\
23-
<li>Support for manticore JSQLFormatter (Special thanks to <a href="https://github.com/manticore-projects">Andreas Reichel</a> for the contribution) (since 1.14)</li>\n\
23+
<li>Support for manticore JSQLFormatter (Special thanks to <a href="https://github.com/manticore-projects">Andreas Reichel</a> for the contribution) (since 1.14.1)</li>\n\
24+
<li>Support for remote configurations for Eclipse formatters (since 1.14.1)</li>\n\
2425
</ul>\n\n\
2526
<p><img src="https://raw.githubusercontent.com/funfried/externalcodeformatter_for_netbeans/release/1.14.x/src/site/resources/imgs/global.png"></p>\n\n\
2627
<p><img src="https://raw.githubusercontent.com/funfried/externalcodeformatter_for_netbeans/release/1.14.x/src/site/resources/imgs/project.png"></p>\n\n\

src/site/xdoc/index.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,8 @@
9797
<li>Support for Eclipse Javascript formatter (since 1.14)</li>
9898
<li>Support for revelc.net XML formatter (since 1.14)</li>
9999
<li>Support for Jackson Json formatter (since 1.14)</li>
100+
<li>Support for manticore JSQLFormatter (Special thanks to <a href="https://github.com/manticore-projects">Andreas Reichel</a> for the contribution) (since 1.14.1)</li>
101+
<li>Support for remote configurations for Eclipse formatters (since 1.14.1)</li>
100102
</ul>
101103
</section>
102104
<section name="History of this plugin">

0 commit comments

Comments
 (0)