- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要一个能够使用以下任一方式编译 Java Maven 项目的设置:
项目 POM 代码已经引用了内部公司存储库:
<repositories>
<repository>
<id>artifactory-virtual</id>
<name>My Artifactory Repository to download</name>
<url>https://artifactory.corporation.com/maven</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
但要使用此存储库需要 VPN 连接,我想避免。
我正在尝试使用 this Maven documentation 设置存储库镜像.
因此我在我的 ~/.m2/settings.xml
中配置以下配置:
<?xml version="1.0" encoding="UTF-8"?>
<settings>
...
<mirrors>
<mirror>
<id>icm-mirror</id>
<url>http://maven.icm.edu.pl/artifactory/repo/</url>
<mirrorOf>*,!central</mirrorOf>
</mirror>
</mirrors>
...
</settings>
但只是单独提供一个镜像(除了 central 之外的所有 repos),该项目仍在尝试从公司存储库下载(我没有提供任何):
[ERROR] Failed to execute goal on project ibis-customer-management:
Could not resolve dependencies for project com.example.project:myproject:jar:3.7.1-SNAPSHOT:
Failed to collect dependencies at com.oracle.jdbc:ojdbc8:jar:18.3.0.0:
Failed to read artifact descriptor for com.oracle.jdbc:ojdbc8:jar:18.3.0.0: Could not transfer artifact com.oracle.jdbc:ojdbc8:pom:18.3.0.0 from/to artifactory-virtual (https://artifactory.corporation.com/maven):
Transfer failed for https://artifactory.corporation.com/maven/com/oracle/jdbc/ojdbc8/18.3.0.0/ojdbc8-18.3.0.0.pom:
Connect to artifactory.corporation.com [artifactory.corporation.com/1.2.3.4] failed:
Operation timed out -> [Help 1]
即使我为 ICM 存储库创建一个具有显式条目的事件配置文件,该错误也未修复:
<settings>
...
<mirrors>
<mirror>
<id>icm-mirror</id>
<url>http://maven.icm.edu.pl/artifactory/repo/</url>
<mirrorOf>*,!central</mirrorOf>
</mirror>
</mirrors>
<profiles>
<profile>
<id>not-corpnet</id>
<repositories>
<repository>
<id>icm</id>
<name>ICM Repository</name>
<url>http://maven.icm.edu.pl/artifactory/repo/</url>
</repository>
</repositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>not-corpnet</activeProfile>
</activeProfiles>
...
</settings>
如果您认为我的 settings.xml
中可能还有其他内容,上面的内容几乎是完整的(没有点,并且具有正确的 XML 命名空间。)
当我运行 mvn
时,配置文件也处于事件状态并且可见
[INFO] --- maven-help-plugin:3.2.0:active-profiles (default-cli) @ myproject ---
[INFO]
Active Profiles for Project 'com.example.project:myproject:pom:3.7.1-SNAPSHOT':
The following profiles are active:
- not-corpnet (source: external)
当我不在公司网络/VPN 中时,如何使我的项目(其 POM 已包含在公司存储库中)从公共(public)存储库下载 Artifact ?
最佳答案
通过执行以下操作,我们最终获得了一个 OK 设置,该设置在公共(public)网络和公司网络中以相同的方式工作:
项目 pom.xml
包含所需的公共(public)存储库:
<repositories>
<repository>
<id>central</id>
<name>Central Repository</name>
<url>https://repo1.maven.org/maven2/</url>
</repository>
<repository>
<id>icm</id>
<name>ICM Repository</name>
<url>http://maven.icm.edu.pl/artifactory/repo/</url>
</repository>
<repository>
<id>confluent</id>
<name>Confluent Repository</name>
<url>http://packages.confluent.io/maven/</url>
</repository>
</repositories>
假设项目不需要非公共(public)依赖项,这将允许在公共(public)环境中使用“ checkout 并运行”的工作方式。
如果我们在公司网络内部(可以访问私有(private)存储库)并且在公司代理之后,我们使用 settings.xml
每个开发人员都可以使用 ( ~/.m2/serttings.xml
) 在公司环境中进行开发的文件。此文件包含 <proxies>
和 <mirrors>
:
<mirrors>
<mirror>
<id>internal-repository-mirror</id>
<name>Maven Mirror</name>
<url>https://artifactory.corporation.com/maven</url>
<mirrorOf>*,!confluent</mirrorOf>
</mirror>
<mirror>
<id>internal-confluent-mirror</id>
<name>Confluent Mirror</name>
<url>https://artifactory.corporation.com/confluent-maven</url>
<mirrorOf>confluent</mirrorOf>
</mirror>
</mirrors>
<proxies>
<proxy>
<id>corpnet-http-proxy</id>
<active>true</active>
<protocol>http</protocol>
<host>proxy.corporation.com</host>
<port>8079</port>
<nonProxyHosts>artifactory.corporation.com</nonProxyHosts>
</proxy>
<proxy>
<id>corpnet-https-proxy</id>
<active>true</active>
<protocol>https</protocol>
<host>proxy.corporation.com</host>
<port>8079</port>
<nonProxyHosts>artifactory.corporation.com</nonProxyHosts>
</proxy>
</proxies>
settings.xml
中不需要其他存储库或配置文件文件。
关于如何 settings.xml
正在以自动方式交换,我使用以下适合我始终打开终端的工作方式的方法:
~/.bash_profile
(或同等)正在执行settings.xml
之一。我准备的文件:** settings-public.xml
几乎是空的(可能有一些我在玩/试验代码时使用的特殊存储库)** settings-corpnet.xml
至少包含 <mirrors>
和 <proxies>
上面指出的部分关于maven - 我如何配置 Maven 以应对公司/VPN 和公共(public)存储库设置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61085197/
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: When should [assembly: InternalsVisibleTo()] be used?
问题与微服务有关,当我有多个微服务提供将被订购和计费的功能/服务时。 我正在确定采用哪种方法, a) 每个可计费微服务有一个订单和一个计费服务,有各自的数据库。b) 跨所有微服务的通用订单管理和计费服
我正在尝试使用 gcloud图书馆。 (ns firengine.state (:import [com.google.cloud AuthCredentials] [com.goog
Java 允许定义以下一对类。 class Class1 { ... } public Class2 { public Class2(Class1 c1) { ... } } 如果因为 Class1
我正在尝试查找文件 1 和文件 2 中的共同行。如果公共(public)行存在,我想写入文件 2 中的行,否则打印文件 1 中的非公共(public)行。fin1 和 fin2 是这里的文件句柄。它读
好吧,这是一个满口的标题。不过,这让我明白了。这是我的代码的要点,在 jar 里: public class NetworkShared { public static class Login
我在使用 ltree 时遇到 PHP 问题来自 PostgreSQL .我在 SQL 中这样做: SELECT * FROM tabla t WHERE t.parent_path " for "OP
我知道如何为类/接口(interface)/包的子集生成 Javadoc。但是有没有办法只为公共(public)方法的一个子集生成 Javadoc? 我更喜欢能够将方法(Javadoc 标记或注释)标
这个问题在这里已经有了答案: 关闭 12 年前。 Possible Duplicates: c#: why have empty get set properties instead of usin
在我们的每个项目中,都有一个文件用于存储该项目中使用的各种SQL 语句。类的声明方式和字符串的声明方式有一些变化。 示例类声明: internal sealed class ClassName int
我根据 http://docs.jquery.com/Plugins/Authoring 定义了我的插件 (function( $ ){ var methods = { init : fu
我正在使用 Inno Setup 来构建我的安装程序,我有 C:\Users\Public文件夹硬编码在我的 [Files] 中放置一些文件的部分(Inno Setup 没有此文件夹的常量) 我的目标
我有一个 dataframe1 包含像 'ID', 'A', 'B', 'C', 'D', 'E', 'F', 'G' 这样的列. 现在,我创建了两个数据框, dataframe2 包含 'ID',
我有一个抽象类,不幸的是我无法更改它的定义,它基本上提供了一个抽象方法,有点像。 public abstract void do(Data someData, BaseInterface interf
我刚刚在重构时偶然发现了一段奇怪的代码。它看起来像是分解出两个 readString() 方法的共同部分的候选者,只是它似乎是不可能的(这对我来说是一个令人毛骨悚然的脑筋急转弯): private f
是否有解析为公用文件夹的属性?显然,我不想在目录结构中对“c:\users\public”进行硬编码,但我找不到预定义的 Property解决这个问题。是否有一种可接受的方式来指定要在此处安装和/或在
我试图将值从一个类传递到另一个类。 subPanel1 类读取全局变量,但当我通过调整监听器更新这些变量时,它不会更改值。我试图将 rc、gc 和 bc 变量从 subPanel2 类传递到 subP
我想使用具有自动属性的干净且编码较少的类。所有属性(property)都是公共(public)的。在同一类的方法中我也使用了该属性。因此,我认为这种方法是可混搭的,因为我将公共(public)属性用于
不久前,我在 Android 应用程序中创建了一个 SQLiteHelper 类。我不是 100% 确定原因,但表名和列名是嵌套公共(public)静态抽象类中的公共(public)静态最终字段。我记
这个问题已经有答案了: Cannot make a static reference to the non-static method (8 个回答) 已关闭 3 年前。 我正在为类(class)做一
我是一名优秀的程序员,十分优秀!