更改Maven远程仓库

  <profiles>
	  <profile>
			<id>dev</id>  
			<!-- repositories and pluginRepositories here-->  
			<repositories>
				<repository>
					<id>nexus-jcenter</id>
					<name>Nexus jcenter</name>
					<url>http://jcenter.bintray.com/</url>
					<releases>
						<enabled>true</enabled>
					</releases>
					<snapshots>
						<enabled>true</enabled>
					</snapshots>
				</repository>
			</repositories>
		</profile>
  </profiles>
  
  

	<activeProfiles>
		<activeProfile>dev</activeProfile>  
	</activeProfiles>

 

posted @ 2017-11-09 20:39  傻蛋柒号  阅读(1)  评论(0)    收藏  举报