Home | History | Annotate | Download | only in 12.0
      1 <project xmlns="http://maven.apache.org/POM/4.0.0"
      2          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      3          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
      4   <modelVersion>4.0.0</modelVersion>
      5   <groupId>com.intellij</groupId>
      6   <artifactId>annotations</artifactId>
      7   <version>12.0</version>
      8   <packaging>jar</packaging>
      9   <name>IntelliJ IDEA Annotations</name>
     10   <url>http://www.jetbrains.org</url>
     11     <description>
     12         A set of annotations used for code inspection support and code documentation.
     13     </description>
     14   <licenses>
     15     <license>
     16       <name>Apache License 2</name>
     17       <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
     18       <distribution>repo</distribution>
     19     </license>
     20   </licenses>
     21 
     22   <developers>
     23     <developer>
     24       <name>Jetbrains developpers</name>
     25       <email>support (a] jetbrains.com</email>
     26       <organization>Jetbrains</organization>
     27       <organizationUrl>http://www.jetbrains.com</organizationUrl>
     28       <timezone>+1</timezone>
     29     </developer>
     30   </developers>
     31 
     32   <scm>
     33       <url>https://github.com/JetBrains/intellij-community</url>
     34       <connection>ssh://git (a] github.com:JetBrains/intellij-community.git</connection>
     35   </scm>
     36 
     37 
     38   <dependencies/>
     39 
     40   <build>
     41     <plugins>
     42       <plugin>
     43         <groupId>org.apache.maven.plugins</groupId>
     44         <artifactId>maven-compiler-plugin</artifactId>
     45         <configuration>
     46           <source>1.5</source>
     47           <target>1.5</target>
     48         </configuration>
     49       </plugin>
     50     </plugins>
     51   </build>
     52 </project>