Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
90 changes: 2 additions & 88 deletions .ci.settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@
<properties>
<repoToken>${env.repoToken}</repoToken>
<keystore.pass>${env.signing_keypass}</keystore.pass>
<ossindex.username>${env.ossindex_username}</ossindex.username>
<ossindex.password>${env.ossindex_password}</ossindex.password>
<skipRemoteStaging>${env.skipRemoteStaging}</skipRemoteStaging>
</properties>
<repositories>
Expand Down Expand Up @@ -101,50 +103,6 @@
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>sonatype-nexus-staging</id>
<name>sonatype-nexus-staging</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>sonatype-nexus-snapshots</id>
<name>sonatype-nexus-snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>sonatype-nexus-s01-staging</id>
<name>sonatype-nexus-s01-staging</name>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>sonatype-nexus-s01-snapshots</id>
<name>sonatype-nexus-s01-snapshots</name>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
Expand Down Expand Up @@ -191,50 +149,6 @@
<enabled>false</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>sonatype-nexus-staging</id>
<name>sonatype-nexus-staging</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>sonatype-nexus-snapshots</id>
<name>sonatype-nexus-snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>sonatype-nexus-s01-staging</id>
<name>sonatype-nexus-s01-staging</name>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>sonatype-nexus-s01-snapshots</id>
<name>sonatype-nexus-s01-snapshots</name>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/linux_maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ jobs:
java-version: '21'
distribution: 'adopt'
cache: maven
- name: Set up Maven 3.9.11
uses: stCarolas/setup-maven@v5
with:
maven-version: 3.9.11
- name: Cache Dependency-Check DB
uses: actions/cache@v4
with:
Expand All @@ -33,4 +37,7 @@ jobs:
run: mvn -s .ci.settings.xml --no-transfer-progress -Dgh_username=${{ secrets.GH_USERNAME }} -Dgh_token=${{ secrets.GH_TOKEN }} -Prelease-commons,sonatype-oss-release package site
env:
MAVEN_OPTS: -Xms256m -Xmx2g --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.lang.reflect=ALL-UNNAMED --add-opens=java.base/java.text=ALL-UNNAMED --add-opens=java.desktop/java.awt.font=ALL-UNNAMED
signing_keypass: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
ossindex_username: ${{ secrets.OSSINDEX_USERNAME }}
ossindex_password: ${{ secrets.OSSINDEX_TOKEN }}
nvd_api_key: ${{ secrets.NVD_API_KEY }}
8 changes: 7 additions & 1 deletion .github/workflows/release_maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ jobs:
java-version: '21'
distribution: 'adopt'
cache: maven
- name: Set up Maven 3.9.11
uses: stCarolas/setup-maven@v5
with:
maven-version: 3.9.11
- name: Cache Dependency-Check DB
uses: actions/cache@v4
with:
Expand All @@ -40,11 +44,13 @@ jobs:
GPG_TTY: $(tty)
MAVEN_OPTS: -Xms256m -Xmx2g --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.lang.reflect=ALL-UNNAMED --add-opens=java.base/java.text=ALL-UNNAMED --add-opens=java.desktop/java.awt.font=ALL-UNNAMED
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
signing_keypass: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
gh_username: ${{ secrets.GH_USERNAME }}
gh_token: ${{ secrets.GH_TOKEN }}
sonatype_username: ${{ secrets.SONATYPE_USERNAME }}
sonatype_password: ${{ secrets.SONATYPE_PASSWORD }}
repoToken: ${{ secrets.COVERALLS_REPOTOKEN }}
skipRemoteStaging: ${{ secrets.SKIP_REMOTE_STAGING }}
signing_keypass: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
ossindex_username: ${{ secrets.OSSINDEX_USERNAME }}
ossindex_password: ${{ secrets.OSSINDEX_TOKEN }}
nvd_api_key: ${{ secrets.NVD_API_KEY }}
7 changes: 7 additions & 0 deletions .github/workflows/windows_maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ jobs:
java-version: '21'
distribution: 'adopt'
cache: maven
- name: Set up Maven 3.9.11
uses: stCarolas/setup-maven@v5
with:
maven-version: 3.9.11
- name: Cache Dependency-Check DB
uses: actions/cache@v4
with:
Expand All @@ -34,4 +38,7 @@ jobs:
run: mvn -s .ci.settings.xml --no-transfer-progress clean package
env:
MAVEN_OPTS: -Xms256m -Xmx2g --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.lang.reflect=ALL-UNNAMED --add-opens=java.base/java.text=ALL-UNNAMED --add-opens=java.desktop/java.awt.font=ALL-UNNAMED
signing_keypass: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
ossindex_username: ${{ secrets.OSSINDEX_USERNAME }}
ossindex_password: ${{ secrets.OSSINDEX_TOKEN }}
nvd_api_key: ${{ secrets.NVD_API_KEY }}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ the same way as e.g. your co-workers do with their Eclipse IDE.

