IntelliJ IDEA Annotations.
A set of annotations used for code inspection support and code documentation..
Here is the list of declaration for annotations. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.intellij</groupId> <artifactId>annotations</artifactId> <version>12.0</version> </dependency>
If you think this Maven repository POM file listing for annotations is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:Apache License 2
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.
The following table lists the most popular artifacts which are depending on annotations-12.0. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Android | robolectric 2.2 An alternative Android testing framework. | 10 |
The following plugins are used in the annotations-12.0.jar
The following packages are defined in the annotations-12.0.jar
org.intellij.lang.annotations org.jetbrains.annotations
Here is the content of the POM file.
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.intellij</groupId> <artifactId>annotations</artifactId> <version>12.0</version> <packaging>jar</packaging> <name>IntelliJ IDEA Annotations</name> <url>http://www.jetbrains.org</url> <description> A set of annotations used for code inspection support and code documentation. </description> <licenses> <license> <name>Apache License 2</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/JetBrains/intellij-community</url> <connection>ssh://git@github.com:JetBrains/intellij-community.git</connection> </scm> <dependencies/> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> </plugins> </build> </project>