-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: remove default maven central registry (#13950)
* fix: remove default maven central registry * chore: simplify maven extract tests Co-authored-by: Rhys Arkins <rhys@arkins.net> Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
- Loading branch information
1 parent
1525d38
commit ead221d
Showing
6 changed files
with
129 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
|
||
|
||
|
||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0"> | ||
|
||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>org.example</groupId> | ||
<artifactId>ExamplePomFile</artifactId> | ||
|
||
<name>Example</name> | ||
<version>0.0.1</version> | ||
<description>Minimal example</description> | ||
<url>http://example.org/index.html</url> | ||
|
||
<scm> | ||
<url>http://example.org/src.git</url> | ||
</scm> | ||
|
||
<issueManagement> | ||
<url>http://example.org/</url> | ||
</issueManagement> | ||
|
||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.example</groupId> | ||
<artifactId>foo</artifactId> | ||
<version>0.0.1</version> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.example</groupId> | ||
<artifactId>quuz</artifactId> | ||
<version>1.2.3</version> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
<profiles> | ||
<profile> | ||
<id>profile-id</id> | ||
<reporting> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.example</groupId> | ||
<artifactId>profile-build-artefact</artifactId> | ||
<version>2.17</version> | ||
<configuration> | ||
<configLocation>google_checks.xml</configLocation> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</reporting> | ||
</profile> | ||
</profiles> | ||
|
||
<repositories> | ||
<repository> | ||
<id>nonsense</id> | ||
<name>The item without url</name> | ||
</repository> | ||
</repositories> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.