Skip to content
Snippets Groups Projects
Select Git revision
  • a0e8ea223e2663a9628e38da8258e9179a7c7b98
  • master default protected
2 results

pom.xml

Blame
  • SofianeLasri's avatar
    Sofiane Lasri authored
    - Add Shop, Player, and Coordinates classes with basic attributes and operations.
    - Implement ShopService and PlayerService to manage shop and player data. Introduce ShopController and PlayerController for handling HTTP requests related to shops and players.
    - Project creation
    a0e8ea22
    History
    pom.xml 1.81 KiB
    <?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>3.3.5</version>
            <relativePath/> <!-- lookup parent from repository -->
        </parent>
        <groupId>com.slprojects</groupId>
        <artifactId>demo-culture-concepts-info</artifactId>
        <version>0.0.1-SNAPSHOT</version>
        <name>demo-culture-concepts-info</name>
        <description>demo-culture-concepts-info</description>
        <url/>
        <licenses>
            <license/>
        </licenses>
        <developers>
            <developer/>
        </developers>
        <scm>
            <connection/>
            <developerConnection/>
            <tag/>
            <url/>
        </scm>
        <properties>
            <java.version>17</java.version>
        </properties>
        <dependencies>
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter</artifactId>
            </dependency>
    
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-test</artifactId>
                <scope>test</scope>
            </dependency>
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-web</artifactId>
            </dependency>
        </dependencies>
    
        <build>
            <plugins>
                <plugin>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-maven-plugin</artifactId>
                </plugin>
            </plugins>
        </build>
    
    </project>