Skip to content
Snippets Groups Projects
Select Git revision
  • 81ce999a75d00915407c1b70fac5681ba078e86d
  • master default protected
  • add-frequency-to-form
  • dev protected
  • ckan-2.11.0
  • add-package-custom-fields
  • fix-adding-datasets-for-users-and-editors
  • add-auth-subroute
  • 71-migrate-custom-fields-to-ckanext-scheming
  • add-author-maintainer-information
  • fix-inline-flex-btns
  • fix-known-spatial-uri-validation
  • py3
  • 47-aktuelle-resource-einer-collection-wird-nicht-mehr-gefunden
  • 10-eingabe-der-dct-accrualperiodicity-in-weboberflache
  • v1.3
  • 2.5.3
  • 2.5.2
  • 2.5.1
  • 2.5.0
  • 2.4.7
  • 2.4.6
  • 2.4.5
  • 2.4.4
  • 2.4.3
  • 2.4.2
  • 2.4.1
  • 2.4.0
  • 2.3.1
  • 2.3.0
  • 2.2.0
  • 2.1.0
  • 2.0.0
  • 1.4.3
  • 1.4.2
  • 1.4.1
36 results

search_form.html

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>