maven 无法依赖 oracle 解决方案

添加以下即可

<project>
    <repositories>
		<repository>
			<id>spring-snapshots</id>
			<name>Spring Snapshots</name>
			<url>https://repo.spring.io/snapshot</url>
			<snapshots>
				<enabled>true</enabled>
			</snapshots>
		</repository>
		<repository>
			<id>spring-milestones</id>
			<name>Spring Milestones</name>
			<url>https://repo.spring.io/milestone</url>
			<snapshots>
				<enabled>false</enabled>
			</snapshots>
		</repository>
		<!-- <repository>
			<id>snapshots</id>
			<url>http://130.233.201.205:8085/nexus/content/groups/public/</url>
		</repository> -->
		<repository> 
		 <id>aliyun</id> 
		 <url>http://maven.aliyun.com/nexus/content/groups/public/</url> 
		</repository>
		
	</repositories>
</project>

猜你喜欢

转载自blog.csdn.net/zheng199172/article/details/82972778