Skip to content
Snippets Groups Projects
Select Git revision
  • 9dba615498a0fb2fda9d55df5258fb08f062adc7
  • main default protected
  • release
  • master-interface-proto4
  • ozg-5634-ozgcloud-ingress
  • OZG-3322_connect_to_mongodb_over_tls
  • 2.19.0
  • 2.18.0
  • 2.17.0
  • 2.16.0
  • 2.15.0
  • 2.14.0
  • 2.13.0
  • 2.12.0
  • 2.11.0
  • 2.10.1
  • 2.10.0
  • 2.9.0
  • 2.8.0
  • 2.7.1
  • 2.7.0
  • 2.6.0
  • 2.5.1
  • 2.5.0
  • 2.4.0
  • 2.3.0
26 results

api-password-secret_test.yaml

Blame
  • pom.xml 1.94 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.ozgcloud.common</groupId>
    		<artifactId>ozgcloud-common-dependencies</artifactId>
    		<version>4.5.0</version>
    		<relativePath /> <!-- lookup parent from repository -->
    	</parent>
    
    	<groupId>de.ozgcloud.api-lib</groupId>
    	<artifactId>api-lib-parent</artifactId>
    	<version>0.15.0</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.2.5</failsafe-plugin.version>
    		<maven-jar-plugin.version>3.3.0</maven-jar-plugin.version>
    
    		<vorgang-manager.version>2.17.0</vorgang-manager.version>
    		<user-manager.version>2.1.0</user-manager.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>