Maven Repository - POM file for Development annotations 12.0 12.0

Summary

IntelliJ IDEA Annotations.

A set of annotations used for code inspection support and code documentation..

Declaration

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.

License

Name:Apache License 2
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.





Depended by

The following table lists the most popular artifacts which are depending on annotations-12.0. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
Androidrobolectric 2.2
An alternative Android testing framework.
10

Plugin

The following plugins are used in the annotations-12.0.jar

  1. maven-compiler-plugin

Packages

The following packages are defined in the annotations-12.0.jar

org.intellij.lang.annotations
org.jetbrains.annotations

POM File Source

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>