Commit d64dab0c by cc150520900118

打包配置

parent b7b7220b
......@@ -8,8 +8,5 @@
<version>0.0.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>common_utils</artifactId>
</project>
\ No newline at end of file
......@@ -61,5 +61,15 @@
<version>2.6.0</version>
</dependency>-->
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>
\ No newline at end of file
......@@ -2,11 +2,13 @@ package com.founder.servicebase.exceptionhandler;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
@Data
@AllArgsConstructor //生成有参数构造方法
@NoArgsConstructor //生成无参数构造
@EqualsAndHashCode(callSuper=true)
public class GuliException extends RuntimeException {
private Integer code;//状态码
private String msg;//异常信息
......
......@@ -65,17 +65,17 @@
<artifactId>mysql-connector-java</artifactId>
</dependency>
<!--ojdbc-->
<!--<dependency>
<dependency>
<groupId>org.oracle</groupId>
<artifactId>ojdbc-10</artifactId>
<artifactId>ojdbc6-10</artifactId>
<version>10</version>
<scope>system</scope>
<systemPath>${project.basedir}/../libs/ojdbc-10.jar</systemPath>
</dependency>-->
<dependency>
<systemPath>${project.basedir}/../lib/ojdbc6-10.jar</systemPath>
</dependency>
<!-- <dependency>
<groupId>org.oracle</groupId>
<artifactId>ojdbc6</artifactId>
</dependency>
</dependency>-->
<!-- velocity 模板引擎, Mybatis Plus 代码生成器需要 -->
<dependency>
<groupId>org.apache.velocity</groupId>
......
......@@ -13,7 +13,6 @@
<module>asjapi</module>
<module>carapi</module>
<module>imageapi</module>
<module>imageapi</module>
<module>peopleapi</module>
</modules>
<artifactId>serviceapi</artifactId>
......
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