<?xml version="1.0" encoding="UTF-8"?> <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>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.4.3</version> <relativePath /> <!-- lookup parent from repository --> </parent> <groupId>jp.oiyokan</groupId> <artifactId>oiyokan</artifactId> <version>0.20210318.1</version> <name>oiyokan</name> <description>Simple OData v4 server.</description> <properties> <java.version>11</java.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.olingo/odata-server-api --> <dependency> <groupId>org.apache.olingo</groupId> <artifactId>odata-server-api</artifactId> <version>4.8.0</version> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.olingo/odata-server-core --> <dependency> <groupId>org.apache.olingo</groupId> <artifactId>odata-server-core</artifactId> <version>4.8.0</version> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.olingo/odata-commons-api --> <dependency> <groupId>org.apache.olingo</groupId> <artifactId>odata-commons-api</artifactId> <version>4.8.0</version> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.olingo/odata-commons-core --> <dependency> <groupId>org.apache.olingo</groupId> <artifactId>odata-commons-core</artifactId> <version>4.8.0</version> </dependency> <!-- https://mvnrepository.com/artifact/com.h2database/h2 --> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>1.4.200</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project>