java注释 common-annotations

进入common-annotations.jar所在目录

执行:
mvn install:install-file -DgroupId=javax -DartifactId=common-annotations -Dversion=1.0 -Dpackaging=jar -Dfile=common-annotations.jar

pom.xml中添加:

<dependency>
<groupId>javax</groupId>
<artifactId>common-annotations</artifactId>
<version>1.0</version>
<type>jar</type>
<scope>compile</scope>
</dependency>

你可能感兴趣的:(Annotations)