You can download jandex-2.0.2.final.jar in this page.
AL 2.0
jandex-2.0.2.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.AnnotationTargetFilterCollection.class org.jboss.jandex.AnnotationValue.class org.jboss.jandex.ArrayType.class org.jboss.jandex.ClassExtendsTypeTarget.class org.jboss.jandex.ClassInfo.class org.jboss.jandex.ClassType.class org.jboss.jandex.CompositeIndex.class org.jboss.jandex.DotName.class org.jboss.jandex.EmptyTypeTarget.class org.jboss.jandex.FieldInfo.class org.jboss.jandex.FieldInfoGenerator.class org.jboss.jandex.FieldInternal.class org.jboss.jandex.GenericSignatureParser.class org.jboss.jandex.Index.class org.jboss.jandex.IndexReader.class org.jboss.jandex.IndexReaderImpl.class org.jboss.jandex.IndexReaderV1.class org.jboss.jandex.IndexReaderV2.class org.jboss.jandex.IndexView.class org.jboss.jandex.IndexWriter.class org.jboss.jandex.IndexWriterImpl.class org.jboss.jandex.IndexWriterV1.class org.jboss.jandex.IndexWriterV2.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.MethodInfoGenerator.class org.jboss.jandex.MethodInternal.class org.jboss.jandex.MethodParameterInfo.class org.jboss.jandex.MethodParameterTypeTarget.class org.jboss.jandex.NameTable.class org.jboss.jandex.PackedDataInputStream.class org.jboss.jandex.PackedDataOutputStream.class org.jboss.jandex.ParameterizedType.class org.jboss.jandex.PositionBasedTypeTarget.class org.jboss.jandex.PrimitiveType.class org.jboss.jandex.Result.class org.jboss.jandex.StrongInternPool.class org.jboss.jandex.ThrowsTypeTarget.class org.jboss.jandex.Type.class org.jboss.jandex.TypeParameterBoundTypeTarget.class org.jboss.jandex.TypeParameterTypeTarget.class org.jboss.jandex.TypeTarget.class org.jboss.jandex.TypeVariable.class org.jboss.jandex.UnresolvedTypeVariable.class org.jboss.jandex.UnsupportedVersion.class org.jboss.jandex.Utils.class org.jboss.jandex.VoidType.class org.jboss.jandex.WildcardType.class
jandex-2.0.2.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> <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> <groupId>org.jboss</groupId> <artifactId>jandex</artifactId> <version>2.0.2.Final</version> <name>Java Annotation Indexer</name> <packaging>bundle</packaging> <licenses> <license> <name>Apache 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-compiler-plugin</artifactId> <version>2.1</version> <configuration> <debug>true</debug> <source>1.6</source> <target>1.6</target> <showDeprecation>true</showDeprecation> <showWarnings>true</showWarnings> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <doclet>org.jboss.apiviz.APIviz</doclet> <docletArtifact> <groupId>org.jboss.apiviz</groupId> <artifactId>apiviz</artifactId> <version>1.3.2.GA</version> </docletArtifact> <useStandardDocletOptions>true</useStandardDocletOptions> <charset>UTF-8</charset> <encoding>UTF-8</encoding> <docencoding>UTF-8</docencoding> <breakiterator>true</breakiterator> <version>true</version> <author>true</author> <keywords>true</keywords> <additionalparam> -sourceclasspath ${project.build.outputDirectory} </additionalparam> <docfilessubdirs>true</docfilessubdirs> <top><![CDATA[ <script src="doc-files/addSyntax.js" type="text/javascript"></script> <script src="doc-files/shCore.js" type="text/javascript"></script> <script src="doc-files/shBrushJava.js" type="text/javascript"></script> ]]></top> <footer><![CDATA[ <script type="text/javascript"> SyntaxHighlighter.defaults["auto-links"] = false; SyntaxHighlighter.defaults["tab-size"] = 2; SyntaxHighlighter.defaults["toolbar"] = false; SyntaxHighlighter.all(); </script> ]]></footer> </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>${project.groupId}.${project.artifactId}</Bundle-SymbolicName> <Bundle-Version>${project.version}</Bundle-Version> <Export-Package> org.jboss.jandex;version="${project.version}" </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.jboss.jandex</groupId> <artifactId>typeannotation-test</artifactId> <version>1.0</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>
<dependency> <groupId>org.jboss</groupId> <artifactId>jandex</artifactId> <version>2.0.2.final</version> </dependency>
If you think the following jandex-2.0.2.final.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download jandex-2.0.2.final.jar file