You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
3.0 KiB
103 lines
3.0 KiB
3 years ago
|
<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.facebook.infer.annotation</groupId>
|
||
|
<artifactId>infer-annotation</artifactId>
|
||
|
<version>0.18.1-SNAPSHOT</version>
|
||
|
<packaging>jar</packaging>
|
||
|
<description>Annotations for the Infer static analyzer</description>
|
||
|
<url>http://fbinfer.com/</url>
|
||
|
|
||
|
<properties>
|
||
|
<maven.compiler.source>1.7</maven.compiler.source>
|
||
|
<maven.compiler.target>1.7</maven.compiler.target>
|
||
|
</properties>
|
||
|
|
||
|
<licenses>
|
||
|
<license>
|
||
|
<name>MIT license</name>
|
||
|
<url>https://github.com/facebook/infer/blob/master/LICENSE</url>
|
||
|
<distribution>repo</distribution>
|
||
|
</license>
|
||
|
</licenses>
|
||
|
|
||
|
<scm>
|
||
|
<connection>scm:git:git@github.com:facebook/infer.git</connection>
|
||
|
<developerConnection>scm:git:git@github.com:facebook/infer.git</developerConnection>
|
||
|
<url>https://github.com/facebook/infer</url>
|
||
|
<tag>infer-annotation-0.18.0</tag>
|
||
|
</scm>
|
||
|
|
||
|
<developers>
|
||
|
</developers>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>org.sonatype.oss</groupId>
|
||
|
<artifactId>oss-parent</artifactId>
|
||
|
<version>7</version>
|
||
|
</parent>
|
||
|
|
||
|
<pluginRepositories>
|
||
|
<pluginRepository>
|
||
|
<id>sonatype-nexus-snapshots</id>
|
||
|
<name>Sonatype Nexus Snapshots</name>
|
||
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
||
|
<releases>
|
||
|
<enabled>true</enabled>
|
||
|
</releases>
|
||
|
<snapshots>
|
||
|
<enabled>false</enabled>
|
||
|
</snapshots>
|
||
|
</pluginRepository>
|
||
|
</pluginRepositories>
|
||
|
|
||
|
<distributionManagement>
|
||
|
<repository>
|
||
|
<id>sonatype-nexus-staging</id>
|
||
|
<name>Nexus Release Repository</name>
|
||
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
||
|
</repository>
|
||
|
</distributionManagement>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>com.google.code.findbugs</groupId>
|
||
|
<artifactId>jsr305</artifactId>
|
||
|
<version>3.0.1</version>
|
||
|
</dependency>
|
||
|
<!-- https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-annotations-jvm -->
|
||
|
<dependency>
|
||
|
<groupId>org.jetbrains.kotlin</groupId>
|
||
|
<artifactId>kotlin-annotations-jvm</artifactId>
|
||
|
<version>1.3.72</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-release-plugin</artifactId>
|
||
|
<version>2.5.3</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>default</id>
|
||
|
<goals>
|
||
|
<goal>perform</goal>
|
||
|
</goals>
|
||
|
<configuration>
|
||
|
<pomFileName>infer/annotations/pom.xml</pomFileName>
|
||
|
</configuration>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||
|
<version>3.1.1</version>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
</project>
|