Commit 895b2dfe by Simon Cheng

mdev发布测试

parent 0836c707
eclipse.preferences.version=1
encoding//src/main/java=UTF-8
encoding//src/main/java/com/ajb/common/utils/string/StringUtil.java=UTF-8
encoding/<project>=UTF-8
......@@ -73,4 +73,18 @@
<version>3.9</version>
</dependency>
</dependencies>
<build>
<plugins>
<!-- Compiler 插件, 设定JDK版本 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<showWarnings>true</showWarnings>
</configuration>
</plugin>
</plugins>
</build>
</project>
......@@ -710,7 +710,7 @@ public class StringUtil {
}//get
}//for sourceMethod
} catch (IllegalAccessException | IllegalArgumentException | InvocationTargetException e) {
e.printStackTrace();
e.printStackTrace();
}
}
......@@ -843,4 +843,4 @@ public class StringUtil {
}
return flag;
}
}
}
\ No newline at end of file
......@@ -25,8 +25,8 @@
<modules>
<module>ajb-car-vo</module>
<module>ajb-car-entity</module>
<module>ajb-car-jpa</module>
<module>ajb-car-utils</module>
<module>ajb-car-jpa</module>
<module>ajb-car-api</module>
</modules>
<dependencies>
......
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