Skip to content
Snippets Groups Projects
Select Git revision
  • 521d259823c77a419a99ca2f88460e81a353f28f
  • main default protected
  • OZG-7986-mandat-anfragen
  • OZG-8378-ods-heading
  • optimize-storybook
  • OZG-8405-Alfa-Bearbeiter-auswählen-und-entfernen-Design
  • OZG-6978-prevent-other-pages-from-being-called
  • OZG-8314-Alfa-Vorgang-Bearbeiter-Zuweisung-entfernen
  • testing-imports
  • storybook-improvements
  • OZG-7287-forward-saml-token
  • release-administration
  • OZG-8422-BenutzerSpeichern
  • 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
  • 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

attachment.component.html

Blame
  • pom.xml 4.38 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.api-lib</groupId>
    		<artifactId>api-lib-parent</artifactId>
    		<version>0.4.0-SNAPSHOT</version>
    	</parent>
    
    	<artifactId>api-lib-core</artifactId>
    
    	<properties>
    		<lombok.version>1.18.26</lombok.version>
    		<mapstruct.version>1.5.4.Final</mapstruct.version>
    		<!-- plugins -->
    		<maven-surefire-plugin.version>3.1.2</maven-surefire-plugin.version>
    		<maven-failsafe-plugin.version>3.1.2</maven-failsafe-plugin.version>
    		<jacoco.plugin.version>0.8.10</jacoco.plugin.version>
    	</properties>
    
    	<dependencies>
    		<!--ozg cloud project -->
    		<dependency>
    			<groupId>de.itvsh.kop.common</groupId>
    			<artifactId>kop-common-lib</artifactId>
    		</dependency>
    
    		<dependency>
    			<groupId>org.springframework</groupId>
    			<artifactId>spring-context</artifactId>
    		</dependency>
    
    		<dependency>
    			<groupId>de.itvsh.ozg.pluto</groupId>
    			<artifactId>pluto-interface</artifactId>
    		</dependency>
    		<dependency>
    			<groupId>de.itvsh.ozg.pluto</groupId>
    			<artifactId>pluto-utils</artifactId>
    		</dependency>
    
    		<!--spring -->
    		<dependency>
    			<groupId>net.devh</groupId>
    			<artifactId>grpc-client-spring-boot-autoconfigure</artifactId>
    			<version>2.14.0.RELEASE</version>
    		</dependency>
    
    		<dependency>
    			<groupId>org.mapstruct</groupId>
    			<artifactId>mapstruct</artifactId>
    		</dependency>
    
    		<!-- test -->
    		<dependency>
    			<groupId>org.springframework.boot</groupId>
    			<artifactId>spring-boot-starter-test</artifactId>
    		</dependency>
    		<dependency>
    			<groupId>org.junit.jupiter</groupId>
    			<artifactId>junit-jupiter</artifactId>
    			<scope>test</scope>
    		</dependency>
    		<dependency>
    			<groupId>org.assertj</groupId>
    			<artifactId>assertj-core</artifactId>
    		</dependency>
    		<dependency>
    			<groupId>org.mockito</groupId>
    			<artifactId>mockito-core</artifactId>
    			<scope>test</scope>
    		</dependency>
    		<dependency>
    			<groupId>org.mockito</groupId>
    			<artifactId>mockito-junit-jupiter</artifactId>
    			<scope>test</scope>
    		</dependency>
    
    		<!--dev-tools -->
    		<dependency>
    			<groupId>org.projectlombok</groupId>
    			<artifactId>lombok</artifactId>
    			<scope>compile</scope>
    			<optional>true</optional>
    		</dependency>
    	</dependencies>
    
    	<build>
    		<plugins>
    			<plugin>
    				<groupId>org.apache.maven.plugins</groupId>
    				<artifactId>maven-compiler-plugin</artifactId>
    				<version>3.10.1</version>
    				<configuration>
    					<fork>true</fork>
    					<annotationProcessorPaths>
    						<path>
    							<groupId>org.projectlombok</groupId>
    							<artifactId>lombok</artifactId>
    							<version>${lombok.version}</version>
    						</path>
    						<path>
    							<groupId>org.mapstruct</groupId>
    							<artifactId>mapstruct-processor</artifactId>
    							<version>${mapstruct.version}</version>
    						</path>
    						<!-- other annotation processors -->
    					</annotationProcessorPaths>
    
    					<showWarnings>true</showWarnings>
    					<compilerArgs>
    						<compilerArg>
    							-Amapstruct.defaultComponentModel=default
    						</compilerArg>
    						<compilerArg>
    							-Amapstruct.unmappedTargetPolicy=WARN
    						</compilerArg>
    					</compilerArgs>
    				</configuration>
    			</plugin>
    
    			<plugin>
    				<groupId>org.apache.maven.plugins</groupId>
    				<artifactId>maven-jar-plugin</artifactId>
    				<version>${maven-jar-plugin.version}</version>
    				<executions>
    					<execution>
    						<goals>
    							<goal>test-jar</goal>
    						</goals>
    					</execution>
    				</executions>
    			</plugin>
    
    			<plugin>
    				<groupId>org.apache.maven.plugins</groupId>
    				<artifactId>maven-surefire-plugin</artifactId>
    				<version>${maven-surefire-plugin.version}</version>
    				<configuration>
    					<argLine>
    						${surefire.jacoco.args}
    					</argLine>
    				</configuration>
    			</plugin>
    
    			<plugin>
    				<groupId>org.apache.maven.plugins</groupId>
    				<artifactId>maven-failsafe-plugin</artifactId>
    				<version>${maven-failsafe-plugin.version}</version>
    				<configuration>
    					<argLine>
    						${surefire.jacoco.args}
    					</argLine>
    					<classesDirectory>${project.build.outputDirectory}</classesDirectory>
    				</configuration>
    				<executions>
    					<execution>
    						<goals>
    							<goal>integration-test</goal>
    							<goal>verify</goal>
    						</goals>
    					</execution>
    				</executions>
    			</plugin>
    		</plugins>
    	</build>
    </project>