Download jandex-1.2.3.final.jar file

Introduction

You can download jandex-1.2.3.final.jar in this page.

License

AL 2.0

Type List

jandex-1.2.3.final.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.jboss/jandex/pom.properties
META-INF/maven/org.jboss/jandex/pom.xml
org.jboss.jandex.AnnotationInstance.class
org.jboss.jandex.AnnotationTarget.class
org.jboss.jandex.AnnotationValue.class
org.jboss.jandex.ClassInfo.class
org.jboss.jandex.CompositeIndex.class
org.jboss.jandex.DotName.class
org.jboss.jandex.FieldInfo.class
org.jboss.jandex.Index.class
org.jboss.jandex.IndexReader.class
org.jboss.jandex.IndexView.class
org.jboss.jandex.IndexWriter.class
org.jboss.jandex.Indexer.class
org.jboss.jandex.JandexAntTask.class
org.jboss.jandex.JarIndexer.class
org.jboss.jandex.Main.class
org.jboss.jandex.MethodInfo.class
org.jboss.jandex.MethodParameterInfo.class
org.jboss.jandex.PackedDataInputStream.class
org.jboss.jandex.PackedDataOutputStream.class
org.jboss.jandex.Result.class
org.jboss.jandex.StrongInternPool.class
org.jboss.jandex.Type.class
org.jboss.jandex.UnsupportedVersion.class

Pom

jandex-1.2.3.final.pom file content.

<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>
    <properties>
        <jandexVersion>1.2.3.Final</jandexVersion>
        <maven.compiler.source>1.6</maven.compiler.source>
        <maven.compiler.target>1.6</maven.compiler.target>
        <jdk.min.version>1.6</jdk.min.version>
    </properties>
    
    <parent>
        <groupId>org.jboss</groupId>
        <artifactId>jboss-parent</artifactId>
        <version>12</version>
    </parent>
    <artifactId>jandex</artifactId>
    <version>${jandexVersion}</version>
    <name>Java Annotation Indexer</name>
    <packaging>bundle</packaging>

    <licenses>
        <license>
            <name>AL 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-jar-plugin</artifactId>
                <version>2.3.1</version>
                <configuration>
                <archive>
                    <index>true</index>
                    <manifest>
                        <mainClass>org.jboss.jandex.Main</mainClass>
                    </manifest>
                </archive>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <version>2.3.7</version>
                <extensions>true</extensions>
                <configuration>
                    <archive>
                        <index>true</index>
                        <manifest>
                            <mainClass>org.jboss.jandex.Main</mainClass>
                        </manifest>
                    </archive>
                    <instructions>
                        <Bundle-SymbolicName>${pom.groupId}.${pom.artifactId}</Bundle-SymbolicName>
                        <Bundle-Version>${jandexVersion}</Bundle-Version>
                        <Export-Package>
                            org.jboss.jandex;version="${jandexVersion}"
                        </Export-Package>
                        <Import-Package>
                            org.apache.tools.ant;resolution:=optional,
                            org.apache.tools.ant.types;resolution:=optional,
                            *
                        </Import-Package>
                        <!-- Without the -nouses BND directive, the org.jboss.jandex export will get the optional 
                        ant packages in a "uses" clause. -->
                        <_nouses>true</_nouses>
                    </instructions>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.7</version>
            <type>jar</type>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.ant</groupId>
            <artifactId>ant</artifactId>
            <version>1.8.1</version>
            <scope>provided</scope>
            <optional>true</optional>
        </dependency>
    </dependencies>
</project>

POM Entry

<dependency>
   <groupId>org.jboss</groupId>
   <artifactId>jandex</artifactId>
   <version>1.2.3.final</version>
</dependency>

Download

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



Download jandex-1.2.3.final.jar file




PreviousNext

Related