我是IntelliJ的新手。尝试使用cofoja代码注释时,构建时会收到以下错误。
Error:java: error in contract: package com.google.java.contract.core.agent does not exist
Error:java: error in contract: package com.google.java.contract does not exist
我的项目针对的是Oracle JDK 1.7。我正在使用io.konverge和IntelliJ 14.1.4发布的cofoja版本。
<dependency>
<groupId>io.konverge</groupId>
<artifactId>cofoja</artifactId>
<version>2.0.0</version>
</dependency>
使用maven从命令行构建项目时,我没有收到遇到的错误。
编辑:
这是一个示例cofoja项目,可以使用maven很好地进行编译,但是我无法在IntelliJ中进行构建。
https://github.com/konvergeio/cofoja-example
我已在GitHub上的
cofoja
项目票证中附加了此项目的IntelliJ DEBUG构建日志:https://github.com/nhatminhle/cofoja/issues/45编辑2:
更新了特定于
cofoja-example
项目的问题。 最佳答案
我能够成功配置IntelliJ。希望有人觉得这很有用。
我必须为当前项目配置注释处理器。默认情况下已启用它,但没有对classoutput
,classpath
和sourcepath
设置进行适当的配置。我发现$PROJECT_DIR$
宏可以为适当的项目目录建立相对路径。 IntelliJ对我的本地Maven存储库有一个预配置的宏/变量,因此我用它来引用konvergeio的cofoja版本。
我截取了我的配置的屏幕截图:
IntelliJ生成的生成日志:
2015-07-12 14:04:11,448 [ 1223] DEBUG - s.incremental.java.JavaBuilder - Compiling chunk [cofoja-example] with options: "-g -deprecation -encoding UTF-8 -source 1.7 -target 1.7 -Acom.google.java.contract.sourcepath=/home/seglo/source/cofoja-example/src/main/java -Acom.google.java.contract.classpath=/home/seglo/.m2/repository/io/konverge/cofoja/2.0.0/cofoja-2.0.0.jar -Acom.google.java.contract.classoutput=/home/seglo/source/cofoja-example/target/classes -s /home/seglo/source/cofoja-example/target/generated-sources/annotations"
我将Nas的
cofoja-example
项目的分支推到了我的github。我包括了IntelliJ项目设置。https://github.com/seglo/cofoja-example
我项目的
.idea/compiler.xml
:<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CompilerConfiguration">
<option name="DEFAULT_COMPILER" value="Javac" />
<resourceExtensions />
<wildcardResourcePatterns>
<entry name="!?*.java" />
<entry name="!?*.form" />
<entry name="!?*.class" />
<entry name="!?*.groovy" />
<entry name="!?*.scala" />
<entry name="!?*.flex" />
<entry name="!?*.kt" />
<entry name="!?*.clj" />
<entry name="!?*.aj" />
</wildcardResourcePatterns>
<annotationProcessing>
<profile default="true" name="Default" enabled="false">
<processorPath useClasspath="true" />
</profile>
<profile default="false" name="Maven default annotation processors profile" enabled="true">
<sourceOutputDir name="target/generated-sources/annotations" />
<sourceTestOutputDir name="target/generated-test-sources/test-annotations" />
<outputRelativeToContentRoot value="true" />
<option name="com.google.java.contract.classoutput" value="$PROJECT_DIR$/target/classes" />
<option name="com.google.java.contract.classpath" value="$MAVEN_REPOSITORY$/io/konverge/cofoja/2.0.0/cofoja-2.0.0.jar" />
<option name="com.google.java.contract.sourcepath" value="$PROJECT_DIR$/src/main/java" />
<processorPath useClasspath="true" />
<module name="cofoja-example" />
</profile>
</annotationProcessing>
<bytecodeTargetLevel>
<module name="cofoja-example" target="1.7" />
</bytecodeTargetLevel>
</component>
</project>