Skip to content

Commit

Permalink
adding annotation indexer
Browse files Browse the repository at this point in the history
  • Loading branch information
madhephaestus committed Aug 12, 2024
1 parent 14260ba commit 38e55be
Show file tree
Hide file tree
Showing 5 changed files with 680 additions and 0 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jenkins-ci</groupId>
<artifactId>jenkins</artifactId>
<version>1.26</version>
</parent>

<artifactId>annotation-indexer</artifactId>
<name>Annotation Indexer</name>
<version>1.4</version>
<description>
Creates index of annotations.
</description>

<dependencies>
<dependency>
<groupId>org.kohsuke.metainf-services</groupId>
<artifactId>metainf-services</artifactId>
<version>1.4</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jolira</groupId>
<artifactId>hickory</artifactId>
<version>1.0.0</version>
<scope>test</scope>
</dependency>
</dependencies>

<scm>
<connection>scm:git:git://github.com/jenkinsci/lib-${project.artifactId}.git</connection>
<developerConnection>scm:git:[email protected]:jenkinsci/lib-${project.artifactId}.git</developerConnection>
</scm>

<licenses>
<license>
<name>MIT License</name>
<url>http://jenkins-ci.org/mit-license</url>
</license>
</licenses>

</project>
Loading

0 comments on commit 38e55be

Please sign in to comment.