This commit is contained in:
linfso 2024-07-28 17:28:50 +08:00
parent ef54839698
commit d6eb379685
3 changed files with 16 additions and 5 deletions

View File

@ -7,11 +7,11 @@
<sourceOutputDir name="target/generated-sources/annotations" /> <sourceOutputDir name="target/generated-sources/annotations" />
<sourceTestOutputDir name="target/generated-test-sources/test-annotations" /> <sourceTestOutputDir name="target/generated-test-sources/test-annotations" />
<outputRelativeToContentRoot value="true" /> <outputRelativeToContentRoot value="true" />
<module name="emis-wms" />
<module name="emis-biz" />
<module name="emis-oms2c-web" /> <module name="emis-oms2c-web" />
<module name="emis-wms-web" /> <module name="emis-biz" />
<module name="emis-wms" />
<module name="emis-biz-web" /> <module name="emis-biz-web" />
<module name="emis-wms-web" />
</profile> </profile>
</annotationProcessing> </annotationProcessing>
<bytecodeTargetLevel> <bytecodeTargetLevel>
@ -23,4 +23,12 @@
<module name="emis-wms-web" target="8" /> <module name="emis-wms-web" target="8" />
</bytecodeTargetLevel> </bytecodeTargetLevel>
</component> </component>
<component name="JavacSettings">
<option name="ADDITIONAL_OPTIONS_OVERRIDE">
<module name="emis-biz" options="-extdirs $PROJECT_DIR$/emis-biz/lib" />
<module name="emis-biz-web" options="-extdirs $PROJECT_DIR$/emis-biz-web/lib" />
<module name="emis-wms" options="-extdirs $PROJECT_DIR$/emis-wms/lib" />
<module name="emis-wms-web" options="-extdirs $PROJECT_DIR$/emis-wms-web/lib" />
</option>
</component>
</project> </project>

View File

@ -169,8 +169,6 @@
<!-- <dependency>--> <!-- <dependency>-->
<!-- <groupId>com.fastreport</groupId>--> <!-- <groupId>com.fastreport</groupId>-->
<!-- <artifactId>fastreport</artifactId>--> <!-- <artifactId>fastreport</artifactId>-->

View File

@ -224,6 +224,11 @@
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version> <version>3.1</version>
<configuration> <configuration>
<encoding>UTF-8</encoding>
<compilerArguments>
<!-- 编译时使用 lib 目录下的外部 jar 包 -->
<extdirs>${project.basedir}/lib</extdirs>
</compilerArguments>
<source>${java.version}</source> <source>${java.version}</source>
<target>${java.version}</target> <target>${java.version}</target>
<encoding>${project.build.sourceEncoding}</encoding> <encoding>${project.build.sourceEncoding}</encoding>