Skip to content

Commit

Permalink
Add Vert.x
Browse files Browse the repository at this point in the history
  • Loading branch information
GedMarc committed Apr 13, 2024
1 parent 9353d4c commit 83be6e1
Show file tree
Hide file tree
Showing 47 changed files with 2,727 additions and 382 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/maven-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -851,5 +851,37 @@ jobs:
SONA_PASSWORD: ${{secrets.SONA_PASSWORD}}
GPG_PASSPHRASE: ${{secrets.GPG_PASSPHRASE}}
GPG_PRIVATE_KEY: ${{secrets.GPG_PRIVATE_KEY}}
VertxCore:
uses: GuicedEE/Workflows/.github/workflows/projects.yml@master
needs:
- Guava
with:
baseDir: 'Vert.x/vertx-core/'
name: 'Vert.x Core'
publishToCentral: ${{inputs.centralRelease}}
secrets:
USERNAME: ${{secrets.USERNAME}}
USER_TOKEN: ${{secrets.USER_TOKEN}}
SONA_USERNAME: ${{secrets.SONA_USERNAME}}
SONA_PASSWORD: ${{secrets.SONA_PASSWORD}}
GPG_PASSPHRASE: ${{secrets.GPG_PASSPHRASE}}
GPG_PRIVATE_KEY: ${{secrets.GPG_PRIVATE_KEY}}
VertxRest:
uses: GuicedEE/Workflows/.github/workflows/projects.yml@master
needs:
- VertxCore
with:
baseDir: 'Vert.x/rest-vertx/'
name: 'Vert.x Rest'
publishToCentral: ${{inputs.centralRelease}}
secrets:
USERNAME: ${{secrets.USERNAME}}
USER_TOKEN: ${{secrets.USER_TOKEN}}
SONA_USERNAME: ${{secrets.SONA_USERNAME}}
SONA_PASSWORD: ${{secrets.SONA_PASSWORD}}
GPG_PASSPHRASE: ${{secrets.GPG_PASSPHRASE}}
GPG_PRIVATE_KEY: ${{secrets.GPG_PRIVATE_KEY}}




69 changes: 32 additions & 37 deletions Apache/CXF/apache-cxf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -99,43 +99,6 @@
<optional>true</optional>
</dependency>




<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>${spring.version}</version>
<optional>true</optional>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${spring.version}</version>
<optional>true</optional>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.version}</version>
<optional>true</optional>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>${spring.version}</version>
<optional>true</optional>
<scope>provided</scope>
</dependency>




</dependencies>

<dependencyManagement>
Expand Down Expand Up @@ -247,6 +210,38 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>${spring.version}</version>
<optional>true</optional>

</dependency>

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${spring.version}</version>
<optional>true</optional>

</dependency>

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.version}</version>
<optional>true</optional>

</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>${spring.version}</version>
<optional>true</optional>

</dependency>
</dependencies>
</plugin>
</plugins>
</build>
Expand Down
79 changes: 55 additions & 24 deletions Google/guava/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,13 @@
<groupId>jakarta.activation</groupId>
<artifactId>jakarta.activation-api</artifactId>
</dependency>
<!--
<dependency>
<groupId>jakarta.validation</groupId>
<artifactId>jakarta.validation-api</artifactId>
</dependency>
-->

<dependency>
<groupId>jakarta.annotation</groupId>
Expand All @@ -46,35 +48,19 @@
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<optional>true</optional>
</dependency>

<dependency>
<groupId>org.checkerframework</groupId>
<artifactId>checker-qual</artifactId>
<optional>true</optional>
</dependency>

<dependency>
<groupId>com.google.errorprone</groupId>
<artifactId>error_prone_annotations</artifactId>
<optional>true</optional>
<exclusions>
<exclusion>
<groupId>com.google.j2objc</groupId>
<artifactId>j2objc-annotations</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>com.google.guava</groupId>
<artifactId>listenablefuture</artifactId>
</dependency>

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

<dependency>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-annotations</artifactId>
</dependency>

<dependency>
<groupId>com.google.guava</groupId>
<artifactId>failureaccess</artifactId>
Expand All @@ -84,10 +70,15 @@
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
</dependency>
<dependency>
<groupId>com.google.protobuf.nano</groupId>
<artifactId>protobuf-javanano</artifactId>
<version>3.2.0rc2</version>
<optional>true</optional>
</dependency>

</dependencies>


<build>
<plugins>
<plugin>
Expand All @@ -107,10 +98,11 @@
<include>com.google.guava:guava:*</include>
<include>com.google.protobuf:protobuf-java:*</include>
<include>com.google.guava:failureaccess:*</include>
<include>com.google.protobuf.nano:*</include>
<!--<include>com.google.guava:listenablefuture:*</include>-->
<!--<include>org.checkerframework:checker-qual:*</include>-->
<!--<include>com.google.errorprone:error_prone_annotations:*</include>-->
<include>com.google.j2objc:j2objc-annotations:*</include>
<!--<include>com.google.j2objc:j2objc-annotations:*</include>-->
<!--<include>org.codehaus.mojo:animal-sniffer-annotations:*</include>-->
<!--<include>com.google.zxing:*</include>-->
</includes>
Expand All @@ -124,6 +116,7 @@
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
<exclude>META-INF/services</exclude>
<exclude>META-INF/versions</exclude>
</excludes>
</filter>
</filters>
Expand Down Expand Up @@ -153,6 +146,44 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<force>true</force>
<additionalDependencies>

<dependency>
<groupId>com.google.j2objc</groupId>
<artifactId>j2objc-annotations</artifactId>
<version>${j2obc.version}</version>
</dependency>

<dependency>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-annotations</artifactId>
<version>${animalsniffer.version}</version>
</dependency>

<dependency>
<groupId>org.checkerframework</groupId>
<artifactId>checker-qual</artifactId>
<optional>true</optional>
<version>${checkerqual.version}</version>
</dependency>

<dependency>
<groupId>com.google.errorprone</groupId>
<artifactId>error_prone_annotations</artifactId>
<optional>true</optional>
<version>${errorprone.version}</version>
</dependency>

<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>${jsr305.version}</version>
</dependency>

</additionalDependencies>
</configuration>
</plugin>

</plugins>
Expand Down
1 change: 1 addition & 0 deletions Google/guava/src/moditect/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
exports com.google.common.xml;

exports com.google.protobuf;
exports com.google.protobuf.nano;

/*
exports com.google.zxing;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package com.google.inject;

import java.lang.annotation.Annotation;
import java.lang.reflect.AnnotatedElement;

/**
* A provider for injection points other than jakarta.@Inject or children of
*/
public interface InjectionPointProvider {
Class<? extends Annotation> injectionPoint(AnnotatedElement member);
}

0 comments on commit 83be6e1

Please sign in to comment.