ngdbc.jar 等效的 maven 存储库
ngdbc.jar equivalent maven repository
我正在使用 ngdbc.jar 连接 java 和 HANA.But 现在我想构建一个网络 application.So 我搜索了等效的 maven 存储库,但找不到那个。
我发现主要是云的,最后
这个
<dependency>
<groupId>com.sap.cloud</groupId>
<artifactId>neo-java-web-api</artifactId>
<version>1.53.18.2</version>
<scope>provided</scope>
</dependency>
任何人都可以告诉我可以使用哪个存储库而不是 ngdbc.jar?感谢任何帮助
SAP 不允许在其 TC here 中重新分发 ngdbc.jar。所以你不会在网上找到任何合法的。
你唯一的选择是include the jar from your local。类似于:
<dependency>
<groupId>sample</groupId>
<artifactId>com.sample</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/resources/yourJar.jar</systemPath>
</dependency>
这里描述这里如何处理丢失ngdbc.jar:
我试图通过
安装 jar 文件作为依赖项
install:install-file -Dfile=C:\ngdbc.jar -DgroupId=com.han.driver -DartifactId=hana -Dversion=1.0 -Dpackaging=jar
Maven 非常好用way.hope这有助于处理自定义 jar 的人。
我正在使用 ngdbc.jar 连接 java 和 HANA.But 现在我想构建一个网络 application.So 我搜索了等效的 maven 存储库,但找不到那个。 我发现主要是云的,最后 这个
<dependency>
<groupId>com.sap.cloud</groupId>
<artifactId>neo-java-web-api</artifactId>
<version>1.53.18.2</version>
<scope>provided</scope>
</dependency>
任何人都可以告诉我可以使用哪个存储库而不是 ngdbc.jar?感谢任何帮助
SAP 不允许在其 TC here 中重新分发 ngdbc.jar。所以你不会在网上找到任何合法的。
你唯一的选择是include the jar from your local。类似于:
<dependency>
<groupId>sample</groupId>
<artifactId>com.sample</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/resources/yourJar.jar</systemPath>
</dependency>
这里描述这里如何处理丢失ngdbc.jar:
我试图通过
安装 jar 文件作为依赖项install:install-file -Dfile=C:\ngdbc.jar -DgroupId=com.han.driver -DartifactId=hana -Dversion=1.0 -Dpackaging=jar
Maven 非常好用way.hope这有助于处理自定义 jar 的人。