Skip to content
Snippets Groups Projects
Select Git revision
  • 6b19e1b2b266cd2824b86541b75e123e34bce370
  • main default protected
  • ozg-8323-umzug-dependency-track
  • OZG-8252-gitlab-pipelines
  • release
  • OZG-7856_schadcode_scanner
  • ci-pipeline
  • OZG-7526-signatur-nicht-uebernommen
  • OZG-6223-zip-download-bug
  • OZG-7367-tooltip-extension
  • OZG-7023-OZG-6956-E2E-externe-Stellen
  • OZG-6238-npm-durch-pnpm-ersetzen
  • release-admin
  • release-info
  • OZG-6700-admin-feature-toggle
  • E2E-Updates
  • OZG-7047-tooltips
  • OZG-6957-e2e-fachstellen-oe-daten
  • OZG-7006-ZuarbeitAnfragen
  • temp_OZG-7027
  • unit-tests-hotfix
  • 2.27.0
  • 2.26.0
  • 2.25.0
  • 2.24.2
  • 2.24.1
  • 2.24.0
  • 2.23.0
  • 2.22.0
  • 2.21.0
  • 2.20.0
  • 2.21.0-SNAPSHOT
  • 2.19.0
  • 2.18.0
  • 2.17.1
  • 1.3.0
  • release-admin-1.3.0
  • release-info-1.3.0
  • 2.17.0
  • 2.16.0
  • 2.15.0
41 results

heading.stories.ts

  • 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.16.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.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>