COMMIT FIRST
parent
030e4f2809
commit
56e6fd1118
6
pom.xml
6
pom.xml
|
@ -57,19 +57,19 @@
|
|||
<repository>
|
||||
<id>dragon-release</id>
|
||||
<name>dragon-releases</name>
|
||||
<url>http://10.100.1.7:8081/repository/maven-releases/</url>
|
||||
<url>http://47.120.48.225:8081/repository/maven-public/</url>
|
||||
</repository>
|
||||
</distributionManagement>
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>dragon-public</id>
|
||||
<name>dragon-maven</name>
|
||||
<url>http://10.100.1.7:8081/repository/maven-public/</url>
|
||||
<url>http://47.120.48.225:8081/repository/maven-public/</url>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>public</id>
|
||||
<name>aliyun nexus</name>
|
||||
<url>http://10.100.1.7:8081/repository/maven-releases/</url>
|
||||
<url>http://47.120.48.225:8081/repository/maven-public/</url>
|
||||
<releases>
|
||||
<enabled>true</enabled>
|
||||
</releases>
|
||||
|
|
|
@ -0,0 +1,18 @@
|
|||
package com.vehicle;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
/**
|
||||
* @author 冯凯
|
||||
* @version 1.0
|
||||
* @description:
|
||||
* @date 2023/11/28 10:33
|
||||
*/
|
||||
@SpringBootApplication
|
||||
public class VehicleTestApp {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(VehicleTestApp.class,args);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue