Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
schbrain-parent
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
panwangnan
schbrain-parent
Commits
4bae3992
Commit
4bae3992
authored
Jan 18, 2022
by
liaozan
🏀
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add maven-plugin fetch settings
parent
7ac05582
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
46 additions
and
2 deletions
+46
-2
pom.xml
pom.xml
+46
-2
No files found.
pom.xml
View file @
4bae3992
...
...
@@ -79,6 +79,8 @@
<!-- maven plugins -->
<flatten-maven-plugin.version>
1.2.7
</flatten-maven-plugin.version>
<integration-maven-plugin.version>
1.0.0-SNAPSHOT
</integration-maven-plugin.version>
<maven.repository.url>
https://maven.schbrain.com/repository
</maven.repository.url>
</properties>
<dependencyManagement>
...
...
@@ -500,12 +502,54 @@
<distributionManagement>
<repository>
<id>
libs-releases
</id>
<url>
https://maven.schbrain.com/repository/maven-releases/
</url>
<url>
${maven.repository.url}/maven-releases
</url>
</repository>
<snapshotRepository>
<id>
libs-snapshots
</id>
<url>
https://maven.schbrain.com/repository/maven-snapshots/
</url>
<url>
${maven.repository.url}/maven-snapshots
</url>
</snapshotRepository>
</distributionManagement>
<repositories>
<repository>
<id>
libs-releases
</id>
<url>
${maven.repository.url}/maven-releases
</url>
<releases>
<enabled>
true
</enabled>
</releases>
<snapshots>
<enabled>
false
</enabled>
</snapshots>
</repository>
<repository>
<id>
libs-snapshots
</id>
<url>
${maven.repository.url}/maven-snapshots
</url>
<releases>
<enabled>
false
</enabled>
</releases>
<snapshots>
<updatePolicy>
always
</updatePolicy>
<enabled>
true
</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>
plugin-release
</id>
<url>
${maven.repository.url}/maven-releases
</url>
<snapshots>
<enabled>
false
</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>
plugin-snapshot
</id>
<url>
${maven.repository.url}/maven-snapshot
</url>
<snapshots>
<enabled>
true
</enabled>
<updatePolicy>
always
</updatePolicy>
</snapshots>
</pluginRepository>
</pluginRepositories>
</project>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment