margaretha | b706d7c | 2023-02-03 12:26:41 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | <parent> |
| 7 | <groupId>org.springframework.boot</groupId> |
| 8 | <artifactId>spring-boot-starter-parent</artifactId> |
| 9 | <version>2.7.8</version> |
| 10 | <relativePath /> <!-- lookup parent from repository --> |
| 11 | </parent> |
| 12 | <groupId>de.ids_mannheim.korap.client</groupId> |
| 13 | <artifactId>KorAP-OAuth2-Client</artifactId> |
| 14 | <version>0.0.1-SNAPSHOT</version> |
| 15 | <name>KorAP-OAuth2-Client</name> |
| 16 | <description>KorAP OAuth2 Client</description> |
| 17 | <packaging>jar</packaging> |
| 18 | <properties> |
| 19 | <java.version>8</java.version> |
| 20 | </properties> |
| 21 | <dependencies> |
| 22 | <dependency> |
| 23 | <groupId>org.springframework.boot</groupId> |
| 24 | <artifactId>spring-boot-starter-oauth2-client</artifactId> |
| 25 | </dependency> |
| 26 | <dependency> |
| 27 | <groupId>org.springframework.boot</groupId> |
| 28 | <artifactId>spring-boot-starter-web</artifactId> |
| 29 | </dependency> |
| 30 | |
| 31 | <dependency> |
| 32 | <groupId>org.springframework.boot</groupId> |
| 33 | <artifactId>spring-boot-starter-test</artifactId> |
| 34 | <scope>test</scope> |
| 35 | </dependency> |
| 36 | <dependency> |
| 37 | <groupId>org.springframework.boot</groupId> |
| 38 | <artifactId>spring-boot-starter-tomcat</artifactId> |
| 39 | <scope>provided</scope> |
| 40 | </dependency> |
| 41 | |
| 42 | <dependency> |
| 43 | <groupId>org.mock-server</groupId> |
| 44 | <artifactId>mockserver-netty</artifactId> |
| 45 | <version>5.13.2</version> |
| 46 | <scope>test</scope> |
| 47 | </dependency> |
| 48 | |
| 49 | <dependency> |
| 50 | <groupId>junit</groupId> |
| 51 | <artifactId>junit</artifactId> |
| 52 | <version>4.13.2</version> |
| 53 | <scope>test</scope> |
| 54 | </dependency> |
| 55 | |
| 56 | </dependencies> |
| 57 | |
| 58 | <build> |
| 59 | <plugins> |
| 60 | <plugin> |
| 61 | <groupId>org.springframework.boot</groupId> |
| 62 | <artifactId>spring-boot-maven-plugin</artifactId> |
| 63 | </plugin> |
| 64 | <plugin> |
| 65 | <groupId>org.apache.maven.plugins</groupId> |
| 66 | <artifactId>maven-surefire-plugin</artifactId> |
| 67 | <version>2.22.2</version> |
| 68 | <configuration> |
| 69 | <argLine>-Dmockserver.logLevel=OFF |
| 70 | -Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager</argLine> |
| 71 | </configuration> |
| 72 | </plugin> |
| 73 | </plugins> |
| 74 | </build> |
| 75 | |
| 76 | </project> |