coffee-tool
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>hu.icellmobilsoft.coffee</groupId> <artifactId>coffee-tool</artifactId> <version>2.11.0</version> </dependency>
<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> <parent> <groupId>hu.icellmobilsoft.coffee</groupId> <artifactId>coffee</artifactId> <version>2.11.0</version> </parent> <artifactId>coffee-tool</artifactId> <dependencyManagement> <dependencies> <dependency> <groupId>hu.icellmobilsoft.coffee</groupId> <artifactId>coffee-bom-all</artifactId> <version>${project.version}</version> <scope>import</scope> <type>pom</type> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <!-- Due to the combination of Java 17 and Gson 2.8.9, XMLGregorianCalendar parsing might require special handling. See also: //https://github.com/highsource/jaxb2-basics/issues/130. --> <argLine>--add-exports=java.xml/com.sun.org.apache.xerces.internal.jaxp.datatype=ALL-UNNAMED --add-opens=java.xml/com.sun.org.apache.xerces.internal.jaxp.datatype=ALL-UNNAMED </argLine> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>hu.icellmobilsoft.coffee</groupId> <artifactId>coffee-se-function</artifactId> </dependency> <dependency> <groupId>hu.icellmobilsoft.coffee</groupId> <artifactId>coffee-se-util</artifactId> </dependency> <dependency> <groupId>hu.icellmobilsoft.coffee</groupId> <artifactId>coffee-cdi</artifactId> </dependency> <dependency> <groupId>hu.icellmobilsoft.coffee</groupId> <artifactId>coffee-dto-impl</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <!--Test dependecies --> <dependency> <groupId>org.glassfish.jaxb</groupId> <artifactId>jaxb-runtime</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> </dependency> <dependency> <groupId>org.jboss.weld</groupId> <artifactId>weld-junit5</artifactId> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> </dependency> <dependency> <groupId>io.smallrye.config</groupId> <artifactId>smallrye-config</artifactId> </dependency> <dependency> <groupId>org.eclipse</groupId> <artifactId>yasson</artifactId> </dependency> <dependency> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-core</artifactId> </dependency> <dependency> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-generator-annprocess</artifactId> </dependency> </dependencies> </project>