Download annotations-java5-15.0.jar file

Introduction

You can download annotations-java5-15.0.jar in this page.

License

The Apache Software License, Version 2.0

Type List

annotations-java5-15.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.jetbrains/annotations-java5/pom.properties
META-INF/maven/org.jetbrains/annotations-java5/pom.xml
org.intellij.lang.annotations.Flow.class
org.intellij.lang.annotations.Identifier.class
org.intellij.lang.annotations.JdkConstants.class
org.intellij.lang.annotations.Language.class
org.intellij.lang.annotations.MagicConstant.class
org.intellij.lang.annotations.Pattern.class
org.intellij.lang.annotations.PrintFormat.class
org.intellij.lang.annotations.PrintFormatPattern.class
org.intellij.lang.annotations.RegExp.class
org.intellij.lang.annotations.Subst.class
org.jetbrains.annotations.Contract.class
org.jetbrains.annotations.Nls.class
org.jetbrains.annotations.NonNls.class
org.jetbrains.annotations.NotNull.class
org.jetbrains.annotations.Nullable.class
org.jetbrains.annotations.PropertyKey.class
org.jetbrains.annotations.TestOnly.class

Pom

annotations-java5-15.0.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<project
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
        xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

    <modelVersion>4.0.0</modelVersion>

    <groupId>org.jetbrains</groupId>
    <artifactId>annotations-java5</artifactId>
    <version>15.0</version>
    <packaging>jar</packaging>

    <name>IntelliJ IDEA Annotations</name>
    <description>A set of annotations used for code inspection support and code documentation.</description>
    <url>http://www.jetbrains.org</url>

    <licenses>
        <license>
            <name>The Apache Software License, Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
            <distribution>repo</distribution>
            <comments>A business-friendly OSS license</comments>
        </license>
    </licenses>

    <scm>
        <url>https://github.com/JetBrains/intellij-community</url>
        <connection>scm:git:https://github.com/JetBrains/intellij-community.git</connection>
    </scm>

    <developers>
        <developer>
            <id>JetBrains</id>
            <name>JetBrains Team</name>
            <organization>JetBrains</organization>
            <organizationUrl>https://www.jetbrains.com</organizationUrl>
        </developer>
    </developers>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <profiles>
        <profile>
            <id>java5</id>
            <properties>
                <java.source.level>1.5</java.source.level>
                <annotations.src.dir.name>java5</annotations.src.dir.name>
            </properties>
        </profile>
        <profile>
            <id>java8</id>
            <properties>
                <java.source.level>1.8</java.source.level>
                <annotations.src.dir.name>java8</annotations.src.dir.name>
            </properties>
            <build>
            </build>
        </profile>
    </profiles>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-antrun-plugin</artifactId>
                <version>1.7</version>
                <executions>
                    <execution>
                        <phase>generate-sources</phase>
                        <configuration>
                            <tasks>
                                <delete dir="${basedir}/src/main/java" />
                                <mkdir dir="${basedir}/src/main/java" />
                                <copy todir="${basedir}/src/main/java">
                                    <fileset dir="${basedir}/../../../../community/platform/annotations/common/src" />
                                    <fileset dir="${basedir}/../../../../community/platform/annotations/java5/src" />
                                </copy>
                            </tasks>
                        </configuration>
                        <goals>
                            <goal>run</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <configuration>
                    <source>1.5</source>
                    <target>1.5</target>
                </configuration>
            </plugin>

            <plugin>
                <artifactId>maven-gpg-plugin</artifactId>
                <version>1.4</version>
                <configuration>
                    <keyname>66770193</keyname>
                    <homedir>${basedir}/../.gnupg</homedir>
                </configuration>
                <executions>
                    <execution>
                        <id>sign-artifacts</id>
                        <phase>verify</phase>
                        <goals>
                            <goal>sign</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-source-plugin</artifactId>
            <version>2.1.2</version>
            <executions>
              <execution>
                <id>attach-sources</id>
                <goals>
                  <goal>jar</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-javadoc-plugin</artifactId>
            <version>2.9.1</version>
            <executions>
              <execution>
                <id>attach-javadocs</id>
                <goals>
                  <goal>jar</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
        </plugins>
    </build>

    <distributionManagement>
        <repository>
            <id>sonatype-nexus-staging</id>
            <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
        </repository>
        <snapshotRepository>
            <id>sonatype-nexus-snapshots</id>
            <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
        </snapshotRepository>
    </distributionManagement>

</project>

POM Entry

<dependency>
   <groupId>org.jetbrains</groupId>
   <artifactId>annotations-java5</artifactId>
   <version>15.0</version>
</dependency>

Download

If you think the following annotations-java5-15.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download annotations-java5-15.0.jar file




PreviousNext

Related