Skip to content
Snippets Groups Projects
Select Git revision
  • 36758b65bf0da2f3fcc4ddedb5bea87fcef8a3fc
  • main default protected
  • release
  • 2.8.1
  • 2.8.0
  • 2.7.0
  • 2.6.0
  • 2.5.0
  • 2.4.0
  • 2.3.0
  • 2.2.0
  • 2.1.1
  • 2.1.0
  • 2.0.0
  • 1.1.0
  • 1.0.0
16 results

serviceaccount-keycloakgroup-read.yaml

Blame
  • pom.xml 1.84 KiB
    <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.itvsh.kop.common</groupId>
    		<artifactId>kop-common-dependencies</artifactId>
    		<version>2.3.0-SNAPSHOT</version>
    		<relativePath /> <!-- lookup parent from repository -->
    	</parent>
    
    	<groupId>de.ozgcloud.api-lib</groupId>
    	<artifactId>api-lib-parent</artifactId>
    	<version>0.3.0-SNAPSHOT</version>
    	<description>Library project to use the OZG-Cloud API</description>
    
    	<packaging>pom</packaging>
    	<modules>
    		<module>api-lib-core</module>
    		<module>ozg-cloud-spring-boot-starter</module>
    		<module>api-lib-demo</module>
    	</modules>
    
    	<properties>
    		<source-plugin.version>3.3.0</source-plugin.version>
    		<failsafe-plugin.version>3.1.2</failsafe-plugin.version>
    		<maven-jar-plugin.version>3.3.0</maven-jar-plugin.version>
    	</properties>
    
    	<build>
    		<plugins>
    			<plugin>
    				<groupId>org.apache.maven.plugins</groupId>
    				<artifactId>maven-failsafe-plugin</artifactId>
    				<version>${failsafe-plugin.version}</version>
    				<executions>
    					<execution>
    						<goals>
    							<goal>integration-test</goal>
    							<goal>verify</goal>
    						</goals>
    					</execution>
    				</executions>
    			</plugin>
    		</plugins>
    	</build>
    
    	<profiles>
    		<profile>
    			<id>deploy</id>
    			<build>
    				<plugins>
    					<plugin>
    						<groupId>org.apache.maven.plugins</groupId>
    						<artifactId>maven-source-plugin</artifactId>
    						<version>${source-plugin.version}</version>
    						<executions>
    							<execution>
    								<id>attach-sources</id>
    								<goals>
    									<goal>jar-no-fork</goal>
    								</goals>
    							</execution>
    						</executions>
    					</plugin>
    				</plugins>
    			</build>
    		</profile>
    	</profiles>
    </project>