portal-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.cuioss.portal.core</groupId> <artifactId>portal-core</artifactId> <version>1.3.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>de.cuioss.portal.core</groupId> <artifactId>core</artifactId> <version>1.3.0</version> </parent> <artifactId>portal-core</artifactId> <name>Portal Servlet Core</name> <description>Provides types that define the non-ui parts of the portal</description> <properties> <maven.jar.plugin.automatic.module.name> de.cuioss.portal.core </maven.jar.plugin.automatic.module.name> </properties> <dependencies> <!-- Provided --> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </dependency> <dependency> <groupId>jakarta.platform</groupId> <artifactId>jakarta.jakartaee-web-api</artifactId> </dependency> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> </dependency> <dependency> <groupId>org.eclipse.microprofile.config</groupId> <artifactId>microprofile-config-api</artifactId> </dependency> <!-- Standard libraries --> <dependency> <groupId>de.cuioss</groupId> <artifactId>cui-core-ui-model</artifactId> </dependency> <dependency> <groupId>de.cuioss</groupId> <artifactId>cui-java-tools</artifactId> </dependency> <!-- Portal Services --> <dependency> <groupId>de.cuioss.portal.authentication</groupId> <artifactId>portal-authentication-api</artifactId> </dependency> <dependency> <groupId>de.cuioss.portal.core</groupId> <artifactId>portal-configuration</artifactId> </dependency> <!-- Test Related --> <dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>de.cuioss.test</groupId> <artifactId>cui-test-juli-logger</artifactId> </dependency> <dependency> <groupId>org.jboss.weld</groupId> <artifactId>weld-junit5</artifactId> </dependency> <dependency> <groupId>de.cuioss.test</groupId> <artifactId>cui-test-value-objects</artifactId> </dependency> <dependency> <groupId>jakarta.inject</groupId> <artifactId>jakarta.inject-api</artifactId> </dependency> <dependency> <groupId>de.cuioss.test</groupId> <artifactId>cui-jsf-test-basic</artifactId> </dependency> </dependencies> </project>