web
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.tweetyproject</groupId>
<artifactId>web</artifactId>
<version>1.31</version>
</dependency><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 http://maven.apache.org/maven-v4_0_0.xsd"
>
<modelVersion>4.0.0</modelVersion>
<artifactId>web</artifactId>
<name>TweetyProject (Web Services)</name>
<parent>
<groupId>org.tweetyproject</groupId>
<artifactId>parent-pom</artifactId>
<version>1.31</version>
<relativePath>..</relativePath>
</parent>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.glassfish.jersey</groupId>
<artifactId>jersey-bom</artifactId>
<version>${jersey.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>2.7.18</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- Logging with java.util.logging -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>11</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-grizzly2-http</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-json-jettison</artifactId>
<version>3.1.9</version>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.inject</groupId>
<artifactId>jersey-hk2</artifactId>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.3.0.1</version>
</dependency>
<dependency>
<groupId>javax.activation</groupId>
<artifactId>activation</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
<version>2.3.0.1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.tweetyproject</groupId>
<artifactId>causal</artifactId>
<version>1.31</version>
</dependency>
<dependency>
<groupId>org.tweetyproject.logics</groupId>
<artifactId>commons</artifactId>
<version>1.31</version>
</dependency>
<dependency>
<groupId>org.tweetyproject.logics</groupId>
<artifactId>pl</artifactId>
<version>1.31</version>
</dependency>
<dependency>
<groupId>org.tweetyproject.arg</groupId>
<artifactId>explanations</artifactId>
<version>1.31</version>
</dependency>
<dependency>
<groupId>org.tweetyproject.arg</groupId>
<artifactId>delp</artifactId>
<version>1.31</version>
</dependency>
<dependency>
<groupId>org.tweetyproject.arg</groupId>
<artifactId>aba</artifactId>
<version>1.31</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20231013</version>
</dependency>
<dependency>
<groupId>org.tweetyproject.arg</groupId>
<artifactId>bipolar</artifactId>
<version>1.31</version>
</dependency>
<dependency>
<groupId>org.tweetyproject.arg</groupId>
<artifactId>rankings</artifactId>
<version>1.31</version>
</dependency>
<dependency>
<groupId>org.tweetyproject.arg</groupId>
<artifactId>adf</artifactId>
<version>1.31</version>
</dependency>
<dependency>
<groupId>org.tweetyproject.arg</groupId>
<artifactId>prob</artifactId>
<version>1.31</version>
</dependency>
<!-- SLF4J API
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.32</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>1.5.13</version>
</dependency> -->
<!-- Logback (Logging Implementation) -->
<!-- <dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.4.12</version>
</dependency> -->
</dependencies>
<properties>
<maven.compiler.release>15</maven.compiler.release>
<jersey.version>2.35</jersey.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<start-class
>org.tweetyproject.web.services.RestServiceCorsApplication</start-class>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>3.4.1</version> <!-- Replace with the desired version -->
</plugin>
</plugins>
</build>
</project>