Skip to content
Snippets Groups Projects
Select Git revision
  • c6a546f345e0a55c0ff8a7a63e65083cb32d993b
  • main default protected
  • storybook-improvements
  • OZG-7287-forward-saml-token
  • release-administration
  • OZG-8422-BenutzerSpeichern
  • OZG-8314-Alfa-Vorgang-Bearbeiter-Zuweisung-entfernen
  • release-info
  • release
  • OZG-7856_schadcode-scanner-e2e
  • OZG-7985-fix-sorting
  • OZG-8305-Create-webpack-sbom
  • tooltip-improvements
  • OZG-7714-UpgradeKeycloakDependencyTo25
  • OZG-8086-Admin-Datenanfrage-erstellen
  • OZG-8086-Datenanfrage-Umbenennung
  • mongodb-7-0-16-e2e
  • OZG-6220-Bescheid-speichern-ohne-Postfach
  • OZG-7922-KeycloakOperatorExceptions
  • OZG-8142-poc-cards
  • OZG-8086-E2E
  • 1.12.1-administration
  • 1.12.0-administration
  • 1.12.0-info
  • 2.27.0-alfa
  • 1.11.0-info
  • 1.11.0-administration
  • 2.26.0-alfa
  • 1.10.0-info
  • 1.10.0-administration
  • 2.25.0-alfa
  • 1.9.0-info
  • 1.9.0-administration
  • 2.24.0-alfa
  • 1.8.0-info
  • 1.8.0-administration
  • 2.23.0-alfa
  • 1.7.0-info
  • 1.7.0-administration
  • 2.22.0-alfa
  • 1.6.0-info
41 results

arrow-left-icon.component.spec.ts

Blame
  • pom.xml 2.27 KiB
    <?xml version="1.0"?>
    <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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    	<modelVersion>4.0.0</modelVersion>
    
    	<parent>
    		<groupId>de.ozgcloud</groupId>
    		<artifactId>ozgcloud-operator-parent</artifactId>
    		<version>2.6.0-SNAPSHOT</version>
    		<relativePath>../</relativePath>
    	</parent>
    
    	<artifactId>ozgcloud-elasticsearch-operator</artifactId>
    	<packaging>jar</packaging>
    
    	<name>OZG-Cloud Elasticsearch Operator</name>
    	<description>OZG-Cloud Elasticsearch Operator</description>
    
    	<properties>
    		<spring-boot.build-image.imageName>docker.ozg-sh.de/ozgcloud-elasticsearch-operator:build-latest</spring-boot.build-image.imageName>
    	</properties>
    	
    	<dependencies>
    		<dependency>
    		    <groupId>co.elastic.clients</groupId>
    		    <artifactId>elasticsearch-java</artifactId>
    		</dependency>
    		<dependency>
    		    <groupId>com.fasterxml.jackson.core</groupId>
    		    <artifactId>jackson-databind</artifactId>
    		</dependency>
    		<dependency>
    		  <groupId>org.springframework.boot</groupId>
    		  <artifactId>spring-boot-starter-web</artifactId>
    		</dependency>
    		
    		<!-- test -->
    		<dependency>
    	    	<groupId>org.testcontainers</groupId>
    		    <artifactId>elasticsearch</artifactId>
    		    <scope>test</scope>
    		</dependency>
    		<dependency>
    		    <groupId>io.javaoperatorsdk</groupId>
    		    <artifactId>jenvtest-fabric8-client-support</artifactId>
    		    <scope>test</scope>
    		</dependency>
    		<dependency>
    		    <groupId>io.javaoperatorsdk</groupId>
    		    <artifactId>jenvtest</artifactId>
    		    <scope>test</scope>
    		</dependency>
    	</dependencies>
    
    	<build>
    		<plugins>
    			<plugin>
    				<groupId>org.springframework.boot</groupId>
    				<artifactId>spring-boot-maven-plugin</artifactId>
    			</plugin>
    			<plugin>
    				<groupId>org.apache.maven.plugins</groupId>
    				<artifactId>maven-compiler-plugin</artifactId>
    				<configuration>
    					<fork>true</fork>
    					<annotationProcessorPaths>
    						<path>
    							<groupId>org.projectlombok</groupId>
    							<artifactId>lombok</artifactId>
    							<version>${lombok.version}</version>
    						</path>
    					</annotationProcessorPaths>
    					<showWarnings>true</showWarnings>
    				</configuration>
    			</plugin>
    		</plugins>
    	</build>
    
    </project>