Download j2objc-annotations-1.1.jar file

Introduction

You can download j2objc-annotations-1.1.jar in this page.

License

The Apache Software License, Version 2.0

Type List

j2objc-annotations-1.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.google.j2objc/j2objc-annotations/pom.properties
META-INF/maven/com.google.j2objc/j2objc-annotations/pom.xml
com.google.j2objc.annotations.AutoreleasePool.class
com.google.j2objc.annotations.J2ObjCIncompatible.class
com.google.j2objc.annotations.LoopTranslation.class
com.google.j2objc.annotations.ObjectiveCName.class
com.google.j2objc.annotations.Property.class
com.google.j2objc.annotations.ReflectionSupport.class
com.google.j2objc.annotations.RetainedLocalRef.class
com.google.j2objc.annotations.RetainedWith.class
com.google.j2objc.annotations.Weak.class
com.google.j2objc.annotations.WeakOuter.class

Pom

j2objc-annotations-1.1.pom file content.

<!--
  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

  http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.

  Maven project to build and deploy J2ObjC annotations.
  -->

<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>

  <parent>
    <groupId>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>7</version>
  </parent>

  <groupId>com.google.j2objc</groupId>
  <artifactId>j2objc-annotations</artifactId>
  <packaging>jar</packaging>
  <version>1.1</version>

  <name>J2ObjC Annotations</name>
  <description>
    A set of annotations that provide additional information to the J2ObjC
    translator to modify the result of translation.
  </description>
  <url>https://github.com/google/j2objc/</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>
    </license>
  </licenses>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <version>2.10.3</version>
        <executions>
          <execution>
            <id>generate-docs</id>
            <phase>package</phase>
            <goals><goal>jar</goal></goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <version>2.4</version>
        <executions>
          <execution>
            <id>generate-sources</id>
            <phase>package</phase>
            <goals><goal>jar-no-fork</goal></goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-gpg-plugin</artifactId>
        <version>1.6</version>
        <executions>
          <execution>
            <id>sign-artifacts</id>
            <phase>verify</phase>
            <goals><goal>sign</goal></goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>

POM Entry

<dependency>
   <groupId>com.google.j2objc</groupId>
   <artifactId>j2objc-annotations</artifactId>
   <version>1.1</version>
</dependency>

Download

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



Download j2objc-annotations-1.1.jar file




PreviousNext

Related