java-tutorials/pom.xml

1368 lines
59 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>
</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>parent-boot-1</module>
<module>parent-boot-2</module>
<module>parent-spring-4</module>
<module>parent-spring-5</module>
<module>parent-java</module>
<module>apache-cxf-modules</module>
<module>apache-libraries</module>
<module>apache-poi</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>di-modules</module>
<module>asciidoctor</module>
<module>aws-modules</module>
<module>azure</module>
<module>checker-plugin</module>
<!-- <module>clojure</module> --> <!-- Not a maven project -->
<module>core-groovy-modules</module>
<module>core-java-modules</module>
<module>couchbase</module>
<module>custom-pmd</module>
<module>data-structures</module>
<module>deeplearning4j</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>ethereum</module> --> <!-- JAVA-6001 -->
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>geotools</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>gradle-modules</module> --> <!-- Not a maven project -->
<module>gradle-modules/gradle/maven-to-gradle</module>
<!-- <module>grails</module> --> <!-- Not a maven project -->
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>guava-modules</module>
<!-- <module>guest</module> --> <!-- not to be built as its for guest articles -->
<module>apache-httpclient</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>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>javafx</module>
<module>java-jdi</module>
<module>java-websocket</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>jaxb</module>
<module>jersey</module>
<module>jhipster-5</module>
<module>jmeter</module>
<module>jmh</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>jsf</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>kubernetes-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>lagom</module> --> <!-- Not a maven project -->
<module>language-interop</module>
<module>libraries-2</module>
<module>libraries-3</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-data-db</module>
<module>libraries-security</module>
<module>libraries-server-2</module>
<module>libraries-testing</module>
<module>logging-modules</module>
<module>lombok-modules</module>
2020-07-07 07:18:10 -04:00
<module>maven-modules</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>microservices-modules</module>
<module>muleesb</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
2020-01-02 16:24:37 -05:00
<module>netflix-modules</module>
<module>osgi</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>orika</module>
<module>patterns-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>performance-tests</module>
<module>persistence-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>quarkus-modules</module>
<module>rule-engines-modules</module>
<module>rxjava-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>reactive-systems</module>
<module>security-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>vavr-modules</module>
[JAVA-13854] Half list moved (#12598) * [JAVA-13854] added parent module * [JAVA-13854] moved apache-tapestry(submodule) to web-modules(parent) * [JAVA-13854] moved bootique(submodule) to web-modules(parent) * [JAVA-13854] moved dropwizard(submodule) to web-modules(parent) * [JAVA-13854] moved blade(submodule) to web-modules(parent) * [JAVA-13854] moved java-lite(submodule) to web-modules(parent) * [JAVA-13854] moved jooby(submodule) to web-modules(parent) * [JAVA-13854] moved linkrest(submodule) to web-modules(parent) * [JAVA-13854] moved ninja(submodule) to web-modules(parent) * [JAVA-13854] moved ratpack(submodule) to web-modules(parent) * [JAVA-13854] moved resteasy(submodule) to web-modules(parent) * [JAVA-13854] moved restx(submodule) to web-modules(parent) * [JAVA-13854] moved spark-java(submodule) to web-modules(parent) * [JAVA-13854] moved vraptor(submodule) to web-modules(parent) * [JAVA-13854] delete modules that were moved * [JAVA-13854] * [JAVA-13854] * [JAVA-13854] delete ninja submodule + moved raml(submodule) to web-modules(parent) * [JAVA-13854] moved gwt(submodule) to web-modules(parent) * [JAVA-13854] moved jakarta-ee(submodule) to web-modules(parent) * [JAVA-13854] moved javax-servlets(submodule) to web-modules(parent) * [JAVA-13854] moved javax-servlets-2(submodule) to web-modules(parent) * [JAVA-13854] moved jee-7(submodule) to web-modules(parent) * [JAVA-13854] moved play-framework(not a module) to web-modules * [JAVA-13854] fix failing test * [JAVA-13854] moved struts-2(submodule) to web-modules(parent) * [JAVA-13854] moved wicket(submodule) to web-modules(parent) * [JAVA-13854] deleted modules that were moved to web-modules * JAVA-13854 Removed moved modules from the main pom.xml Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Dhawal Kapil <dhawalkapil@gmail.com>
2022-08-21 05:14:00 -04:00
<module>web-modules</module>
</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>parent-boot-1</module>
<module>parent-boot-2</module>
<module>parent-spring-4</module>
<module>parent-spring-5</module>
<module>parent-java</module>
<module>saas-modules</module>
<module>server-modules</module>
<module>spf4j</module>
<module>spring-4</module>
<module>spring-reactive-modules</module>
<module>spring-aop</module>
<module>spring-aop-2</module>
<module>spring-batch</module>
<module>spring-bom</module>
<module>spring-boot-modules</module>
<module>spring-boot-rest</module>
<module>spring-caching</module>
<module>spring-cloud-modules</module>
<!-- <module>spring-cloud-cli</module> --> <!-- Not a maven project -->
<module>spring-core</module>
<module>spring-core-4</module>
<module>spring-di</module>
2020-07-07 07:18:10 -04:00
<module>spring-di-2</module>
<module>spring-drools</module>
<module>spring-ejb-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>spring-exceptions</module>
<module>spring-integration</module>
<module>spring-jenkins-pipeline</module>
<module>spring-jersey</module>
<module>spring-jinq</module>
<module>spring-katharsis</module>
<module>spring-mobile</module>
<module>spring-remoting-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>spring-roo</module> --> <!-- JAVA-17327 -->
<module>spring-security-modules</module>
<module>spring-shell</module>
<module>spring-soap</module>
<module>spring-spel</module>
<module>spring-static-resources</module>
<module>spring-swagger-codegen</module>
<module>spring-vault</module>
<module>spring-web-modules</module>
<module>spring-websockets</module>
<module>static-analysis</module>
<module>testing-modules</module>
<module>vertx-modules</module>
<module>video-tutorials</module>
<module>xml</module>
<module>xml-2</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>parent-boot-1</module>
<module>parent-boot-2</module>
<module>parent-spring-4</module>
<module>parent-spring-5</module>
<module>parent-java</module>
<module>apache-spark</module>
<module>image-processing</module>
<module>jenkins-modules</module>
<module>jhipster-modules</module>
<module>jhipster-5</module>
<module>jws</module>
<module>libraries</module> <!-- very long running -->
<module>libraries-4</module>
<module>libraries-5</module>
<module>libraries-6</module>
<module>spring-boot-modules/spring-boot-react</module>
<module>spring-ejb-modules/ejb-beans</module>
<module>vaadin</module>
<module>vavr-modules</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>parent-boot-1</module>
<module>parent-boot-2</module>
<module>parent-spring-4</module>
<module>parent-spring-5</module>
<module>parent-java</module>
<module>apache-cxf-modules</module>
<module>apache-libraries</module>
<module>apache-poi</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>di-modules</module>
<module>asciidoctor</module>
<module>aws-modules</module>
<module>azure</module>
<module>checker-plugin</module>
<!-- <module>clojure</module> --> <!-- Not a maven project -->
2022-05-25 10:45:55 -04:00
<module>core-groovy-modules</module>
<module>core-java-modules</module>
<module>couchbase</module>
<module>custom-pmd</module>
<module>data-structures</module>
<module>deeplearning4j</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>ethereum</module> --> <!-- JAVA-6001 -->
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>geotools</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>gradle-modules</module> --> <!-- Not a maven project -->
<module>gradle-modules/gradle/maven-to-gradle</module>
<!-- <module>grails</module> --> <!-- Not a maven project -->
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>guava-modules</module>
<!-- <module>guest</module> --> <!-- not to be built as its for guest articles -->
<module>apache-httpclient</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>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>javafx</module>
<module>java-jdi</module>
<module>java-websocket</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>jaxb</module>
<module>jersey</module>
<module>jhipster-5</module>
<module>jmeter</module>
<module>jmh</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>jsf</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>kubernetes-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>lagom</module> --> <!-- Not a maven project -->
<module>language-interop</module>
<module>libraries-2</module>
<module>libraries-3</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-data-db</module>
<module>libraries-security</module>
<module>libraries-server-2</module>
<module>libraries-testing</module>
<module>logging-modules</module>
<module>lombok-modules</module>
2020-07-07 07:18:10 -04:00
<module>maven-modules</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>microservices-modules</module>
<module>muleesb</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
2020-01-02 16:24:37 -05:00
<module>netflix-modules</module>
<module>osgi</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>orika</module>
<module>patterns-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>performance-tests</module>
<module>persistence-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>quarkus-modules</module>
<module>rule-engines-modules</module>
<module>rxjava-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>reactive-systems</module>
<module>security-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>vavr-modules</module>
[JAVA-13854] Half list moved (#12598) * [JAVA-13854] added parent module * [JAVA-13854] moved apache-tapestry(submodule) to web-modules(parent) * [JAVA-13854] moved bootique(submodule) to web-modules(parent) * [JAVA-13854] moved dropwizard(submodule) to web-modules(parent) * [JAVA-13854] moved blade(submodule) to web-modules(parent) * [JAVA-13854] moved java-lite(submodule) to web-modules(parent) * [JAVA-13854] moved jooby(submodule) to web-modules(parent) * [JAVA-13854] moved linkrest(submodule) to web-modules(parent) * [JAVA-13854] moved ninja(submodule) to web-modules(parent) * [JAVA-13854] moved ratpack(submodule) to web-modules(parent) * [JAVA-13854] moved resteasy(submodule) to web-modules(parent) * [JAVA-13854] moved restx(submodule) to web-modules(parent) * [JAVA-13854] moved spark-java(submodule) to web-modules(parent) * [JAVA-13854] moved vraptor(submodule) to web-modules(parent) * [JAVA-13854] delete modules that were moved * [JAVA-13854] * [JAVA-13854] * [JAVA-13854] delete ninja submodule + moved raml(submodule) to web-modules(parent) * [JAVA-13854] moved gwt(submodule) to web-modules(parent) * [JAVA-13854] moved jakarta-ee(submodule) to web-modules(parent) * [JAVA-13854] moved javax-servlets(submodule) to web-modules(parent) * [JAVA-13854] moved javax-servlets-2(submodule) to web-modules(parent) * [JAVA-13854] moved jee-7(submodule) to web-modules(parent) * [JAVA-13854] moved play-framework(not a module) to web-modules * [JAVA-13854] fix failing test * [JAVA-13854] moved struts-2(submodule) to web-modules(parent) * [JAVA-13854] moved wicket(submodule) to web-modules(parent) * [JAVA-13854] deleted modules that were moved to web-modules * JAVA-13854 Removed moved modules from the main pom.xml Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Dhawal Kapil <dhawalkapil@gmail.com>
2022-08-21 05:14:00 -04:00
<module>web-modules</module>
</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>parent-boot-1</module>
<module>parent-boot-2</module>
<module>parent-spring-4</module>
<module>parent-spring-5</module>
<module>parent-java</module>
<module>saas-modules</module>
<module>server-modules</module>
<module>spf4j</module>
<module>spring-4</module>
<module>spring-reactive-modules</module>
<module>spring-aop</module>
<module>spring-aop-2</module>
<module>spring-batch</module>
<module>spring-bom</module>
<module>spring-boot-modules</module>
<module>spring-boot-rest</module>
<module>spring-caching</module>
<module>spring-cloud-modules</module>
<!-- <module>spring-cloud-cli</module> --> <!-- Not a maven project -->
<module>spring-core</module>
<module>spring-core-4</module>
<module>spring-di</module>
<module>spring-di-2</module>
<module>spring-drools</module>
<module>spring-ejb-modules</module>
<module>spring-exceptions</module>
<module>spring-integration</module>
<module>spring-jenkins-pipeline</module>
<module>spring-jersey</module>
<module>spring-jinq</module>
<module>spring-katharsis</module>
<module>spring-mobile</module>
<module>spring-remoting-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>spring-roo</module> --> <!-- JAVA-17327 -->
<module>spring-security-modules</module>
2019-11-26 12:08:28 -05:00
<module>spring-shell</module>
<module>spring-soap</module>
<module>spring-spel</module>
<module>spring-static-resources</module>
<module>spring-swagger-codegen</module>
<module>spring-vault</module>
<module>spring-web-modules</module>
<module>spring-websockets</module>
<module>static-analysis</module>
<module>testing-modules</module>
<module>vertx-modules</module>
<module>video-tutorials</module>
<module>xml</module>
<module>xml-2</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>parent-boot-1</module>
<module>parent-boot-2</module>
<module>parent-spring-4</module>
<module>parent-spring-5</module>
<module>parent-java</module>
<module>apache-spark</module>
<module>image-processing</module>
<module>jenkins-modules</module>
<module>jhipster-modules</module>
<module>jhipster-5</module>
<module>jws</module>
<module>libraries</module> <!-- very long running -->
<module>libraries-4</module>
<module>libraries-5</module>
<module>libraries-6</module>
<module>spring-boot-modules/spring-boot-react</module>
<module>spring-ejb-modules/ejb-beans</module>
<module>vaadin</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>vavr-modules</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>algorithms-modules</module>
<module>core-java-modules/core-java-9</module>
<module>core-java-modules/core-java-9-improvements</module>
<module>core-java-modules/core-java-9-jigsaw</module>
<!-- <module>core-java-modules/core-java-9-new-features</module> --> <!-- uses preview features, to be decided how to handle -->
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>core-java-modules/core-java-9-streams</module>
<module>core-java-modules/core-java-10</module>
<module>core-java-modules/core-java-11</module>
<module>core-java-modules/core-java-11-2</module>
<module>core-java-modules/core-java-11-3</module>
<!-- <module>core-java-modules/core-java-12</module> --> <!-- uses preview features, to be decided how to handle -->
<!-- <module>core-java-modules/core-java-13</module> --> <!-- uses preview features, to be decided how to handle -->
<!-- <module>core-java-modules/core-java-14</module> --> <!-- uses preview features, to be decided how to handle -->
<!-- <module>core-java-modules/core-java-15</module> --> <!-- uses preview features, to be decided how to handle -->
<!-- <module>core-java-modules/core-java-16</module> --> <!-- uses preview features, to be decided how to handle -->
<!-- <module>core-java-modules/core-java-17</module> --> <!-- uses preview features, to be decided how to handle -->
<!-- <module>core-java-modules/core-java-19</module> --> <!-- uses preview features, to be decided how to handle -->
<module>core-java-modules/core-java-collections-set</module>
<module>core-java-modules/core-java-collections-list-4</module>
<module>core-java-modules/core-java-collections-array-list</module>
<module>core-java-modules/core-java-collections-maps-4</module>
<module>core-java-modules/core-java-collections-maps-5</module>
<module>core-java-modules/core-java-concurrency-simple</module>
<module>core-java-modules/core-java-date-operations-1</module>
<module>core-java-modules/core-java-datetime-conversion</module>
<module>core-java-modules/core-java-datetime-string</module>
<module>core-java-modules/core-java-io-conversions-2</module>
<module>core-java-modules/core-java-jpms</module>
<module>core-java-modules/core-java-os</module>
<module>core-java-modules/core-java-streams-4</module>
<module>core-java-modules/core-java-string-algorithms-3</module>
<module>core-java-modules/core-java-string-operations-3</module>
<module>core-java-modules/core-java-string-operations-4</module>
<module>core-java-modules/core-java-string-operations-5</module>
<module>core-java-modules/core-java-time-measurements</module>
<module>core-java-modules/core-java-networking-3</module>
<module>core-java-modules/core-java-strings</module>
<module>core-java-modules/core-java-httpclient</module>
<module>spring-core-6</module>
<module>ddd-contexts</module>
<module>docker-modules</module>
<module>apache-httpclient-2</module>
<module>kubernetes-modules/kubernetes-spring</module>
<module>libraries-concurrency</module>
<module>maven-modules/compiler-plugin-java-9</module>
<module>maven-modules/maven-generate-war</module>
<module>maven-modules/multimodulemavenproject</module>
<module>optaplanner</module>
<module>persistence-modules/sirix</module>
<module>persistence-modules/spring-data-cassandra-2</module>
<module>quarkus-modules/quarkus-vs-springboot</module>
<module>quarkus-modules/quarkus-jandex</module>
<module>spring-boot-modules/spring-boot-cassandre</module>
<module>spring-boot-modules/spring-boot-camel</module>
<module>spring-boot-modules/spring-boot-3</module>
<module>spring-boot-modules/spring-boot-3-native</module>
<module>spring-boot-modules/spring-boot-3-observation</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-swagger-codegen/custom-validations-opeanpi-codegen</module>
<module>testing-modules/testing-assertions</module>
<module>persistence-modules/fauna</module>
<module>lightrun</module>
<module>tablesaw</module>
<!-- Modules from default-first -->
<module>akka-modules</module>
<module>annotations</module>
<module>apache-httpclient</module>
<module>antlr</module>
<module>apache-kafka</module>
<module>apache-kafka-2</module>
<module>apache-olingo</module>
<module>apache-poi-2</module>
<module>apache-rocketmq</module>
<module>apache-thrift</module>
<module>apache-tika</module>
<module>asm</module>
<module>atomikos</module>
<module>atomix</module>
<module>axon</module>
<module>bazel</module>
<module>code-generation</module>
<module>ddd</module>
<module>discord4j</module>
<module>disruptor</module>
<module>dozer</module>
<module>dubbo</module>
<module>feign</module>
<module>google-cloud</module>
<module>graphql-modules</module>
<module>grpc</module>
<module>hazelcast</module>
<module>hystrix</module>
<module>jackson-simple</module>
<module>java-blockchain</module>
<module>java-rmi</module>
<module>java-spi</module>
<module>javax-sound</module>
<module>javaxval</module>
<module>javaxval-2</module>
<module>javax-validation-advanced</module>
<module>jgit</module>
<module>jib</module>
<module>java-native</module>
<module>jsoup</module>
<module>ksqldb</module>
<module>libraries-7</module>
<module>libraries-apache-commons</module>
<module>libraries-apache-commons-collections</module>
<module>libraries-apache-commons-io</module>
<module>libraries-data-2</module>
<module>libraries-data-io</module>
<module>libraries-files</module>
<module>libraries-http</module>
<module>libraries-http-2</module>
<module>libraries-io</module>
<module>libraries-primitive</module>
<module>libraries-rpc</module>
<module>libraries-server</module>
<module>lucene</module>
<module>mapstruct</module>
<module>mesos-marathon</module>
<module>metrics</module>
<module>mustache</module>
<module>mybatis</module>
<module>pdf</module>
<module>pdf-2</module>
<module>protobuffer</module>
<module>reactor-core</module>
<module>rsocket</module>
<module>slack</module>
<!-- Modules from default second-->
<module>spring-5</module>
<module>spring-5-webflux</module>
<module>spring-5-webflux-2</module>
<module>spring-activiti</module>
<module>spring-batch-2</module>
<module>spring-caching-2</module>
<module>spring-core-2</module>
<module>spring-core-3</module>
<module>spring-core-5</module>
<module>spring-di-3</module>
<module>spring-cucumber</module>
<module>spring-kafka</module>
<module>spring-native</module>
<module>spring-protobuf</module>
<module>spring-quartz</module>
<module>spring-scheduling</module>
<module>spring-state-machine</module>
<module>spring-threads</module>
<module>tensorflow-java</module>
<module>xstream</module>
<module>webrtc</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>11</java.version>
<java.version>11</java.version>
</properties>
</profile>
<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>
<modules>
<module>algorithms-modules</module>
<module>core-java-modules/core-java-9</module>
<module>core-java-modules/core-java-9-improvements</module>
<module>core-java-modules/core-java-9-jigsaw</module>
<!-- <module>core-java-modules/core-java-9-new-features</module> --> <!-- uses preview features, to be decided how to handle -->
<module>core-java-modules/core-java-9-streams</module>
<module>core-java-modules/core-java-10</module>
<module>core-java-modules/core-java-11</module>
<module>core-java-modules/core-java-11-2</module>
<module>core-java-modules/core-java-11-3</module>
<!-- <module>core-java-modules/core-java-12</module> --> <!-- uses preview features, to be decided how to handle -->
<!-- <module>core-java-modules/core-java-13</module> --> <!-- uses preview features, to be decided how to handle -->
<!-- <module>core-java-modules/core-java-14</module> --> <!-- uses preview features, to be decided how to handle -->
<!-- <module>core-java-modules/core-java-15</module> --> <!-- uses preview features, to be decided how to handle -->
<!-- <module>core-java-modules/core-java-16</module> --> <!-- uses preview features, to be decided how to handle -->
<!-- <module>core-java-modules/core-java-17</module> --> <!-- uses preview features, to be decided how to handle -->
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>core-java-modules/core-java-19</module> --> <!-- uses preview features, to be decided how to handle -->
<module>core-java-modules/core-java-collections-set</module>
<module>core-java-modules/core-java-collections-list-4</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>core-java-modules/core-java-collections-array-list</module>
<module>core-java-modules/core-java-collections-maps-4</module>
<module>core-java-modules/core-java-collections-maps-5</module>
<module>core-java-modules/core-java-concurrency-simple</module>
<module>core-java-modules/core-java-date-operations-1</module>
<module>core-java-modules/core-java-datetime-conversion</module>
<module>core-java-modules/core-java-datetime-string</module>
<module>core-java-modules/core-java-io-conversions-2</module>
<module>core-java-modules/core-java-jpms</module>
<module>core-java-modules/core-java-os</module>
<module>core-java-modules/core-java-streams-4</module>
<module>core-java-modules/core-java-string-algorithms-3</module>
<module>core-java-modules/core-java-string-operations-3</module>
2022-01-10 10:46:34 -05:00
<module>core-java-modules/core-java-string-operations-4</module>
<module>core-java-modules/core-java-string-operations-5</module>
<module>core-java-modules/core-java-time-measurements</module>
<module>core-java-modules/core-java-networking-3</module>
<module>core-java-modules/core-java-strings</module>
<module>core-java-modules/core-java-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>spring-core-6</module>
2022-05-24 05:09:48 -04:00
<module>ddd-contexts</module>
<module>docker-modules</module>
<module>apache-httpclient-2</module>
<module>kubernetes-modules/kubernetes-spring</module>
<module>libraries-concurrency</module>
<module>maven-modules/compiler-plugin-java-9</module>
<module>maven-modules/maven-generate-war</module>
<module>maven-modules/multimodulemavenproject</module>
<module>optaplanner</module>
<module>persistence-modules/sirix</module>
<module>persistence-modules/spring-data-cassandra-2</module>
<module>quarkus-modules/quarkus-vs-springboot</module>
<module>quarkus-modules/quarkus-jandex</module>
<module>spring-boot-modules/spring-boot-cassandre</module>
<module>spring-boot-modules/spring-boot-camel</module>
<module>spring-boot-modules/spring-boot-3</module>
<module>spring-boot-modules/spring-boot-3-native</module>
<module>spring-boot-modules/spring-boot-3-observation</module>
<module>spring-swagger-codegen/custom-validations-opeanpi-codegen</module>
<module>testing-modules/testing-assertions</module>
<module>persistence-modules/fauna</module>
2022-05-17 11:07:21 -04:00
<module>lightrun</module>
<module>tablesaw</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
<!-- Modules from default-first -->
<module>akka-modules</module>
<module>annotations</module>
<module>apache-httpclient</module>
<module>antlr</module>
<module>apache-kafka</module>
<module>apache-kafka-2</module>
<module>apache-olingo</module>
<module>apache-poi-2</module>
<module>apache-rocketmq</module>
<module>apache-thrift</module>
<module>apache-tika</module>
<module>asm</module>
<module>atomikos</module>
<module>atomix</module>
<module>axon</module>
<module>bazel</module>
<module>code-generation</module>
<module>ddd</module>
<module>discord4j</module>
<module>disruptor</module>
<module>dozer</module>
<module>dubbo</module>
<module>feign</module>
<module>google-cloud</module>
<module>graphql-modules</module>
<module>grpc</module>
<module>hazelcast</module>
<module>hystrix</module>
<module>jackson-simple</module>
<module>java-blockchain</module>
<module>java-rmi</module>
<module>java-spi</module>
<module>javax-sound</module>
<module>javaxval</module>
<module>javaxval-2</module>
<module>javax-validation-advanced</module>
<module>jgit</module>
<module>jib</module>
<module>java-native</module>
<module>jsoup</module>
<module>ksqldb</module>
<module>libraries-7</module>
<module>libraries-apache-commons</module>
<module>libraries-apache-commons-collections</module>
<module>libraries-apache-commons-io</module>
<module>libraries-data-2</module>
<module>libraries-data-io</module>
<module>libraries-files</module>
<module>libraries-http</module>
<module>libraries-http-2</module>
<module>libraries-io</module>
<module>libraries-primitive</module>
<module>libraries-rpc</module>
<module>libraries-server</module>
<module>lucene</module>
<module>mapstruct</module>
<module>mesos-marathon</module>
<module>metrics</module>
<module>mustache</module>
<module>mybatis</module>
<module>pdf</module>
<module>pdf-2</module>
<module>protobuffer</module>
<module>reactor-core</module>
<module>rsocket</module>
<module>slack</module>
<!-- Modules from default second-->
<module>spring-5</module>
<module>spring-5-webflux</module>
<module>spring-5-webflux-2</module>
<module>spring-activiti</module>
<module>spring-batch-2</module>
<module>spring-caching-2</module>
<module>spring-core-2</module>
<module>spring-core-3</module>
<module>spring-core-5</module>
<module>spring-di-3</module>
<module>spring-cucumber</module>
<module>spring-kafka</module>
<module>spring-native</module>
<module>spring-protobuf</module>
<module>spring-quartz</module>
<module>spring-scheduling</module>
<module>spring-state-machine</module>
<module>spring-threads</module>
<module>tensorflow-java</module>
<module>xstream</module>
<module>webrtc</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>11</java.version>
<java.version>11</java.version>
</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-java</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.12.13</byte-buddy.version>
<!-- logging -->
<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.8.1</maven-compiler-plugin.version>
<exec-maven-plugin.version>3.0.0</exec-maven-plugin.version>
<java.version>1.8</java.version>
<log4j.version>1.2.17</log4j.version>
<esapi.version>2.5.0.0</esapi.version>
<jmh-core.version>1.35</jmh-core.version>
<jmh-generator.version>1.35</jmh-generator.version>
<maven-failsafe-plugin.version>2.21.0</maven-failsafe-plugin.version>
<commons-collections4.version>4.4</commons-collections4.version>
<commons-io.version>2.11.0</commons-io.version>
<commons-lang.version>2.6</commons-lang.version>
<commons-lang3.version>3.12.0</commons-lang3.version>
<commons-cli.version>1.5.0</commons-cli.version>
<maven-war-plugin.version>3.0.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>
2022-08-06 03:30:03 -04:00
<jackson.version>2.13.3</jackson.version>
<commons-fileupload.version>1.4</commons-fileupload.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.version>1.8.1</junit-platform.version>
<junit-jupiter.version>5.8.1</junit-jupiter.version>
<junit-platform-surefire-provider.version>1.3.2</junit-platform-surefire-provider.version>
<directory-maven-plugin.version>0.3.1</directory-maven-plugin.version>
<maven-install-plugin.version>2.5.2</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.0.0</maven-jxr-plugin.version>
<maven-pmd-plugin.version>3.19.0</maven-pmd-plugin.version>
<lombok.version>1.18.24</lombok.version>
<h2.version>2.1.214</h2.version>
<guava.version>31.1-jre</guava.version>
<maven-jar-plugin.version>3.2.2</maven-jar-plugin.version>
</properties>
</project>