|
123 | 123 | <palantir-java-format.version>2.81.0</palantir-java-format.version> |
124 | 124 | <xml-formatter.version>0.4.0</xml-formatter.version> |
125 | 125 | <commons-lang.version>3.19.0</commons-lang.version> |
126 | | - <netbeans.version>RELEASE120</netbeans.version> |
| 126 | + <netbeans.version>RELEASE170</netbeans.version> |
127 | 127 | <jsoup.version>1.21.2</jsoup.version> |
128 | 128 | <pmd.version>7.17.0</pmd.version> |
| 129 | + <sshd.version>2.16.0</sshd.version> |
129 | 130 | <scm.version>2.2.1</scm.version> |
130 | 131 | <argLine></argLine> |
131 | 132 | </properties> |
132 | 133 |
|
| 134 | + <dependencyManagement> |
| 135 | + <dependencies> |
| 136 | + <!-- SSHD --> |
| 137 | + <dependency> |
| 138 | + <groupId>org.apache.sshd</groupId> |
| 139 | + <artifactId>sshd-core</artifactId> |
| 140 | + <version>${sshd.version}</version> |
| 141 | + </dependency> |
| 142 | + |
| 143 | + <dependency> |
| 144 | + <groupId>org.apache.sshd</groupId> |
| 145 | + <artifactId>sshd-common</artifactId> |
| 146 | + <version>${sshd.version}</version> |
| 147 | + </dependency> |
| 148 | + |
| 149 | + <dependency> |
| 150 | + <groupId>org.apache.sshd</groupId> |
| 151 | + <artifactId>sshd-sftp</artifactId> |
| 152 | + <version>${sshd.version}</version> |
| 153 | + </dependency> |
| 154 | + |
| 155 | + <dependency> |
| 156 | + <groupId>org.apache.sshd</groupId> |
| 157 | + <artifactId>sshd-osgi</artifactId> |
| 158 | + <version>${sshd.version}</version> |
| 159 | + </dependency> |
| 160 | + |
| 161 | + <!-- JGit --> |
| 162 | + <dependency> |
| 163 | + <groupId>org.eclipse.jgit</groupId> |
| 164 | + <artifactId>org.eclipse.jgit</artifactId> |
| 165 | + <version>7.4.0.202509020913-r</version> |
| 166 | + </dependency> |
| 167 | + |
| 168 | + <dependency> |
| 169 | + <groupId>org.eclipse.jgit</groupId> |
| 170 | + <artifactId>org.eclipse.jgit.ssh.apache</artifactId> |
| 171 | + <version>7.4.0.202509020913-r</version> |
| 172 | + </dependency> |
| 173 | + </dependencies> |
| 174 | + </dependencyManagement> |
| 175 | + |
133 | 176 | <dependencies> |
134 | 177 | <!-- Eclipse Formatter --> |
135 | 178 | <dependency> |
|
534 | 577 | <groupId>org.apache.maven.scm</groupId> |
535 | 578 | <artifactId>maven-scm-provider-jgit</artifactId> |
536 | 579 | <version>${scm.version}</version> |
| 580 | + <exclusions> |
| 581 | + <exclusion> |
| 582 | + <groupId>net.i2p.crypto</groupId> |
| 583 | + <artifactId>eddsa</artifactId> |
| 584 | + </exclusion> |
| 585 | + </exclusions> |
537 | 586 | </dependency> |
538 | 587 |
|
539 | 588 | <!-- Google --> |
|
813 | 862 | <artifactId>ossindex-maven-plugin</artifactId> |
814 | 863 | <version>3.2.0</version> |
815 | 864 | <configuration> |
| 865 | + <clientConfiguration> |
| 866 | + <authConfiguration> |
| 867 | + <username>${ossindex.username}</username> |
| 868 | + <password>${ossindex.password}</password> |
| 869 | + </authConfiguration> |
| 870 | + </clientConfiguration> |
816 | 871 | <cvssScoreThreshold>3</cvssScoreThreshold> |
817 | 872 | </configuration> |
818 | 873 | </plugin> |
|
864 | 919 | <artifactId>maven-compiler-plugin</artifactId> |
865 | 920 | <configuration> |
866 | 921 | <release>${java.version}</release> |
867 | | - <forceJavacCompilerUse>true</forceJavacCompilerUse> |
| 922 | + <forceLegacyJavacApi>true</forceLegacyJavacApi> |
868 | 923 | <fork>true</fork> |
869 | 924 | <proc>full</proc> |
870 | 925 | <compilerArgs> |
|
1030 | 1085 | <ignoredUnusedDeclaredDependency>org.apache.maven.scm:maven-scm-provider-jgit</ignoredUnusedDeclaredDependency> |
1031 | 1086 | <ignoredUnusedDeclaredDependency>org.apache.maven.scm:maven-scm-provider-gitexe</ignoredUnusedDeclaredDependency> |
1032 | 1087 | <ignoredUnusedDeclaredDependency>org.apache.maven.scm:maven-scm-provider-git-commons</ignoredUnusedDeclaredDependency> |
| 1088 | + <ignoredUnusedDeclaredDependency>org.apache.sshd:ssh-common</ignoredUnusedDeclaredDependency> |
1033 | 1089 | </ignoredUnusedDeclaredDependencies> |
1034 | 1090 | </configuration> |
1035 | 1091 | </execution> |
|
0 commit comments