kotlin-jdk-annotations
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-jdk-annotations</artifactId> <version>1.0.0</version> </dependency>
<?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> <properties> <maven-plugin-anno.version>1.4.1</maven-plugin-anno.version> <maven.version>3.0.4</maven.version> </properties> <parent> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-project</artifactId> <version>1.0.0</version> <relativePath>../../pom.xml</relativePath> </parent> <artifactId>kotlin-jdk-annotations</artifactId> <packaging>pom</packaging> <description>External annotations for JDK</description> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>1.7</version> <executions> <execution> <id>attach-artifacts</id> <phase>compile</phase> <goals> <goal>attach-artifact</goal> </goals> <configuration> <artifacts> <artifact> <file>${kotlin-sdk}/lib/kotlin-jdk-annotations.jar</file> <type>jar</type> </artifact> </artifacts> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>