52 lines
1.5 KiB
Plaintext
52 lines
1.5 KiB
Plaintext
<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>
|
|
|
|
<developers>
|
|
<developer>
|
|
<name>Jetbrains developpers</name>
|
|
<email>support@jetbrains.com</email>
|
|
<organization>Jetbrains</organization>
|
|
<organizationUrl>http://www.jetbrains.com</organizationUrl>
|
|
<timezone>+1</timezone>
|
|
</developer>
|
|
</developers>
|
|
|
|
<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> |