java-tutorials/pom.xml

1204 lines
56 KiB
XML
Raw Normal View History

2019-12-05 09:56:52 -05:00
<?xml version="1.0" encoding="UTF-8"?>
<!--suppress PyInterpreter -->
<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>
<groupId>com.baeldung</groupId>
<artifactId>parent-modules</artifactId>
<version>1.0.0-SNAPSHOT</version>
<name>parent-modules</name>
<packaging>pom</packaging>
<dependencies>
<!-- logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${org.slf4j.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>${logback.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>${org.slf4j.version}</version>
</dependency>
<!-- test -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit-jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${junit-jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit-jupiter.version}</version>
<scope>test</scope>
</dependency>
Java 3590 (#11367) (#11380) * Java 3590 (#11367) * JAVA-3590: updating junit-jupiter dependency in the main pom.xml * resolving unnecessary mockito stubbings exception * adding junit-bom in dependency management * fixing tests which were not getting discovered * Revert "fixing tests which were not getting discovered" This reverts commit 2e9ed8df42eb96f7e0929167aabbc2ddd374a263. * fixing tests in ninja, open-liberty and spring-ejb * removing junit4 dependency and replacing it with junit-vintage-engine * removing junit4 dependency and replacing it with junit-vintage-engine in testing-modules, maven-modules and aws-lambda * removing junit dependency and replacing it with junit-vintage-engine * removing junit and replacing it with junit-vintage-engine * fixing tests that were not getting discovered due to old version of junit:junit * updated failsafe plugin configuration to skip integration tests in blade * fixing tests that were not getting discovered due to old version of junit:junit * fixing tests in libraries and libraries-2 modules Co-authored-by: chaos2418 <> * Java 3590 - fixing integration tests in restx and spring-5-webflux (#11382) * JAVA-3590: updating junit-jupiter dependency in the main pom.xml * resolving unnecessary mockito stubbings exception * adding junit-bom in dependency management * fixing tests which were not getting discovered * Revert "fixing tests which were not getting discovered" This reverts commit 2e9ed8df42eb96f7e0929167aabbc2ddd374a263. * fixing tests in ninja, open-liberty and spring-ejb * removing junit4 dependency and replacing it with junit-vintage-engine * removing junit4 dependency and replacing it with junit-vintage-engine in testing-modules, maven-modules and aws-lambda * removing junit dependency and replacing it with junit-vintage-engine * removing junit and replacing it with junit-vintage-engine * fixing tests that were not getting discovered due to old version of junit:junit * updated failsafe plugin configuration to skip integration tests in blade * fixing tests that were not getting discovered due to old version of junit:junit * fixing tests in libraries and libraries-2 modules * fixing integration tests in restx and spring-5-webflux Co-authored-by: chaos2418 <> Co-authored-by: chaos2418 <92030908+chaos2418@users.noreply.github.com>
2021-10-29 00:07:04 -04:00
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>${junit-jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${assertj.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest</artifactId>
<version>${hamcrest.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>${hamcrest-all.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-logger-api</artifactId>
<version>${maven-surefire-plugin.version}</version>
<!-- to get around bug https://github.com/junit-team/junit5/issues/801 -->
<scope>test</scope>
<optional>true</optional>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>${exec-maven-plugin.version}</version>
<configuration>
<executable>maven</executable>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<configuration>
<forkCount>3</forkCount>
<reuseForks>true</reuseForks>
<excludes>
<exclude>**/*IntegrationTest.java</exclude>
<exclude>**/*IntTest.java</exclude>
<exclude>**/*LongRunningUnitTest.java</exclude>
<exclude>**/*ManualTest.java</exclude>
<exclude>**/JdbcTest.java</exclude>
<exclude>**/*LiveTest.java</exclude>
</excludes>
</configuration>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit-jupiter.version}</version>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>${junit-jupiter.version}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>${maven-pmd-plugin.version}</version>
<dependencies>
<dependency>
<groupId>org.baeldung.pmd</groupId>
<artifactId>custom-pmd</artifactId>
<version>${custom-pmd.version}</version>
</dependency>
</dependencies>
<configuration>
<failurePriority>5</failurePriority>
<aggregate>false</aggregate>
<failOnViolation>true</failOnViolation>
<verbose>true</verbose>
<linkXRef>true</linkXRef>
<includeTests>true</includeTests>
<sourceEncoding>UTF-8</sourceEncoding>
<targetJdk>${java.version}</targetJdk>
<rulesets>
<ruleset>${tutorialsproject.basedir}/baeldung-pmd-rules.xml</ruleset>
</rulesets>
<excludeRoots>
<excludeRoot>target/generated-sources</excludeRoot>
</excludeRoots>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.commonjava.maven.plugins</groupId>
<artifactId>directory-maven-plugin</artifactId>
<version>${directory-maven-plugin.version}</version>
<executions>
<execution>
<id>directories</id>
<goals>
<goal>directory-of</goal>
</goals>
<phase>validate</phase>
<configuration>
<property>tutorialsproject.basedir</property>
<project>
<groupId>com.baeldung</groupId>
<artifactId>parent-modules</artifactId>
</project>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>${maven-install-plugin.version}</version>
<configuration>
<groupId>org.baeldung.pmd</groupId>
<artifactId>custom-pmd</artifactId>
<version>${custom-pmd.version}</version>
<packaging>jar</packaging>
<file>${tutorialsproject.basedir}/custom-pmd-${custom-pmd.version}.jar</file>
<generatePom>true</generatePom>
</configuration>
<executions>
<execution>
<id>install-jar-lib</id>
<goals>
<goal>install-file</goal>
</goals>
<phase>validate</phase>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>${maven-war-plugin.version}</version>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
</plugins>
<extensions>
<extension>
<groupId>com.vackosar.gitflowincrementalbuilder</groupId>
<artifactId>gitflow-incremental-builder</artifactId>
<version>${gitflow-incremental-builder.version}</version>
</extension>
</extensions>
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings
only. It has no influence on the Maven build itself. -->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>
org.commonjava.maven.plugins
</groupId>
<artifactId>
directory-maven-plugin
</artifactId>
<versionRange>
[0.3.1,)
</versionRange>
<goals>
<goal>directory-of</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore/>
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-install-plugin
</artifactId>
<versionRange>
[2.5.1,)
</versionRange>
<goals>
<goal>install-file</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore/>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>default-first</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<configuration>
<forkCount>3</forkCount>
<reuseForks>true</reuseForks>
<includes>
<include>SpringContextTest</include>
<include>**/*UnitTest</include>
</includes>
<excludes>
<exclude>**/*IntegrationTest.java</exclude>
<exclude>**/*IntTest.java</exclude>
<exclude>**/*LongRunningUnitTest.java</exclude>
<exclude>**/*ManualTest.java</exclude>
<exclude>**/JdbcTest.java</exclude>
<exclude>**/*LiveTest.java</exclude>
</excludes>
<systemPropertyVariables>
<logback.configurationFile>${tutorialsproject.basedir}/logback-config.xml</logback.configurationFile>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>
<modules>
<!-- <module>clojure-modules</module> --> <!-- Not a maven project -->
<module>core-java-modules/core-java-8</module>
<module>core-java-modules/core-java-8-2</module>
<module>core-java-modules/core-java-8-datetime</module>
<module>core-java-modules/core-java-8-datetime-2</module>
<module>core-java-modules/core-java-sun</module>
<module>core-java-modules/core-java-security</module>
<module>core-java-modules/core-java-lang</module>
<module>core-java-modules/core-java-lang-math-3</module>
<module>core-java-modules/core-java-streams-2</module>
<!-- <module>ethereum</module> --> <!-- JAVA-6001 -->
<!-- <module>gradle-modules</module> --> <!-- Not a maven project -->
<!-- <module>guest</module> --> <!-- not to be built as its for guest articles -->
<!-- <module>pants</module> --> <!-- Not a maven project -->
<module>libraries-jdk8</module>
<module>lombok-modules/lombok-custom</module>
<module>muleesb</module>
<module>web-modules/java-lite</module>
<module>persistence-modules/deltaspike</module> <!-- delta spike it doesn't support yet the jakarta API-->
<module>persistence-modules/hibernate-ogm</module> <!-- hibernate-ogm wasn't updated because a workaround for jakarta namespace wasn't found JAVA-20557 -->
<module>persistence-modules/spring-data-cassandra-reactive</module>
<module>java-nashorn</module>
<module>jeromq</module>
<module>spring-ejb-modules/ejb-beans</module>
<module>jenkins-modules</module> <!-- Not able to upgrade now to jdk17. JAVA-21748 -->
</modules>
</profile>
<profile>
<id>default-second</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<configuration>
<forkCount>3</forkCount>
<reuseForks>true</reuseForks>
<includes>
<include>SpringContextTest</include>
<include>**/*UnitTest</include>
</includes>
<excludes>
<exclude>**/*IntegrationTest.java</exclude>
<exclude>**/*IntTest.java</exclude>
<exclude>**/*LongRunningUnitTest.java</exclude>
<exclude>**/*ManualTest.java</exclude>
<exclude>**/*JdbcTest.java</exclude>
<exclude>**/*LiveTest.java</exclude>
</excludes>
<systemPropertyVariables>
<logback.configurationFile>${tutorialsproject.basedir}/logback-config.xml</logback.configurationFile>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>
<modules>
<module>spring-4</module>
<module>spring-cloud-modules</module>
<!-- <module>spring-cloud-cli</module> --> <!-- Not a maven project -->
<module>spring-exceptions</module>
<module>spring-integration</module>
<module>spring-jenkins-pipeline</module>
<!-- <module>spring-roo</module> --> <!-- Not supported JAVA-17327 -->
<module>spring-security-modules/spring-security-ldap</module>
<module>spring-swagger-codegen</module>
<module>video-tutorials</module>
</modules>
</profile>
<profile>
<id>default-heavy</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<configuration>
<forkCount>3</forkCount>
<reuseForks>true</reuseForks>
<includes>
<include>SpringContextTest</include>
<include>**/*UnitTest</include>
</includes>
<excludes>
<exclude>**/*IntegrationTest.java</exclude>
<exclude>**/*IntTest.java</exclude>
<exclude>**/*LongRunningUnitTest.java</exclude>
<exclude>**/*ManualTest.java</exclude>
<exclude>**/*JdbcTest.java</exclude>
<exclude>**/*LiveTest.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
<modules>
<module>apache-spark</module>
<module>jhipster-modules</module>
<module>spring-cloud-modules/spring-cloud-azure</module>
<module>web-modules/restx</module>
<module>libraries-testing</module>
</modules>
</profile>
<profile>
<id>integration-lite-first</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/*ManualTest.java</exclude>
<exclude>**/*LiveTest.java</exclude>
</excludes>
<includes>
<include>**/*IntegrationTest.java</include>
<include>**/*IntTest.java</include>
</includes>
<systemPropertyVariables>
<logback.configurationFile>${tutorialsproject.basedir}/logback-config.xml</logback.configurationFile>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>
<modules>
<!-- <module>clojure-modules</module> --> <!-- Not a maven project -->
<module>core-java-modules/core-java-8</module>
<module>core-java-modules/core-java-8-2</module>
<module>core-java-modules/core-java-8-datetime</module>
<module>core-java-modules/core-java-8-datetime-2</module>
<module>core-java-modules/core-java-sun</module>
<module>core-java-modules/core-java-security</module>
<module>core-java-modules/core-java-lang</module>
<module>core-java-modules/core-java-lang-math-3</module>
<module>core-java-modules/core-java-streams-2</module>
<!-- <module>ethereum</module> --> <!-- JAVA-6001 -->
<!-- <module>gradle-modules</module> --> <!-- Not a maven project -->
<!-- <module>guest</module> --> <!-- not to be built as its for guest articles -->
<module>libraries-jdk8</module>
<module>lombok-modules/lombok-custom</module>
<module>muleesb</module>
<module>web-modules/java-lite</module>
<module>persistence-modules/deltaspike</module> <!-- delta spike it doesn't support yet the jakarta API-->
<module>persistence-modules/hibernate-ogm</module> <!-- hibernate-ogm wasn't updated because a workaround for jakarta namespace wasn't found JAVA-20557 -->
<module>persistence-modules/spring-data-cassandra-reactive</module>
<module>java-nashorn</module>
<module>jeromq</module>
<module>spring-ejb-modules/ejb-beans</module>
<module>jenkins-modules</module> <!-- Not able to upgrade now to jdk17. JAVA-21748 -->
</modules>
</profile>
<profile>
<id>integration-lite-second</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/*ManualTest.java</exclude>
<exclude>**/*LiveTest.java</exclude>
</excludes>
<includes>
<include>**/*IntegrationTest.java</include>
<include>**/*IntTest.java</include>
</includes>
<systemPropertyVariables>
<logback.configurationFile>${tutorialsproject.basedir}/logback-config.xml</logback.configurationFile>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>
<modules>
<module>spring-4</module>
<module>spring-cloud-modules</module>
<!-- <module>spring-cloud-cli</module> --> <!-- Not a maven project -->
<module>spring-exceptions</module>
<module>spring-integration</module>
<module>spring-jenkins-pipeline</module>
<!-- <module>spring-roo</module> --> <!-- Not supported JAVA-17327 -->
<module>spring-security-modules/spring-security-ldap</module>
<module>spring-swagger-codegen</module>
<module>video-tutorials</module>
</modules>
</profile>
<profile>
<id>integration-heavy</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/*ManualTest.java</exclude>
<exclude>**/*LiveTest.java</exclude>
</excludes>
<includes>
<include>**/*IntegrationTest.java</include>
<include>**/*IntTest.java</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
<modules>
<module>apache-spark</module>
<module>jhipster-modules</module>
<module>spring-cloud-modules/spring-cloud-azure</module>
<module>web-modules/restx</module>
</modules>
</profile>
2019-11-17 09:04:03 -05:00
<profile>
<id>live-all</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/SpringContextTest.java</exclude>
<exclude>**/*UnitTest.java</exclude>
<exclude>**/*IntegrationTest.java</exclude>
<exclude>**/*IntTest.java</exclude>
<exclude>**/*LongRunningUnitTest.java</exclude>
<exclude>**/*ManualTest.java</exclude>
<exclude>**/*JdbcTest.java</exclude>
</excludes>
<includes>
<include>**/*LiveTest.java</include>
</includes>
</configuration>
</plugin>
2019-11-17 09:04:03 -05:00
</plugins>
</build>
2019-11-17 09:04:03 -05:00
</profile>
<profile>
<id>default-jdk9-and-above</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<forkCount>3</forkCount>
<reuseForks>true</reuseForks>
<includes>
<include>SpringContextTest</include>
<include>**/*UnitTest</include>
</includes>
<excludes>
<exclude>**/*IntegrationTest.java</exclude>
<exclude>**/*IntTest.java</exclude>
<exclude>**/*LongRunningUnitTest.java</exclude>
<exclude>**/*ManualTest.java</exclude>
<exclude>**/JdbcTest.java</exclude>
<exclude>**/*LiveTest.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
<modules>
<module>parent-boot-1</module>
<module>parent-boot-2</module>
<module>parent-spring-4</module>
<module>parent-spring-5</module>
<module>parent-spring-6</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>akka-modules</module>
<module>algorithms-modules</module>
<module>apache-cxf-modules</module>
<module>apache-httpclient-2</module>
<module>apache-httpclient4</module>
<module>apache-httpclient</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>apache-kafka-2</module>
<module>apache-kafka</module>
<module>apache-libraries-2</module>
<module>apache-libraries</module>
2023-11-27 06:15:33 -05:00
<module>apache-olingo</module><!-- apache-olingo wasn't updated to boot-3 because a workaround for jakarta namespace wasn't found JAVA-27818 -->
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>apache-poi-2</module>
<module>apache-poi-3</module>
<module>apache-poi</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>apache-thrift</module>
<module>apache-velocity</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>atomix</module>
<module>aws-modules</module>
<module>azure</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>bazel</module>
<module>checker-framework</module>
<module>core-groovy-modules</module>
<module>core-java-modules</module>
<module>custom-pmd</module>
<module>data-structures</module>
<module>deeplearning4j</module>
<module>di-modules</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>disruptor</module>
<module>docker-modules</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>dozer</module>
<module>drools</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>dubbo</module>
<module>feign</module>
<module>gcp-firebase</module>
<module>geotools</module>
<module>google-auto-project</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>google-cloud</module>
<module>gradle-modules/gradle/maven-to-gradle</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>graphql-modules</module>
<module>grpc</module>
<module>guava-modules</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>hazelcast</module>
<module>httpclient-simple</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>hystrix</module>
<module>image-compressing</module>
<module>image-processing</module>
<module>jackson-modules</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>jackson-simple</module>
<module>java-blockchain</module>
<module>java-jdi</module>
<!--<module>java-panama</module>--> <!--JAVA-27339-->
<module>javafx</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>javax-sound</module>
<module>javaxval-2</module>
<module>javaxval</module>
<module>jaxb</module>
<module>jetbrains</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>jgit</module>
<module>jhipster-6</module>
<module>jmh</module>
<module>json-modules</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>jsoup</module>
<module>jws</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>ksqldb</module>
<module>kubernetes-modules</module>
<module>language-interop</module>
<module>libraries-2</module>
<module>libraries-3</module>
<module>libraries-4</module>
<module>libraries-ai</module>
<module>libraries-apache-commons-2</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>libraries-apache-commons-collections</module>
<module>libraries-apache-commons-io</module>
<module>libraries-apache-commons</module>
<module>libraries-bytecode</module>
<module>libraries-cli</module>
<module>libraries-concurrency</module>
<module>libraries-data-2</module>
<module>libraries-data-3</module>
<module>libraries-data-db</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>libraries-data-io</module>
<module>libraries-data</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>libraries-files</module>
<module>libraries-http-2</module>
<module>libraries-http</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>libraries-io</module>
<module>libraries-llms</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>libraries-primitive</module>
<module>libraries-reporting</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>libraries-rpc</module>
<module>libraries-security</module>
<module>libraries-server-2</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>libraries-server</module>
<module>libraries-stream</module>
<module>libraries-testing-2</module>
2023-05-19 13:40:38 -04:00
<module>libraries-transform</module>
<module>libraries</module> <!-- very long running -->
<module>lightrun</module>
<module>logging-modules</module>
<module>lombok-modules</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>lucene</module>
<module>mapstruct</module>
<!--<module>maven-modules</module>--> <!-- JAVA-27739 -->
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>mesos-marathon</module>
<module>messaging-modules</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>metrics</module>
<module>microservices-modules</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>mustache</module>
<module>mybatis</module>
<module>netflix-modules</module>
<module>optaplanner</module>
<module>orika</module>
<module>osgi</module>
<module>parent-boot-3</module>
<module>patterns-modules</module>
<module>performance-tests</module>
<module>persistence-modules</module>
<!--<module>persistence-modules/java-harperdb</module>--> <!-- This module requires a library to download manually -->
<module>persistence-modules/spring-data-neo4j</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>protobuffer</module>
<module>quarkus-modules</module>
<module>reactive-systems</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>reactor-core</module>
<module>rsocket</module>
<module>rule-engines-modules</module>
<module>rxjava-modules</module>
<module>saas-modules</module>
<module>security-modules</module>
<module>server-modules</module>
<module>spf4j</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>spring-5-webflux-2</module>
<module>spring-5-webflux</module>
<module>spring-5</module>
<module>spring-6</module>
<module>spring-6-rsocket</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>spring-activiti</module>
<module>spring-actuator</module>
<module>spring-ai</module>
<module>spring-aop-2</module>
<module>spring-aop</module>
<module>spring-batch-2</module>
<module>spring-batch</module>
<module>spring-boot-modules</module>
<module>spring-boot-rest</module>
<module>spring-cloud-modules/spring-cloud-circuit-breaker</module>
<module>spring-cloud-modules/spring-cloud-contract</module>
<!--<module>spring-cloud-modules/spring-cloud-data-flow</module>--><!-- failing after upgrading to jdk17-->
<module>spring-cloud-modules/spring-cloud-eureka</module>
<module>spring-cloud-modules/spring-cloud-netflix-feign</module>
<module>spring-cloud-modules/spring-cloud-security</module>
<!--<module>spring-cloud-modules/spring-cloud-stream-starters</module>--><!-- failing after upgrading to jdk17-->
<module>spring-cloud-modules/spring-cloud-zuul-eureka-integration</module>
<module>spring-cloud-modules/spring-cloud-bootstrap</module>
<module>spring-core-2</module>
<module>spring-core-3</module>
<module>spring-core-4</module>
<module>spring-core</module>
<module>spring-credhub</module>
<module>spring-cucumber</module>
<!--<module>spring-di-2</module>--><!-- failing after upgrading to jdk17-->
<module>spring-di-3</module>
<module>spring-di-4</module>
<module>spring-di</module>
<module>spring-drools</module>
<module>spring-ejb-modules</module>
<module>spring-exceptions</module>
<!--<module>spring-integration</module>--><!-- failing after upgrading to jdk17-->
<module>spring-jenkins-pipeline</module>
<module>spring-jersey</module>
<!--<module>spring-jinq</module>-->
<module>spring-kafka-2</module>
<module>spring-kafka-3</module>
<module>spring-kafka</module>
<module>spring-katharsis</module> <!-- Upgrade to Boot 3 not possible as the project has not been upgraded to Support Jakarta dependencies-->
<module>spring-mobile</module>
<module>spring-native</module>
<module>spring-protobuf</module>
<module>spring-pulsar</module>
<module>spring-quartz</module>
<module>spring-reactive-modules</module>
<module>spring-remoting-modules</module> <!-- Upgrade to Boot 3 not possible as since Spring 6 the remoting modules has been removed from Spring. -->
<module>spring-scheduling</module>
<module>spring-security-modules</module>
<module>spring-shell</module>
<module>spring-soap</module>
<module>spring-spel</module>
<module>spring-state-machine</module>
<module>spring-static-resources</module>
<module>spring-swagger-codegen/custom-validations-opeanpi-codegen</module>
<module>spring-threads</module>
<module>spring-vault</module>
<module>spring-web-modules</module>
<module>spring-websockets</module>
<!-- <module>static-analysis</module> - requires additional configuration to be compiled due to the JVM strong encapsulation -->
<!--<module>tablesaw</module>--><!-- failing after upgrading to jdk17-->
<module>tensorflow-java</module>
<module>testing-modules</module>
<module>testing-modules/mockito-simple</module>
<module>text-processing-libraries-modules</module>
2023-11-21 08:09:04 -05:00
<module>timefold-solver</module>
<module>vaadin</module>
<module>vavr-modules</module>
<module>vertx-modules</module>
<module>web-modules</module>
<module>webrtc</module>
<module>xml-2</module>
<module>xml</module>
<module>xstream</module>
<module>libraries-data-io-2</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>17</java.version>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>
</profile>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<profile>
<id>integration-jdk9-and-above</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/*ManualTest.java</exclude>
<exclude>**/*LiveTest.java</exclude>
</excludes>
<includes>
<include>**/*IntegrationTest.java</include>
<include>**/*IntTest.java</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<modules>
<module>parent-boot-1</module>
<module>parent-boot-2</module>
<module>parent-spring-4</module>
<module>parent-spring-5</module>
<module>parent-spring-6</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>akka-modules</module>
<module>algorithms-modules</module>
<module>apache-cxf-modules</module>
<module>apache-httpclient-2</module>
<module>apache-httpclient4</module>
<module>apache-httpclient</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>apache-kafka-2</module>
<module>apache-kafka</module>
<module>apache-libraries-2</module>
<module>apache-libraries</module>
2023-11-27 06:15:33 -05:00
<module>apache-olingo</module><!-- apache-olingo wasn't updated to boot-3 because a workaround for jakarta namespace wasn't found JAVA-27818 -->
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>apache-poi-2</module>
<module>apache-poi-3</module>
<module>apache-poi</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>apache-thrift</module>
<module>apache-velocity</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>atomix</module>
<module>aws-modules</module>
<module>azure</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>bazel</module>
<module>checker-framework</module>
<module>core-groovy-modules</module>
<module>core-java-modules</module>
<module>custom-pmd</module>
<module>data-structures</module>
<module>deeplearning4j</module>
<module>di-modules</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>disruptor</module>
<module>docker-modules</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>dozer</module>
<module>drools</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>dubbo</module>
<module>feign</module>
<module>gcp-firebase</module>
<module>geotools</module>
<module>google-auto-project</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>google-cloud</module>
<module>gradle-modules/gradle/maven-to-gradle</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>graphql-modules</module>
<module>grpc</module>
<module>guava-modules</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>hazelcast</module>
<module>httpclient-simple</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>hystrix</module>
<module>image-compressing</module>
<module>image-processing</module>
<module>jackson-modules</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>jackson-simple</module>
<module>java-blockchain</module>
<module>java-jdi</module>
<!--<module>java-panama</module>--> <!--JAVA-27339-->
<module>javafx</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>javax-sound</module>
<module>javaxval-2</module>
<module>javaxval</module>
<module>jaxb</module>
<module>jetbrains</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>jgit</module>
<module>jhipster-6</module>
<module>jmh</module>
<module>json-modules</module>
<module>jsoup</module>
<module>jws</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>ksqldb</module>
<module>kubernetes-modules</module>
<module>language-interop</module>
<module>libraries-2</module>
<module>libraries-3</module>
<module>libraries-4</module>
<module>libraries-ai</module>
<module>libraries-apache-commons-2</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>libraries-apache-commons-collections</module>
<module>libraries-apache-commons-io</module>
<module>libraries-apache-commons</module>
<module>libraries-bytecode</module>
<module>libraries-cli</module>
<module>libraries-concurrency</module>
<module>libraries-data-2</module>
<module>libraries-data-3</module>
<module>libraries-data-db</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>libraries-data-io</module>
<module>libraries-data</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>libraries-files</module>
<module>libraries-http-2</module>
<module>libraries-http</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>libraries-io</module>
<module>libraries-llms</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>libraries-primitive</module>
<module>libraries-reporting</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>libraries-rpc</module>
<module>libraries-security</module>
<module>libraries-server-2</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>libraries-server</module>
<module>libraries-stream</module>
<module>libraries-testing</module>
<module>libraries-testing-2</module>
2023-05-19 13:40:38 -04:00
<module>libraries-transform</module>
<module>libraries</module> <!-- very long running -->
<module>lightrun</module>
<module>logging-modules</module>
<module>lombok-modules</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>lucene</module>
<module>mapstruct</module>
<!--<module>maven-modules</module>--> <!-- JAVA-27739 -->
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>mesos-marathon</module>
<module>messaging-modules</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>metrics</module>
<module>microservices-modules</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>mustache</module>
<module>mybatis</module>
<module>netflix-modules</module>
<module>optaplanner</module>
<module>orika</module>
<module>osgi</module>
<module>parent-boot-3</module>
<module>patterns-modules</module>
<module>performance-tests</module>
<module>persistence-modules</module>
<!--<module>persistence-modules/java-harperdb</module>--> <!-- This module requires a library to download manually -->
<module>persistence-modules/spring-data-neo4j</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>protobuffer</module>
<module>quarkus-modules</module>
<module>reactive-systems</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>reactor-core</module>
<module>rsocket</module>
<module>rule-engines-modules</module>
<module>rxjava-modules</module>
<module>saas-modules</module>
<module>security-modules</module>
<module>server-modules</module>
<module>spf4j</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>spring-5-webflux-2</module>
<module>spring-5-webflux</module>
<module>spring-5</module>
<module>spring-6</module>
<module>spring-6-rsocket</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>spring-activiti</module>
<module>spring-actuator</module>
<module>spring-ai</module>
<module>spring-aop-2</module>
<module>spring-aop</module>
<module>spring-batch-2</module>
<module>spring-batch</module>
<module>spring-boot-modules</module>
<module>spring-boot-rest</module>
<module>spring-cloud-modules/spring-cloud-circuit-breaker</module>
<module>spring-cloud-modules/spring-cloud-contract</module>
<!--<module>spring-cloud-modules/spring-cloud-data-flow</module>--><!-- failing after upgrading to jdk17-->
<module>spring-cloud-modules/spring-cloud-eureka</module>
<module>spring-cloud-modules/spring-cloud-netflix-feign</module>
<module>spring-cloud-modules/spring-cloud-security</module>
<!--<module>spring-cloud-modules/spring-cloud-stream-starters</module>--><!-- failing after upgrading to jdk17-->
<module>spring-cloud-modules/spring-cloud-zuul-eureka-integration</module>
<module>spring-cloud-modules/spring-cloud-bootstrap</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>spring-core-2</module>
<module>spring-core-3</module>
<module>spring-core-4</module>
<module>spring-core</module>
<module>spring-credhub</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>spring-cucumber</module>
<!--<module>spring-di-2</module>--><!-- failing after upgrading to jdk17-->
<module>spring-di-3</module>
<module>spring-di-4</module>
<module>spring-di</module>
<module>spring-drools</module>
<module>spring-ejb-modules</module>
<module>spring-exceptions</module>
<!--<module>spring-integration</module>--><!-- failing after upgrading to jdk17-->
<module>spring-jenkins-pipeline</module>
<module>spring-jersey</module>
<!--<module>spring-jinq</module>-->
<module>spring-kafka-2</module>
<module>spring-kafka-3</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>spring-kafka</module>
<module>spring-katharsis</module> <!-- Upgrade to Boot 3 not possible as the project has not been upgraded to Support Jakarta dependencies-->
<module>spring-mobile</module>
<module>spring-native</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>spring-protobuf</module>
<module>spring-pulsar</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>spring-quartz</module>
<module>spring-reactive-modules</module>
<module>spring-remoting-modules</module> <!-- Upgrade to Boot 3 not possible as since Spring 6 the remoting modules has been removed from Spring. -->
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>spring-scheduling</module>
<module>spring-security-modules</module>
<module>spring-shell</module>
<module>spring-soap</module>
<module>spring-spel</module>
<module>spring-state-machine</module>
<module>spring-static-resources</module>
<module>spring-swagger-codegen/custom-validations-opeanpi-codegen</module>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>spring-threads</module>
<module>spring-vault</module>
<module>spring-web-modules</module>
<module>spring-websockets</module>
<!-- <module>static-analysis</module> - requires additional configuration to be compiled due to the JVM strong encapsulation -->
<!--<module>tablesaw</module>--><!-- failing after upgrading to jdk17-->
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<module>tensorflow-java</module>
<module>testing-modules</module>
<module>testing-modules/mockito-simple</module>
<module>text-processing-libraries-modules</module>
2023-11-21 08:09:04 -05:00
<module>timefold-solver</module>
<module>vaadin</module>
<module>vavr-modules</module>
<module>vertx-modules</module>
<module>web-modules</module>
<module>webrtc</module>
<module>xml-2</module>
<module>xml</module>
<module>xstream</module>
<module>libraries-data-io-2</module>
</modules>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>17</java.version>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
Java 12714 eugen (#13358) * Java 12714 - Test build (#13191) * [JAVA-12714] Moved modules from default-first to jdk9-and-above profile * [JAVA-12714] Moved modules from default-second to jdk9-and-above profile * [JAVA-12714] Moved modules from default-heavy to jdk9-and-above profile * [JAVA-12714] Clean up - test build * [JAVA-12714] Clean up * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] test build * [JAVA-12714] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Master to JAVA-12714-eugen (#13302) * Java 15029 (#13257) * [JAVA-15029] Formatting * [JAVA-15029] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 15030 (#13253) * [JAVA-15030] Upgrade to http client 5 * [JAVA-15030] Fixed MimeType test Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * Java 16961 (#13236) * [JAVA-16961] Moved code for article "Create an Empty Map in Java" * [JAVA-16961] Alter README.md * [JAVA-16961] Moved code for article "Sorting a Hashset in Java" * [JAVA-16961] Added links to README.md files * [JAVA-16961] Revert link changes * [JAVA-16961] Replaced junit4 with junit5 annotations * [JAVA-16961] test build * [JAVA-16961] Added junit annotations * [JAVA-16961] Added links Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [List-CaseInsenContains] Case-Insensitive Searching in ArrayList (#13280) * Bael 5436 new (#13283) * BAEL-5777 - Mocking a singleton with Mockito * BAEL-5436 - Root mapping * Revert "BAEL-5777 - Mocking a singleton with Mockito" This reverts commit 358a061997a4b853e3215dea0217a070f0e391e4. * BAEL-5436 - Uncommenting controller * JAVA-15609 Changed to IntegrationTest to reproduce issue on Jenkins * BAEL-5959: Adjust code style (#13299) * BAEL-5959: Monad in Java * Fix test name * Fix code style * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article (#13279) * JAVA-16085, Potential issue in "A Guide to SAML with Spring Security" article. * JAVA-16085, Cleanup unnecessary resources samlKeystore.jks and library maven-war-plugin. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * JAVA-15621, Potential issue in "Guide to UUID in Java" article. (#13271) * JAVA-15621, Potential issue in "Guide to UUID in Java" article. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. * JAVA-15621, Keep the raw strings in the article to make it easy for users to understand. Co-authored-by: jogra <joseph.sterling.grah@miles.no> * [JAVA-17295] Create and initialize ThreadPoolTaskExecutor (#13249) Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15025] Upgraded to apache http 5 (#13296) * [JAVA-15025] Upgraded to apache http 5 * [JAVA-15025] Clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * [JAVA-15016] Upgraded to apache http client 5.2 (#13269) * [JAVA-15016] Upgraded to apache http client 5.2 * [JAVA-15016] Clean up * [JAVA-15016] Junit 5 clean up Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no> * Update pom.xml * [JAVA-12714] Removed plugin from atomix module (#13342) * [JAVA-12714] Removed plugin from atomix module * [JAVA-12714] Removed compiler plugin * [JAVA-12714] Removed compiler plugin Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> * JAVA-12714 Fixed conflicts * JAVA-12714 Temporarily disabling ItemsUnitTest * JAVA-12714 Removed Duplicate Classes --------- Co-authored-by: panos-kakos <102670093+panos-kakos@users.noreply.github.com> Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Kai Yuan <kent.yuan@Gmail.com> Co-authored-by: Abhinav Pandey <abhinavpandey312@gmail.com> Co-authored-by: Anastasios Ioannidis <anastasios.ioannidisa@gmail.com> Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com> Co-authored-by: Thiago dos Santos Hora <thiago.santos.hora@gmail.com> Co-authored-by: jsgrah-spring <jsgrah@hotmail.com> Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-02-02 23:57:34 -05:00
</properties>
</profile>
<profile>
<id>parents</id>
<modules>
<module>parent-boot-1</module>
<module>parent-boot-2</module>
<module>parent-spring-4</module>
<module>parent-spring-5</module>
<module>parent-spring-6</module>
</modules>
</profile>
</profiles>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>${maven-jxr-plugin.version}</version>
</plugin>
</plugins>
</reporting>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<gib.referenceBranch>refs/remotes/origin/master</gib.referenceBranch>
<gib.skipTestsForUpstreamModules>true</gib.skipTestsForUpstreamModules>
<gib.buildUpstream>false</gib.buildUpstream>
<gib.failOnMissingGitDir>false</gib.failOnMissingGitDir>
<gib.failOnError>false</gib.failOnError>
2021-03-24 04:19:46 -04:00
<gib.disable>true</gib.disable>
Java 3590 (#11367) (#11380) * Java 3590 (#11367) * JAVA-3590: updating junit-jupiter dependency in the main pom.xml * resolving unnecessary mockito stubbings exception * adding junit-bom in dependency management * fixing tests which were not getting discovered * Revert "fixing tests which were not getting discovered" This reverts commit 2e9ed8df42eb96f7e0929167aabbc2ddd374a263. * fixing tests in ninja, open-liberty and spring-ejb * removing junit4 dependency and replacing it with junit-vintage-engine * removing junit4 dependency and replacing it with junit-vintage-engine in testing-modules, maven-modules and aws-lambda * removing junit dependency and replacing it with junit-vintage-engine * removing junit and replacing it with junit-vintage-engine * fixing tests that were not getting discovered due to old version of junit:junit * updated failsafe plugin configuration to skip integration tests in blade * fixing tests that were not getting discovered due to old version of junit:junit * fixing tests in libraries and libraries-2 modules Co-authored-by: chaos2418 <> * Java 3590 - fixing integration tests in restx and spring-5-webflux (#11382) * JAVA-3590: updating junit-jupiter dependency in the main pom.xml * resolving unnecessary mockito stubbings exception * adding junit-bom in dependency management * fixing tests which were not getting discovered * Revert "fixing tests which were not getting discovered" This reverts commit 2e9ed8df42eb96f7e0929167aabbc2ddd374a263. * fixing tests in ninja, open-liberty and spring-ejb * removing junit4 dependency and replacing it with junit-vintage-engine * removing junit4 dependency and replacing it with junit-vintage-engine in testing-modules, maven-modules and aws-lambda * removing junit dependency and replacing it with junit-vintage-engine * removing junit and replacing it with junit-vintage-engine * fixing tests that were not getting discovered due to old version of junit:junit * updated failsafe plugin configuration to skip integration tests in blade * fixing tests that were not getting discovered due to old version of junit:junit * fixing tests in libraries and libraries-2 modules * fixing integration tests in restx and spring-5-webflux Co-authored-by: chaos2418 <> Co-authored-by: chaos2418 <92030908+chaos2418@users.noreply.github.com>
2021-10-29 00:07:04 -04:00
<!-- used only in dependency management to force this version, not included as a direct dependency -->
<junit.version>4.13.2</junit.version>
<assertj.version>3.21.0</assertj.version>
<hamcrest.version>2.2</hamcrest.version>
<hamcrest-all.version>1.3</hamcrest-all.version>
2022-03-22 09:40:52 -04:00
<mockito.version>4.4.0</mockito.version>
<byte-buddy.version>1.14.11</byte-buddy.version>
<!-- logging -->
<!-- overwriting in the slf4j and logback in the hibernate-jpa, spring-data-eclipselink. When updated to the latest version remove the version from that module-->
<org.slf4j.version>1.7.32</org.slf4j.version>
<logback.version>1.2.7</logback.version>
<!-- plugins -->
<maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
<maven-compiler-plugin.version>3.12.1</maven-compiler-plugin.version>
<exec-maven-plugin.version>3.1.0</exec-maven-plugin.version>
<java.version>1.8</java.version>
<log4j.version>1.2.17</log4j.version>
<jmh-core.version>1.37</jmh-core.version>
<jmh-generator.version>1.37</jmh-generator.version>
<maven-failsafe-plugin.version>3.1.2</maven-failsafe-plugin.version>
<commons-collections4.version>4.4</commons-collections4.version>
<commons-io.version>2.15.1</commons-io.version>
<commons-lang3.version>3.14.0</commons-lang3.version>
<commons-cli.version>1.6.0</commons-cli.version>
<maven-war-plugin.version>3.4.0</maven-war-plugin.version>
<javax.servlet-api.version>4.0.1</javax.servlet-api.version>
<jstl-api.version>1.2</jstl-api.version>
<javax.servlet.jsp-api.version>2.3.3</javax.servlet.jsp-api.version>
<jstl.version>1.2</jstl.version>
<jackson.version>2.16.1</jackson.version>
<commons-fileupload.version>1.5</commons-fileupload.version>
<junit-platform.version>1.9.2</junit-platform.version>
<junit-jupiter.version>5.9.2</junit-jupiter.version>
Java 3590 (#11367) (#11380) * Java 3590 (#11367) * JAVA-3590: updating junit-jupiter dependency in the main pom.xml * resolving unnecessary mockito stubbings exception * adding junit-bom in dependency management * fixing tests which were not getting discovered * Revert "fixing tests which were not getting discovered" This reverts commit 2e9ed8df42eb96f7e0929167aabbc2ddd374a263. * fixing tests in ninja, open-liberty and spring-ejb * removing junit4 dependency and replacing it with junit-vintage-engine * removing junit4 dependency and replacing it with junit-vintage-engine in testing-modules, maven-modules and aws-lambda * removing junit dependency and replacing it with junit-vintage-engine * removing junit and replacing it with junit-vintage-engine * fixing tests that were not getting discovered due to old version of junit:junit * updated failsafe plugin configuration to skip integration tests in blade * fixing tests that were not getting discovered due to old version of junit:junit * fixing tests in libraries and libraries-2 modules Co-authored-by: chaos2418 <> * Java 3590 - fixing integration tests in restx and spring-5-webflux (#11382) * JAVA-3590: updating junit-jupiter dependency in the main pom.xml * resolving unnecessary mockito stubbings exception * adding junit-bom in dependency management * fixing tests which were not getting discovered * Revert "fixing tests which were not getting discovered" This reverts commit 2e9ed8df42eb96f7e0929167aabbc2ddd374a263. * fixing tests in ninja, open-liberty and spring-ejb * removing junit4 dependency and replacing it with junit-vintage-engine * removing junit4 dependency and replacing it with junit-vintage-engine in testing-modules, maven-modules and aws-lambda * removing junit dependency and replacing it with junit-vintage-engine * removing junit and replacing it with junit-vintage-engine * fixing tests that were not getting discovered due to old version of junit:junit * updated failsafe plugin configuration to skip integration tests in blade * fixing tests that were not getting discovered due to old version of junit:junit * fixing tests in libraries and libraries-2 modules * fixing integration tests in restx and spring-5-webflux Co-authored-by: chaos2418 <> Co-authored-by: chaos2418 <92030908+chaos2418@users.noreply.github.com>
2021-10-29 00:07:04 -04:00
<junit-platform-surefire-provider.version>1.3.2</junit-platform-surefire-provider.version>
<directory-maven-plugin.version>1.0</directory-maven-plugin.version>
<maven-install-plugin.version>3.1.1</maven-install-plugin.version>
<custom-pmd.version>0.0.1</custom-pmd.version>
2021-02-28 08:41:58 -05:00
<gitflow-incremental-builder.version>3.12.2</gitflow-incremental-builder.version>
<maven-jxr-plugin.version>3.3.0</maven-jxr-plugin.version>
<maven-pmd-plugin.version>3.21.0</maven-pmd-plugin.version>
<lombok.version>1.18.30</lombok.version>
<h2.version>2.1.214</h2.version>
<guava.version>33.0.0-jre</guava.version>
<maven-jar-plugin.version>3.3.0</maven-jar-plugin.version>
</properties>
</project>