HSG-MCS-HS21_tapas/executor-robot/pom.xml

85 lines
2.5 KiB
XML
Raw Normal View History

2021-10-16 18:36:28 +00:00
<?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.5.5</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>ch.unisg</groupId>
2021-11-16 14:48:46 +00:00
<artifactId>executor-robot</artifactId>
2021-10-16 18:36:28 +00:00
<version>0.0.1-SNAPSHOT</version>
2021-11-16 14:48:46 +00:00
<name>executor-robot</name>
2021-10-16 18:36:28 +00:00
<description>Demo project for Spring Boot</description>
<properties>
<java.version>11</java.version>
<sonar.organization>scs-asse-fs21-group1</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
2021-12-23 15:07:18 +00:00
<skipTests>true</skipTests>
2021-10-16 18:36:28 +00:00
</properties>
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
2021-10-16 18:36:28 +00:00
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.unisg</groupId>
2021-11-16 14:48:46 +00:00
<artifactId>executor-base</artifactId>
2021-10-16 18:36:28 +00:00
<version>0.0.1-SNAPSHOT</version>
</dependency>
<dependency>
2021-12-19 15:33:11 +00:00
<groupId>com.github.Interactions-HSG</groupId>
<artifactId>wot-td-java</artifactId>
<version>master-SNAPSHOT</version>
</dependency>
2021-12-23 15:27:06 +00:00
<dependency>
<groupId>com.github.jsonld-java</groupId>
<artifactId>jsonld-java</artifactId>
<version>0.13.4</version>
</dependency>
2021-12-11 18:09:34 +00:00
</dependencies>
2021-10-16 18:36:28 +00:00
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>