Compatibility
-------------
Compatible with NetBeans 12.0+ and JDK 21+.
Compatible with NetBeans 17.0+ and JDK 21+.

Downloads
---------
Expand Down
60 changes: 58 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -123,13 +123,56 @@
<palantir-java-format.version>2.81.0</palantir-java-format.version>
<xml-formatter.version>0.4.0</xml-formatter.version>
<commons-lang.version>3.19.0</commons-lang.version>
<netbeans.version>RELEASE120</netbeans.version>
<netbeans.version>RELEASE170</netbeans.version>
<jsoup.version>1.21.2</jsoup.version>
<pmd.version>7.17.0</pmd.version>
<sshd.version>2.16.0</sshd.version>
<scm.version>2.2.1</scm.version>
<argLine></argLine>
</properties>

<dependencyManagement>
<dependencies>
<!-- SSHD -->
<dependency>
<groupId>org.apache.sshd</groupId>
<artifactId>sshd-core</artifactId>
<version>${sshd.version}</version>
</dependency>

<dependency>
<groupId>org.apache.sshd</groupId>
<artifactId>sshd-common</artifactId>
<version>${sshd.version}</version>
</dependency>

<dependency>
<groupId>org.apache.sshd</groupId>
<artifactId>sshd-sftp</artifactId>
<version>${sshd.version}</version>
</dependency>

<dependency>
<groupId>org.apache.sshd</groupId>
<artifactId>sshd-osgi</artifactId>
<version>${sshd.version}</version>
</dependency>

<!-- JGit -->
<dependency>
<groupId>org.eclipse.jgit</groupId>
<artifactId>org.eclipse.jgit</artifactId>
<version>7.4.0.202509020913-r</version>
</dependency>

<dependency>
<groupId>org.eclipse.jgit</groupId>
<artifactId>org.eclipse.jgit.ssh.apache</artifactId>
<version>7.4.0.202509020913-r</version>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<!-- Eclipse Formatter -->
<dependency>
Expand Down Expand Up @@ -534,6 +577,12 @@
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-jgit</artifactId>
<version>${scm.version}</version>
<exclusions>
<exclusion>
<groupId>net.i2p.crypto</groupId>
<artifactId>eddsa</artifactId>
</exclusion>
</exclusions>
</dependency>

<!-- Google -->
Expand Down Expand Up @@ -813,6 +862,12 @@
<artifactId>ossindex-maven-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<clientConfiguration>
<authConfiguration>
<username>${ossindex.username}</username>
<password>${ossindex.password}</password>
</authConfiguration>
</clientConfiguration>
<cvssScoreThreshold>3</cvssScoreThreshold>
</configuration>
</plugin>
Expand Down Expand Up @@ -864,7 +919,7 @@
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<release>${java.version}</release>
<forceJavacCompilerUse>true</forceJavacCompilerUse>
<forceLegacyJavacApi>true</forceLegacyJavacApi>
<fork>true</fork>
<proc>full</proc>
<compilerArgs>
Expand Down Expand Up @@ -1030,6 +1085,7 @@
<ignoredUnusedDeclaredDependency>org.apache.maven.scm:maven-scm-provider-jgit</ignoredUnusedDeclaredDependency>
<ignoredUnusedDeclaredDependency>org.apache.maven.scm:maven-scm-provider-gitexe</ignoredUnusedDeclaredDependency>
<ignoredUnusedDeclaredDependency>org.apache.maven.scm:maven-scm-provider-git-commons</ignoredUnusedDeclaredDependency>
<ignoredUnusedDeclaredDependency>org.apache.sshd:ssh-common</ignoredUnusedDeclaredDependency>
</ignoredUnusedDeclaredDependencies>
</configuration>
</execution>
Expand Down
2 changes: 1 addition & 1 deletion src/site/xdoc/index.xml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
</subsection>
<subsection name="Compatibility">
<p>
Compatible with NetBeans 12.0+ and JDK 21+.
Compatible with NetBeans 17.0+ and JDK 21+.
</p>
</subsection>
</section>
Expand Down