153 lines
		
	
	
		
			5.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			153 lines
		
	
	
		
			5.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 | 
						|
    <modelVersion>4.0.0</modelVersion>
 | 
						|
 | 
						|
    <groupId>com.cpic.xim</groupId>
 | 
						|
    <artifactId>RegulatoryManagementBackend</artifactId>
 | 
						|
    <version>1.0-SNAPSHOT</version>
 | 
						|
    <packaging>war</packaging>
 | 
						|
 | 
						|
    <name>RegulatoryManagementBackend Maven Webapp</name>
 | 
						|
    <!-- FIXME change it to the project's website -->
 | 
						|
    <url>http://www.example.com</url>
 | 
						|
 | 
						|
    <properties>
 | 
						|
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 | 
						|
        <maven.compiler.source>18</maven.compiler.source>
 | 
						|
        <maven.compiler.target>18</maven.compiler.target>
 | 
						|
        <spring.version>6.2.11</spring.version>
 | 
						|
        <log4j.version>2.24.3</log4j.version>
 | 
						|
        <jackson.version>2.18.3</jackson.version>
 | 
						|
    </properties>
 | 
						|
 | 
						|
    <dependencies>
 | 
						|
        <dependency>
 | 
						|
            <groupId>junit</groupId>
 | 
						|
            <artifactId>junit</artifactId>
 | 
						|
            <version>4.13.1</version>
 | 
						|
            <scope>test</scope>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!-- springmvc -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework</groupId>
 | 
						|
            <artifactId>spring-context</artifactId>
 | 
						|
            <version>${spring.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework</groupId>
 | 
						|
            <artifactId>spring-test</artifactId>
 | 
						|
            <version>${spring.version}</version>
 | 
						|
            <scope>test</scope>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework</groupId>
 | 
						|
            <artifactId>spring-web</artifactId>
 | 
						|
            <version>${spring.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework</groupId>
 | 
						|
            <artifactId>spring-webmvc</artifactId>
 | 
						|
            <version>${spring.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>jakarta.servlet</groupId>
 | 
						|
            <artifactId>jakarta.servlet-api</artifactId>
 | 
						|
            <version>6.1.0</version>
 | 
						|
            <scope>provided</scope>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!-- log4j -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.apache.logging.log4j</groupId>
 | 
						|
            <artifactId>log4j-core</artifactId>
 | 
						|
            <version>${log4j.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.apache.logging.log4j</groupId>
 | 
						|
            <artifactId>log4j-slf4j2-impl</artifactId>
 | 
						|
            <version>${log4j.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.apache.logging.log4j</groupId>
 | 
						|
            <artifactId>log4j-api</artifactId>
 | 
						|
            <version>${log4j.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <!-- jackson -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.fasterxml.jackson.core</groupId>
 | 
						|
            <artifactId>jackson-databind</artifactId>
 | 
						|
            <version>${jackson.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.fasterxml.jackson.core</groupId>
 | 
						|
            <artifactId>jackson-core</artifactId>
 | 
						|
            <version>${jackson.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.fasterxml.jackson.core</groupId>
 | 
						|
            <artifactId>jackson-annotations</artifactId>
 | 
						|
            <version>${jackson.version}</version>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.mysql</groupId>
 | 
						|
            <artifactId>mysql-connector-j</artifactId>
 | 
						|
            <version>9.2.0</version>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.apache.commons</groupId>
 | 
						|
            <artifactId>commons-fileupload2-jakarta-servlet6</artifactId>
 | 
						|
            <version>2.0.0-M2</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>commons-io</groupId>
 | 
						|
            <artifactId>commons-io</artifactId>
 | 
						|
            <version>2.18.0</version>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
    </dependencies>
 | 
						|
 | 
						|
    <build>
 | 
						|
        <finalName>RegulatoryManagementBackend</finalName>
 | 
						|
        <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be
 | 
						|
            moved to parent pom) -->
 | 
						|
            <plugins>
 | 
						|
                <plugin>
 | 
						|
                    <artifactId>maven-clean-plugin</artifactId>
 | 
						|
                    <version>3.4.0</version>
 | 
						|
                </plugin>
 | 
						|
                <!-- see
 | 
						|
                http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging -->
 | 
						|
                <plugin>
 | 
						|
                    <artifactId>maven-resources-plugin</artifactId>
 | 
						|
                    <version>3.3.1</version>
 | 
						|
                </plugin>
 | 
						|
                <plugin>
 | 
						|
                    <artifactId>maven-compiler-plugin</artifactId>
 | 
						|
                    <version>3.13.0</version>
 | 
						|
                </plugin>
 | 
						|
                <plugin>
 | 
						|
                    <artifactId>maven-surefire-plugin</artifactId>
 | 
						|
                    <version>3.3.0</version>
 | 
						|
                </plugin>
 | 
						|
                <plugin>
 | 
						|
                    <artifactId>maven-war-plugin</artifactId>
 | 
						|
                    <version>3.4.0</version>
 | 
						|
                </plugin>
 | 
						|
                <plugin>
 | 
						|
                    <artifactId>maven-install-plugin</artifactId>
 | 
						|
                    <version>3.1.2</version>
 | 
						|
                </plugin>
 | 
						|
                <plugin>
 | 
						|
                    <artifactId>maven-deploy-plugin</artifactId>
 | 
						|
                    <version>3.1.2</version>
 | 
						|
                </plugin>
 | 
						|
            </plugins>
 | 
						|
        </pluginManagement>
 | 
						|
    </build>
 | 
						|
</project> |