Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,31 +12,63 @@
<artifactId>belgif-rest-problem-it-common-jakarta</artifactId>
<name>${project.groupId}:${project.artifactId}</name>

<build>
<plugins>
<plugin>
<groupId>org.eclipse.transformer</groupId>
<artifactId>transformer-maven-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<artifact>
<groupId>io.github.belgif.rest.problem</groupId>
<artifactId>belgif-rest-problem-it-common</artifactId>
<version>${project.version}</version>
</artifact>
<rules>
<jakartaDefaults>true</jakartaDefaults>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>io.github.belgif.rest.problem</groupId>
<artifactId>belgif-rest-problem-it-common</artifactId>
<version>${project.version}</version>
<classifier>sources</classifier>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.github.belgif.rest.problem</groupId>
<artifactId>belgif-rest-problem</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.belgif.rest.problem</groupId>
<artifactId>belgif-rest-problem-apt</artifactId>
<version>${project.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>jakarta.platform</groupId>
<artifactId>jakarta.jakartaee-api</artifactId>
<version>10.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${version.jackson.minimal}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>tools.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${version.jackson3.minimal}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>rest-assured</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>

</project>
Empty file.
64 changes: 37 additions & 27 deletions belgif-rest-problem-jakarta-ee-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,38 +14,48 @@
<packaging>jar</packaging>

<dependencies>
<dependency>
<groupId>io.github.belgif.rest.problem</groupId>
<artifactId>belgif-rest-problem-java-ee-client</artifactId>
<version>${project.version}</version>
<classifier>sources</classifier>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.github.belgif.rest.problem</groupId>
<artifactId>belgif-rest-problem-jakarta-ee-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>jakarta.platform</groupId>
<artifactId>jakarta.jakartaee-api</artifactId>
<version>10.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jboss.resteasy.microprofile</groupId>
<artifactId>microprofile-rest-client</artifactId>
<scope>provided</scope>
<version>3.0.1.Final</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${version.jackson.minimal}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.17</version>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.eclipse.transformer</groupId>
<artifactId>transformer-maven-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<artifact>
<groupId>io.github.belgif.rest.problem</groupId>
<artifactId>belgif-rest-problem-java-ee-client</artifactId>
<version>${project.version}</version>
</artifact>
<rules>
<jakartaDefaults>true</jakartaDefaults>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

</project>
Empty file.
64 changes: 38 additions & 26 deletions belgif-rest-problem-jakarta-ee-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,31 +13,43 @@
<name>${project.groupId}:${project.artifactId}</name>
<packaging>jar</packaging>

<build>
<plugins>
<plugin>
<groupId>org.eclipse.transformer</groupId>
<artifactId>transformer-maven-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<artifact>
<groupId>io.github.belgif.rest.problem</groupId>
<artifactId>belgif-rest-problem-java-ee-core</artifactId>
<version>${project.version}</version>
</artifact>
<rules>
<jakartaDefaults>true</jakartaDefaults>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>io.github.belgif.rest.problem</groupId>
<artifactId>belgif-rest-problem-java-ee-core</artifactId>
<version>${project.version}</version>
<classifier>sources</classifier>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.github.belgif.rest.problem</groupId>
<artifactId>belgif-rest-problem</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>jakarta.platform</groupId>
<artifactId>jakarta.jakartaee-api</artifactId>
<version>10.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${version.jackson.minimal}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.17</version>
<scope>provided</scope>
</dependency>
</dependencies>

</project>
Empty file.
58 changes: 31 additions & 27 deletions belgif-rest-problem-jakarta-ee-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,38 +14,42 @@
<packaging>jar</packaging>

<dependencies>
<dependency>
<groupId>io.github.belgif.rest.problem</groupId>
<artifactId>belgif-rest-problem-java-ee-server</artifactId>
<version>${project.version}</version>
<classifier>sources</classifier>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.github.belgif.rest.problem</groupId>
<artifactId>belgif-rest-problem-jakarta-ee-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>jakarta.platform</groupId>
<artifactId>jakarta.jakartaee-api</artifactId>
<version>10.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${version.jackson.minimal}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.17</version>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.eclipse.transformer</groupId>
<artifactId>transformer-maven-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<artifact>
<groupId>io.github.belgif.rest.problem</groupId>
<artifactId>belgif-rest-problem-java-ee-server</artifactId>
<version>${project.version}</version>
</artifact>
<rules>
<jakartaDefaults>true</jakartaDefaults>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

</project>
Loading