Commit 4bae3992 authored by liaozan's avatar liaozan 🏀

add maven-plugin fetch settings

parent 7ac05582
...@@ -79,6 +79,8 @@ ...@@ -79,6 +79,8 @@
<!-- maven plugins --> <!-- maven plugins -->
<flatten-maven-plugin.version>1.2.7</flatten-maven-plugin.version> <flatten-maven-plugin.version>1.2.7</flatten-maven-plugin.version>
<integration-maven-plugin.version>1.0.0-SNAPSHOT</integration-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> </properties>
<dependencyManagement> <dependencyManagement>
...@@ -500,12 +502,54 @@ ...@@ -500,12 +502,54 @@
<distributionManagement> <distributionManagement>
<repository> <repository>
<id>libs-releases</id> <id>libs-releases</id>
<url>https://maven.schbrain.com/repository/maven-releases/</url> <url>${maven.repository.url}/maven-releases</url>
</repository> </repository>
<snapshotRepository> <snapshotRepository>
<id>libs-snapshots</id> <id>libs-snapshots</id>
<url>https://maven.schbrain.com/repository/maven-snapshots/</url> <url>${maven.repository.url}/maven-snapshots</url>
</snapshotRepository> </snapshotRepository>
</distributionManagement> </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> </project>
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment