在我的pom.xml中,我有scm设置。是否有mvn命令可以为我打开浏览器中的repo页面?
由于
ps:pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
...
<scm>
<url>scm:git:ssh://git@some.host:7999/projects/my-project.git</url>
<connection>scm:git:ssh://git@some.host:7999/projects/my-project.git</connection>
<developerConnection>scm:git:ssh://git@some.host:7999/projects/my-project.git</developerConnection>
</scm>
</project>