Skip to content

Commit

Permalink
feat: added jandex index (#15)
Browse files Browse the repository at this point in the history
mcollovati authored Aug 20, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 4886125 commit 62cfbeb
Showing 5 changed files with 30 additions and 6 deletions.
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -18,6 +18,16 @@ buildNumber.properties
node/
node_modules/

twitter-widgets-addon/package.json
twitter-widgets-addon/package-lock.json
twitter-widgets-addon/pnpm-lock.yaml
twitter-widgets-addon/pnpmfile.js
twitter-widgets-addon/tsconfig.json
twitter-widgets-addon/types.d.ts
twitter-widgets-addon/webpack.*.js
twitter-widgets-addon/vite.*.js
twitter-widgets-addon/frontend/

demos/**/package.json
demos/**/package-lock.json
demos/**/pnpm-lock.yaml
1 change: 0 additions & 1 deletion demos/demo-commons/pom.xml
Original file line number Diff line number Diff line change
@@ -31,7 +31,6 @@
<plugin>
<groupId>org.jboss.jandex</groupId>
<artifactId>jandex-maven-plugin</artifactId>
<version>1.2.2</version>
<executions>
<execution>
<id>make-index</id>
3 changes: 0 additions & 3 deletions demos/quarkus/src/main/resources/application.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
quarkus.http.test-port=8888
quarkus.http.host=0.0.0.0

quarkus.index-dependency.twitter-widgets-addon.group-id=org.vaadin.addon
quarkus.index-dependency.twitter-widgets-addon.artifact-id=twitter-widgets
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -60,6 +60,7 @@
<maven-surefire-plugin.version>3.0.0-M5</maven-surefire-plugin.version>
<jacoco-maven-plugin.version>0.8.7</jacoco-maven-plugin.version>
<license-maven-plugin.version>4.1</license-maven-plugin.version>
<jandex-maven-plugin.version>1.2.3</jandex-maven-plugin.version>
<junit.version>4.13.2</junit.version>
<assertj.version>3.22.0</assertj.version>
<maven-checkstyle-plugin.version>3.1.2</maven-checkstyle-plugin.version>
@@ -203,6 +204,11 @@
<linkXRef>false</linkXRef>
</configuration>
</plugin>
<plugin>
<groupId>org.jboss.jandex</groupId>
<artifactId>jandex-maven-plugin</artifactId>
<version>${jandex-maven-plugin.version}</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
16 changes: 14 additions & 2 deletions twitter-widgets-addon/pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?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/maven-v4_0_0.xsd">
<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.vaadin.addon</groupId>
@@ -124,7 +125,18 @@
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.jboss.jandex</groupId>
<artifactId>jandex-maven-plugin</artifactId>
<executions>
<execution>
<id>make-index</id>
<goals>
<goal>jandex</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>

0 comments on commit 62cfbeb

Please sign in to comment.